. ├── README.md ├── app │   ├── Console │   │   └── Commands │   │   └── SyncConjuntosFromApi.php │   ├── Filament │   │   └── Resources │   │   ├── CampanaResource │   │   │   ├── Pages │   │   │   │   ├── CreateCampana.php │   │   │   │   ├── EditCampana.php │   │   │   │   ├── ListCampanas.php │   │   │   │   └── ViewCampana.php │   │   │   └── RelationManagers │   │   │   └── DetallesCampanaRelationManager.php │   │   ├── CampanaResource.php │   │   ├── ConjuntoResource │   │   │   └── Pages │   │   │   ├── CreateConjunto.php │   │   │   ├── EditConjunto.php │   │   │   └── ListConjuntos.php │   │   ├── ConjuntoResource.php │   │   ├── GranjaResource │   │   │   └── Pages │   │   │   ├── CreateGranja.php │   │   │   ├── EditGranja.php │   │   │   └── ListGranjas.php │   │   ├── GranjaResource.php │   │   ├── PantallaResource │   │   │   └── Pages │   │   │   ├── CreatePantalla.php │   │   │   ├── EditPantalla.php │   │   │   └── ListPantallas.php │   │   └── PantallaResource.php │   ├── Http │   │   └── Controllers │   │   └── Controller.php │   ├── Models │   │   ├── Campana.php │   │   ├── Conjunto.php │   │   ├── DetalleCampana.php │   │   ├── DetalleCampanaDispositivo.php │   │   ├── Granja.php │   │   ├── Pantalla.php │   │   └── User.php │   └── Providers │   ├── AppServiceProvider.php │   └── Filament │   └── AdminPanelProvider.php ├── arbol.txt ├── artisan ├── bootstrap │   ├── app.php │   ├── cache │   │   ├── packages.php │   │   └── services.php │   └── providers.php ├── composer.json ├── composer.lock ├── config │   ├── app.php │   ├── auth.php │   ├── cache.php │   ├── database.php │   ├── filesystems.php │   ├── logging.php │   ├── mail.php │   ├── queue.php │   ├── services.php │   └── session.php ├── database │   ├── database.sqlite │   ├── factories │   │   └── UserFactory.php │   ├── migrations │   │   ├── 0001_01_01_000000_create_users_table.php │   │   ├── 0001_01_01_000001_create_cache_table.php │   │   ├── 0001_01_01_000002_create_jobs_table.php │   │   ├── 2025_07_09_203248_create_pantallas_table.php │   │   ├── 2025_07_14_151110_create_conjuntos_table.php │   │   ├── 2025_07_14_151716_create_granjas_table.php │   │   ├── 2025_07_14_152023_add_ip_local_to_conjuntos_table.php │   │   ├── 2025_07_14_160520_rename_empresa_to_conjunto_id_in_pantallas_table.php │   │   ├── 2025_07_14_163331_rename_granja_to_granja_id_in_pantallas_table.php │   │   ├── 2025_07_15_003018_add_ip_taquilla_to_complejos_table.php │   │   ├── 2025_07_15_005751_create_campanas_table.php │   │   ├── 2025_07_15_005923_create_detalles_campana_table.php │   │   └── 2025_07_15_005940_create_detalles_campana_dispositivo_table.php │   └── seeders │   └── DatabaseSeeder.php ├── package-lock.json ├── package.json ├── phpunit.xml ├── public │   ├── build │   │   ├── assets │   │   │   ├── app-DNxiirP_.js │   │   │   └── app-oCbQHhGh.css │   │   └── manifest.json │   ├── css │   │   └── filament │   │   ├── filament │   │   │   └── app.css │   │   ├── forms │   │   │   └── forms.css │   │   └── support │   │   └── support.css │   ├── favicon.ico │   ├── index.php │   ├── js │   │   └── filament │   │   ├── filament │   │   │   ├── app.js │   │   │   └── echo.js │   │   ├── forms │   │   │   └── components │   │   │   ├── color-picker.js │   │   │   ├── date-time-picker.js │   │   │   ├── file-upload.js │   │   │   ├── key-value.js │   │   │   ├── markdown-editor.js │   │   │   ├── rich-editor.js │   │   │   ├── select.js │   │   │   ├── tags-input.js │   │   │   └── textarea.js │   │   ├── notifications │   │   │   └── notifications.js │   │   ├── support │   │   │   └── support.js │   │   ├── tables │   │   │   └── components │   │   │   └── table.js │   │   └── widgets │   │   └── components │   │   ├── chart.js │   │   └── stats-overview │   │   └── stat │   │   └── chart.js │   └── robots.txt ├── resources │   ├── css │   │   └── app.css │   ├── js │   │   ├── app.js │   │   └── bootstrap.js │   └── views │   ├── filament │   │   └── pages │   └── welcome.blade.php ├── routes │   ├── console.php │   └── web.php ├── sockers │   ├── node_modules │   │   ├── accepts │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── body-parser │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   ├── lib │   │   │   │   ├── read.js │   │   │   │   ├── types │   │   │   │   │   ├── json.js │   │   │   │   │   ├── raw.js │   │   │   │   │   ├── text.js │   │   │   │   │   └── urlencoded.js │   │   │   │   └── utils.js │   │   │   └── package.json │   │   ├── bytes │   │   │   ├── History.md │   │   │   ├── LICENSE │   │   │   ├── Readme.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── call-bind-apply-helpers │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── actualApply.d.ts │   │   │   ├── actualApply.js │   │   │   ├── applyBind.d.ts │   │   │   ├── applyBind.js │   │   │   ├── functionApply.d.ts │   │   │   ├── functionApply.js │   │   │   ├── functionCall.d.ts │   │   │   ├── functionCall.js │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   ├── reflectApply.d.ts │   │   │   ├── reflectApply.js │   │   │   ├── test │   │   │   │   └── index.js │   │   │   └── tsconfig.json │   │   ├── call-bound │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   ├── test │   │   │   │   └── index.js │   │   │   └── tsconfig.json │   │   ├── content-disposition │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── content-type │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── cookie │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── cookie-signature │   │   │   ├── History.md │   │   │   ├── LICENSE │   │   │   ├── Readme.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── debug │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── package.json │   │   │   └── src │   │   │   ├── browser.js │   │   │   ├── common.js │   │   │   ├── index.js │   │   │   └── node.js │   │   ├── depd │   │   │   ├── History.md │   │   │   ├── LICENSE │   │   │   ├── Readme.md │   │   │   ├── index.js │   │   │   ├── lib │   │   │   │   └── browser │   │   │   │   └── index.js │   │   │   └── package.json │   │   ├── dunder-proto │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── get.d.ts │   │   │   ├── get.js │   │   │   ├── package.json │   │   │   ├── set.d.ts │   │   │   ├── set.js │   │   │   ├── test │   │   │   │   ├── get.js │   │   │   │   ├── index.js │   │   │   │   └── set.js │   │   │   └── tsconfig.json │   │   ├── ee-first │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── encodeurl │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── es-define-property │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   ├── test │   │   │   │   └── index.js │   │   │   └── tsconfig.json │   │   ├── es-errors │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── eval.d.ts │   │   │   ├── eval.js │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   ├── range.d.ts │   │   │   ├── range.js │   │   │   ├── ref.d.ts │   │   │   ├── ref.js │   │   │   ├── syntax.d.ts │   │   │   ├── syntax.js │   │   │   ├── test │   │   │   │   └── index.js │   │   │   ├── tsconfig.json │   │   │   ├── type.d.ts │   │   │   ├── type.js │   │   │   ├── uri.d.ts │   │   │   └── uri.js │   │   ├── es-object-atoms │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── RequireObjectCoercible.d.ts │   │   │   ├── RequireObjectCoercible.js │   │   │   ├── ToObject.d.ts │   │   │   ├── ToObject.js │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── isObject.d.ts │   │   │   ├── isObject.js │   │   │   ├── package.json │   │   │   ├── test │   │   │   │   └── index.js │   │   │   └── tsconfig.json │   │   ├── escape-html │   │   │   ├── LICENSE │   │   │   ├── Readme.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── etag │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── express │   │   │   ├── History.md │   │   │   ├── LICENSE │   │   │   ├── Readme.md │   │   │   ├── index.js │   │   │   ├── lib │   │   │   │   ├── application.js │   │   │   │   ├── express.js │   │   │   │   ├── request.js │   │   │   │   ├── response.js │   │   │   │   ├── utils.js │   │   │   │   └── view.js │   │   │   └── package.json │   │   ├── finalhandler │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── forwarded │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── fresh │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── function-bind │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── implementation.js │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   └── test │   │   │   └── index.js │   │   ├── get-intrinsic │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   └── test │   │   │   └── GetIntrinsic.js │   │   ├── get-proto │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── Object.getPrototypeOf.d.ts │   │   │   ├── Object.getPrototypeOf.js │   │   │   ├── README.md │   │   │   ├── Reflect.getPrototypeOf.d.ts │   │   │   ├── Reflect.getPrototypeOf.js │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   ├── test │   │   │   │   └── index.js │   │   │   └── tsconfig.json │   │   ├── gopd │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── gOPD.d.ts │   │   │   ├── gOPD.js │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   ├── test │   │   │   │   └── index.js │   │   │   └── tsconfig.json │   │   ├── has-symbols │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   ├── shams.d.ts │   │   │   ├── shams.js │   │   │   ├── test │   │   │   │   ├── index.js │   │   │   │   ├── shams │   │   │   │   │   ├── core-js.js │   │   │   │   │   └── get-own-property-symbols.js │   │   │   │   └── tests.js │   │   │   └── tsconfig.json │   │   ├── hasown │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   └── tsconfig.json │   │   ├── http-errors │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   ├── node_modules │   │   │   │   └── statuses │   │   │   │   ├── HISTORY.md │   │   │   │   ├── LICENSE │   │   │   │   ├── README.md │   │   │   │   ├── codes.json │   │   │   │   ├── index.js │   │   │   │   └── package.json │   │   │   └── package.json │   │   ├── iconv-lite │   │   │   ├── Changelog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── encodings │   │   │   │   ├── dbcs-codec.js │   │   │   │   ├── dbcs-data.js │   │   │   │   ├── index.js │   │   │   │   ├── internal.js │   │   │   │   ├── sbcs-codec.js │   │   │   │   ├── sbcs-data-generated.js │   │   │   │   ├── sbcs-data.js │   │   │   │   ├── tables │   │   │   │   │   ├── big5-added.json │   │   │   │   │   ├── cp936.json │   │   │   │   │   ├── cp949.json │   │   │   │   │   ├── cp950.json │   │   │   │   │   ├── eucjp.json │   │   │   │   │   ├── gb18030-ranges.json │   │   │   │   │   ├── gbk-added.json │   │   │   │   │   └── shiftjis.json │   │   │   │   ├── utf16.js │   │   │   │   ├── utf32.js │   │   │   │   └── utf7.js │   │   │   ├── lib │   │   │   │   ├── bom-handling.js │   │   │   │   ├── index.d.ts │   │   │   │   ├── index.js │   │   │   │   └── streams.js │   │   │   └── package.json │   │   ├── inherits │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── inherits.js │   │   │   ├── inherits_browser.js │   │   │   └── package.json │   │   ├── ipaddr.js │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── ipaddr.min.js │   │   │   ├── lib │   │   │   │   ├── ipaddr.js │   │   │   │   └── ipaddr.js.d.ts │   │   │   └── package.json │   │   ├── is-promise │   │   │   ├── LICENSE │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── index.mjs │   │   │   ├── package.json │   │   │   └── readme.md │   │   ├── math-intrinsics │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── abs.d.ts │   │   │   ├── abs.js │   │   │   ├── constants │   │   │   │   ├── maxArrayLength.d.ts │   │   │   │   ├── maxArrayLength.js │   │   │   │   ├── maxSafeInteger.d.ts │   │   │   │   ├── maxSafeInteger.js │   │   │   │   ├── maxValue.d.ts │   │   │   │   └── maxValue.js │   │   │   ├── floor.d.ts │   │   │   ├── floor.js │   │   │   ├── isFinite.d.ts │   │   │   ├── isFinite.js │   │   │   ├── isInteger.d.ts │   │   │   ├── isInteger.js │   │   │   ├── isNaN.d.ts │   │   │   ├── isNaN.js │   │   │   ├── isNegativeZero.d.ts │   │   │   ├── isNegativeZero.js │   │   │   ├── max.d.ts │   │   │   ├── max.js │   │   │   ├── min.d.ts │   │   │   ├── min.js │   │   │   ├── mod.d.ts │   │   │   ├── mod.js │   │   │   ├── package.json │   │   │   ├── pow.d.ts │   │   │   ├── pow.js │   │   │   ├── round.d.ts │   │   │   ├── round.js │   │   │   ├── sign.d.ts │   │   │   ├── sign.js │   │   │   ├── test │   │   │   │   └── index.js │   │   │   └── tsconfig.json │   │   ├── media-typer │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── merge-descriptors │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── license │   │   │   ├── package.json │   │   │   └── readme.md │   │   ├── mime-db │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── db.json │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── mime-types │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   ├── mimeScore.js │   │   │   └── package.json │   │   ├── ms │   │   │   ├── index.js │   │   │   ├── license.md │   │   │   ├── package.json │   │   │   └── readme.md │   │   ├── negotiator │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   ├── lib │   │   │   │   ├── charset.js │   │   │   │   ├── encoding.js │   │   │   │   ├── language.js │   │   │   │   └── mediaType.js │   │   │   └── package.json │   │   ├── object-inspect │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── example │   │   │   │   ├── all.js │   │   │   │   ├── circular.js │   │   │   │   ├── fn.js │   │   │   │   └── inspect.js │   │   │   ├── index.js │   │   │   ├── package-support.json │   │   │   ├── package.json │   │   │   ├── readme.markdown │   │   │   ├── test │   │   │   │   ├── bigint.js │   │   │   │   ├── browser │   │   │   │   │   └── dom.js │   │   │   │   ├── circular.js │   │   │   │   ├── deep.js │   │   │   │   ├── element.js │   │   │   │   ├── err.js │   │   │   │   ├── fakes.js │   │   │   │   ├── fn.js │   │   │   │   ├── global.js │   │   │   │   ├── has.js │   │   │   │   ├── holes.js │   │   │   │   ├── indent-option.js │   │   │   │   ├── inspect.js │   │   │   │   ├── lowbyte.js │   │   │   │   ├── number.js │   │   │   │   ├── quoteStyle.js │   │   │   │   ├── toStringTag.js │   │   │   │   ├── undef.js │   │   │   │   └── values.js │   │   │   ├── test-core-js.js │   │   │   └── util.inspect.js │   │   ├── on-finished │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── once │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── once.js │   │   │   └── package.json │   │   ├── parseurl │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── path-to-regexp │   │   │   ├── LICENSE │   │   │   ├── Readme.md │   │   │   ├── dist │   │   │   │   ├── index.d.ts │   │   │   │   ├── index.js │   │   │   │   └── index.js.map │   │   │   └── package.json │   │   ├── proxy-addr │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── qs │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── dist │   │   │   │   └── qs.js │   │   │   ├── lib │   │   │   │   ├── formats.js │   │   │   │   ├── index.js │   │   │   │   ├── parse.js │   │   │   │   ├── stringify.js │   │   │   │   └── utils.js │   │   │   ├── package.json │   │   │   └── test │   │   │   ├── empty-keys-cases.js │   │   │   ├── parse.js │   │   │   ├── stringify.js │   │   │   └── utils.js │   │   ├── range-parser │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── raw-body │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── router │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   ├── lib │   │   │   │   ├── layer.js │   │   │   │   └── route.js │   │   │   └── package.json │   │   ├── safe-buffer │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── safer-buffer │   │   │   ├── LICENSE │   │   │   ├── Porting-Buffer.md │   │   │   ├── Readme.md │   │   │   ├── dangerous.js │   │   │   ├── package.json │   │   │   ├── safer.js │   │   │   └── tests.js │   │   ├── send │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── serve-static │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── setprototypeof │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   └── test │   │   │   └── index.js │   │   ├── side-channel │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   ├── test │   │   │   │   └── index.js │   │   │   └── tsconfig.json │   │   ├── side-channel-list │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── list.d.ts │   │   │   ├── package.json │   │   │   ├── test │   │   │   │   └── index.js │   │   │   └── tsconfig.json │   │   ├── side-channel-map │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   ├── test │   │   │   │   └── index.js │   │   │   └── tsconfig.json │   │   ├── side-channel-weakmap │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.d.ts │   │   │   ├── index.js │   │   │   ├── package.json │   │   │   ├── test │   │   │   │   └── index.js │   │   │   └── tsconfig.json │   │   ├── statuses │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── codes.json │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── toidentifier │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── type-is │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── unpipe │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── vary │   │   │   ├── HISTORY.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── index.js │   │   │   └── package.json │   │   └── wrappy │   │   ├── LICENSE │   │   ├── README.md │   │   ├── package.json │   │   └── wrappy.js │   ├── package-lock.json │   ├── package.json │   ├── server.js │   ├── server2.js │   └── serverOLD.js ├── storage │   ├── app │   │   ├── private │   │   └── public │   ├── framework │   │   ├── cache │   │   │   └── data │   │   ├── sessions │   │   ├── testing │   │   └── views │   │   ├── 00d973fce55883b6b203ff9179301ba9.php │   │   ├── 0427448b31c7fba830eb7846fa9ddb7d.php │   │   ├── 09bddc69768871f95878c293a9792084.php │   │   ├── 0df614b4c9f5bc1a2fd692441f89434e.php │   │   ├── 0f7db9bcda476ff144e97554f2bac6ce.php │   │   ├── 131d18d03358d98b964293bb9d4a546e.php │   │   ├── 14282a674d8e72197baa0dd9c1b84827.php │   │   ├── 1613b305e1131bf7b5878e7fe911f6db.php │   │   ├── 184feeb079ebec1e6b7830bc3f7e0355.php │   │   ├── 1b1d7a477294db1accb3c16e8f5b376a.php │   │   ├── 1d99a7e4df9cb78eeaf464df03e7012b.blade.php │   │   ├── 287bdf7084f7a75894922bd31f07c27b.php │   │   ├── 2eb474b6ed3a057d566f37345bf8c5f0.php │   │   ├── 312d3a5717e15fb5910b987cde3c8f85.php │   │   ├── 33ffcfd4fc60280e9b95032bc3e991c1.php │   │   ├── 3c9c0fb38e318055c9920f9ffc7a9a6a.php │   │   ├── 3d8d82d6bd15ac7e85b2989252f65e41.php │   │   ├── 3e10cb08b3f529208bcd484797bb388b.php │   │   ├── 3ef07c470c91b96fe76fc4ac4b3415f4.php │   │   ├── 3f7d56d3d84c9e994d9f8141b801bbd0.php │   │   ├── 40ac7d83e4048a1a2fe7378c68e495e0.php │   │   ├── 40cbfdf95c5dd4d542be7a7a571ad2bb.php │   │   ├── 42e995798d0dc610cb918c282c88ab55.php │   │   ├── 42ef85db164162fea0abc94c7c5b8876.php │   │   ├── 4884d73b2d8f400b4e677679d636b37a.php │   │   ├── 48ed4b48b183f44bd573f197c9b919da.php │   │   ├── 4943bc92ebba41e8b0e508149542e0ad.blade.php │   │   ├── 4e08262e37252af4d0ec53b8f597c6de.blade.php │   │   ├── 4fb4930479be50d6e4e53351ecd8a99c.php │   │   ├── 4fca3c0e8c4e8a7b7e1bbee24a606852.php │   │   ├── 520c56e6ff33c112e08b7338e917b5f1.php │   │   ├── 5378d8827a22a331d8a072923c7cd0b2.php │   │   ├── 53bb81acb14ba324b949d8f72cdc138d.php │   │   ├── 56718cebb93085d49d8555e35ac219b7.php │   │   ├── 5bb346f921dc84957c29dd6c8beb79de.php │   │   ├── 5deb9e0cc37e88155aa528b801fd9bc6.php │   │   ├── 61db1e8389afa5cca7f3d440463d70ba.php │   │   ├── 64cb88ae145036492c1fcb75ceca6f81.php │   │   ├── 6544f5dac174259748d865034878342e.php │   │   ├── 654d8a83a5dfaca892922be7b23230ae.php │   │   ├── 68793682237d3d6578c3843f46252939.php │   │   ├── 6ac8bf746f152eca43fa7e12b9a0b0d4.php │   │   ├── 6b5f75126a40af3882d5fc5c88c900c4.php │   │   ├── 6bc68a97868c60b967627dc0495efdeb.php │   │   ├── 6c4627759aa7185d35609398c2722844.php │   │   ├── 6cd899a25aaf0d4492e1d0024d86a7dc.php │   │   ├── 732b7fec2d3d8e1fea35d1d4f90bddec.php │   │   ├── 76fb459017a6e14354b6c4f4c686cb2d.php │   │   ├── 7dc1c6ff12a754c713bc5df192779c6a.php │   │   ├── 7e02d7f5749b1dd6b4e50ada8627ea26.php │   │   ├── 7efa8d8730e6e64b895c482f47ff6151.blade.php │   │   ├── 7f2be5d8af593a0ad15854d16f2bb9bd.php │   │   ├── 813178f96031bb93c4da7801dc4fd69f.php │   │   ├── 833483cfa16e432b41b5864207f5206f.php │   │   ├── 87833c71fe49ee780bacc98e1fd7ecfd.php │   │   ├── 938c67515fdf3e9532a45801a4e4c297.php │   │   ├── 94f282411c704e9aea6739b79bcb6f7c.php │   │   ├── 9856d558cd9152b148185df3658cebcf.php │   │   ├── 996fa907350748355503fd22adbd41c1.php │   │   ├── 9acc8bd1c7bfbc0566f6e7ce6a92f873.blade.php │   │   ├── 9b0aa906eb507785d5e713f2ff316d37.blade.php │   │   ├── 9b13ae0345d32fe020e211004a61e6fa.php │   │   ├── 9e3308b6bdcb6755093a42da81d8bb84.php │   │   ├── a44ac6bb3c16f92de9a105ded87e7d0e.php │   │   ├── a56eaaf9f151bdf6223a3b9a9050b55a.php │   │   ├── a869bd7644df3132e8e58f2a7905ab91.php │   │   ├── a9bbd091e747c365a4a77c3859dae388.php │   │   ├── aad9ee0f1717ba008c7fad0ef3907e17.php │   │   ├── b3ecca1ff40e5682e945502e1c847056.blade.php │   │   ├── bd31e88145d24c6980a842fbcee446e7.blade.php │   │   ├── bed253ef0d97429ce9acdf8a3b1d5154.php │   │   ├── bf33ecbeeb8cd53dcc3fb8953e355d49.php │   │   ├── c219980f0d3823ed2a23a514683cd7ef.php │   │   ├── c4d838d9ff41ca6e629eca461ffde5f3.php │   │   ├── c7fa8d4e4612f0eb04b5e33ba63b3bdc.php │   │   ├── cbd452ae8eddb208e6c4d2ca03556a25.php │   │   ├── ccdbaee668c9ecd4ad4b914bb531b4da.php │   │   ├── ce85ea57782979f132ee4b4a91eec68c.php │   │   ├── d31c6101194f6618e777739f00ab474a.php │   │   ├── d3c381eff6929844576efc629ae05f9c.php │   │   ├── d428c1263df1a92df4fe127874c2c03d.php │   │   ├── d6241b4396d3d8782333bf1d2bbb6c3b.php │   │   ├── d6bad10aee982b258eafd5e48e7f084e.php │   │   ├── d96603c08964dbf5a60dbb1b61947b8c.php │   │   ├── d9b85b194519bb56f69500b48a76092d.php │   │   ├── dd0a15a3310c35ee3f579928e5d4cc04.php │   │   ├── e1d89706f60947b414d94840dd0cc24d.php │   │   ├── e2e9f05006e1a06e584a70ac1f17838c.php │   │   ├── e62d3fa5e376827433df965b028ca781.php │   │   ├── ec2e4173dca523c726dd5353f1068b83.php │   │   ├── fa9940c21c13c67f15f29ddb938711ed.php │   │   └── fb5a634cf8300b54fc9c27d3b0a3f2ca.php │   └── logs │   └── laravel.log ├── tests │   ├── Feature │   │   └── ExampleTest.php │   ├── Pest.php │   ├── TestCase.php │   └── Unit │   └── ExampleTest.php ├── vendor │   ├── anourvalar │   │   └── eloquent-serialize │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   ├── phpunit9.xml │   │   └── src │   │   ├── Facades │   │   │   └── EloquentSerializeFacade.php │   │   ├── Grammars │   │   │   ├── EloquentBuilderGrammar.php │   │   │   ├── ModelGrammar.php │   │   │   └── QueryBuilderGrammar.php │   │   ├── Package.php │   │   └── Service.php │   ├── autoload.php │   ├── bin │   │   ├── blade-icons-generate │   │   ├── carbon │   │   ├── paratest │   │   ├── paratest_for_phpstorm │   │   ├── patch-type-declarations │   │   ├── pest │   │   ├── php-parse │   │   ├── phpunit │   │   ├── pint │   │   ├── psysh │   │   ├── sail │   │   ├── var-dump-server │   │   └── yaml-lint │   ├── blade-ui-kit │   │   ├── blade-heroicons │   │   │   ├── LICENSE.md │   │   │   ├── composer.json │   │   │   ├── config │   │   │   │   └── blade-heroicons.php │   │   │   ├── package.json │   │   │   ├── resources │   │   │   │   └── svg │   │   │   │   ├── c-academic-cap.svg │   │   │   │   ├── c-adjustments-horizontal.svg │   │   │   │   ├── c-adjustments-vertical.svg │   │   │   │   ├── c-archive-box-arrow-down.svg │   │   │   │   ├── c-archive-box-x-mark.svg │   │   │   │   ├── c-archive-box.svg │   │   │   │   ├── c-arrow-down-circle.svg │   │   │   │   ├── c-arrow-down-left.svg │   │   │   │   ├── c-arrow-down-on-square-stack.svg │   │   │   │   ├── c-arrow-down-on-square.svg │   │   │   │   ├── c-arrow-down-right.svg │   │   │   │   ├── c-arrow-down-tray.svg │   │   │   │   ├── c-arrow-down.svg │   │   │   │   ├── c-arrow-left-circle.svg │   │   │   │   ├── c-arrow-left-end-on-rectangle.svg │   │   │   │   ├── c-arrow-left-start-on-rectangle.svg │   │   │   │   ├── c-arrow-left.svg │   │   │   │   ├── c-arrow-long-down.svg │   │   │   │   ├── c-arrow-long-left.svg │   │   │   │   ├── c-arrow-long-right.svg │   │   │   │   ├── c-arrow-long-up.svg │   │   │   │   ├── c-arrow-path-rounded-square.svg │   │   │   │   ├── c-arrow-path.svg │   │   │   │   ├── c-arrow-right-circle.svg │   │   │   │   ├── c-arrow-right-end-on-rectangle.svg │   │   │   │   ├── c-arrow-right-start-on-rectangle.svg │   │   │   │   ├── c-arrow-right.svg │   │   │   │   ├── c-arrow-top-right-on-square.svg │   │   │   │   ├── c-arrow-trending-down.svg │   │   │   │   ├── c-arrow-trending-up.svg │   │   │   │   ├── c-arrow-turn-down-left.svg │   │   │   │   ├── c-arrow-turn-down-right.svg │   │   │   │   ├── c-arrow-turn-left-down.svg │   │   │   │   ├── c-arrow-turn-left-up.svg │   │   │   │   ├── c-arrow-turn-right-down.svg │   │   │   │   ├── c-arrow-turn-right-up.svg │   │   │   │   ├── c-arrow-turn-up-left.svg │   │   │   │   ├── c-arrow-turn-up-right.svg │   │   │   │   ├── c-arrow-up-circle.svg │   │   │   │   ├── c-arrow-up-left.svg │   │   │   │   ├── c-arrow-up-on-square-stack.svg │   │   │   │   ├── c-arrow-up-on-square.svg │   │   │   │   ├── c-arrow-up-right.svg │   │   │   │   ├── c-arrow-up-tray.svg │   │   │   │   ├── c-arrow-up.svg │   │   │   │   ├── c-arrow-uturn-down.svg │   │   │   │   ├── c-arrow-uturn-left.svg │   │   │   │   ├── c-arrow-uturn-right.svg │   │   │   │   ├── c-arrow-uturn-up.svg │   │   │   │   ├── c-arrows-pointing-in.svg │   │   │   │   ├── c-arrows-pointing-out.svg │   │   │   │   ├── c-arrows-right-left.svg │   │   │   │   ├── c-arrows-up-down.svg │   │   │   │   ├── c-at-symbol.svg │   │   │   │   ├── c-backspace.svg │   │   │   │   ├── c-backward.svg │   │   │   │   ├── c-banknotes.svg │   │   │   │   ├── c-bars-2.svg │   │   │   │   ├── c-bars-3-bottom-left.svg │   │   │   │   ├── c-bars-3-bottom-right.svg │   │   │   │   ├── c-bars-3-center-left.svg │   │   │   │   ├── c-bars-3.svg │   │   │   │   ├── c-bars-4.svg │   │   │   │   ├── c-bars-arrow-down.svg │   │   │   │   ├── c-bars-arrow-up.svg │   │   │   │   ├── c-battery-0.svg │   │   │   │   ├── c-battery-100.svg │   │   │   │   ├── c-battery-50.svg │   │   │   │   ├── c-beaker.svg │   │   │   │   ├── c-bell-alert.svg │   │   │   │   ├── c-bell-slash.svg │   │   │   │   ├── c-bell-snooze.svg │   │   │   │   ├── c-bell.svg │   │   │   │   ├── c-bold.svg │   │   │   │   ├── c-bolt-slash.svg │   │   │   │   ├── c-bolt.svg │   │   │   │   ├── c-book-open.svg │   │   │   │   ├── c-bookmark-slash.svg │   │   │   │   ├── c-bookmark-square.svg │   │   │   │   ├── c-bookmark.svg │   │   │   │   ├── c-briefcase.svg │   │   │   │   ├── c-bug-ant.svg │   │   │   │   ├── c-building-library.svg │   │   │   │   ├── c-building-office-2.svg │   │   │   │   ├── c-building-office.svg │   │   │   │   ├── c-building-storefront.svg │   │   │   │   ├── c-cake.svg │   │   │   │   ├── c-calculator.svg │   │   │   │   ├── c-calendar-date-range.svg │   │   │   │   ├── c-calendar-days.svg │   │   │   │   ├── c-calendar.svg │   │   │   │   ├── c-camera.svg │   │   │   │   ├── c-chart-bar-square.svg │   │   │   │   ├── c-chart-bar.svg │   │   │   │   ├── c-chart-pie.svg │   │   │   │   ├── c-chat-bubble-bottom-center-text.svg │   │   │   │   ├── c-chat-bubble-bottom-center.svg │   │   │   │   ├── c-chat-bubble-left-ellipsis.svg │   │   │   │   ├── c-chat-bubble-left-right.svg │   │   │   │   ├── c-chat-bubble-left.svg │   │   │   │   ├── c-chat-bubble-oval-left-ellipsis.svg │   │   │   │   ├── c-chat-bubble-oval-left.svg │   │   │   │   ├── c-check-badge.svg │   │   │   │   ├── c-check-circle.svg │   │   │   │   ├── c-check.svg │   │   │   │   ├── c-chevron-double-down.svg │   │   │   │   ├── c-chevron-double-left.svg │   │   │   │   ├── c-chevron-double-right.svg │   │   │   │   ├── c-chevron-double-up.svg │   │   │   │   ├── c-chevron-down.svg │   │   │   │   ├── c-chevron-left.svg │   │   │   │   ├── c-chevron-right.svg │   │   │   │   ├── c-chevron-up-down.svg │   │   │   │   ├── c-chevron-up.svg │   │   │   │   ├── c-circle-stack.svg │   │   │   │   ├── c-clipboard-document-check.svg │   │   │   │   ├── c-clipboard-document-list.svg │   │   │   │   ├── c-clipboard-document.svg │   │   │   │   ├── c-clipboard.svg │   │   │   │   ├── c-clock.svg │   │   │   │   ├── c-cloud-arrow-down.svg │   │   │   │   ├── c-cloud-arrow-up.svg │   │   │   │   ├── c-cloud.svg │   │   │   │   ├── c-code-bracket-square.svg │   │   │   │   ├── c-code-bracket.svg │   │   │   │   ├── c-cog-6-tooth.svg │   │   │   │   ├── c-cog-8-tooth.svg │   │   │   │   ├── c-cog.svg │   │   │   │   ├── c-command-line.svg │   │   │   │   ├── c-computer-desktop.svg │   │   │   │   ├── c-cpu-chip.svg │   │   │   │   ├── c-credit-card.svg │   │   │   │   ├── c-cube-transparent.svg │   │   │   │   ├── c-cube.svg │   │   │   │   ├── c-currency-bangladeshi.svg │   │   │   │   ├── c-currency-dollar.svg │   │   │   │   ├── c-currency-euro.svg │   │   │   │   ├── c-currency-pound.svg │   │   │   │   ├── c-currency-rupee.svg │   │   │   │   ├── c-currency-yen.svg │   │   │   │   ├── c-cursor-arrow-rays.svg │   │   │   │   ├── c-cursor-arrow-ripple.svg │   │   │   │   ├── c-device-phone-mobile.svg │   │   │   │   ├── c-device-tablet.svg │   │   │   │   ├── c-divide.svg │   │   │   │   ├── c-document-arrow-down.svg │   │   │   │   ├── c-document-arrow-up.svg │   │   │   │   ├── c-document-chart-bar.svg │   │   │   │   ├── c-document-check.svg │   │   │   │   ├── c-document-currency-bangladeshi.svg │   │   │   │   ├── c-document-currency-dollar.svg │   │   │   │   ├── c-document-currency-euro.svg │   │   │   │   ├── c-document-currency-pound.svg │   │   │   │   ├── c-document-currency-rupee.svg │   │   │   │   ├── c-document-currency-yen.svg │   │   │   │   ├── c-document-duplicate.svg │   │   │   │   ├── c-document-magnifying-glass.svg │   │   │   │   ├── c-document-minus.svg │   │   │   │   ├── c-document-plus.svg │   │   │   │   ├── c-document-text.svg │   │   │   │   ├── c-document.svg │   │   │   │   ├── c-ellipsis-horizontal-circle.svg │   │   │   │   ├── c-ellipsis-horizontal.svg │   │   │   │   ├── c-ellipsis-vertical.svg │   │   │   │   ├── c-envelope-open.svg │   │   │   │   ├── c-envelope.svg │   │   │   │   ├── c-equals.svg │   │   │   │   ├── c-exclamation-circle.svg │   │   │   │   ├── c-exclamation-triangle.svg │   │   │   │   ├── c-eye-dropper.svg │   │   │   │   ├── c-eye-slash.svg │   │   │   │   ├── c-eye.svg │   │   │   │   ├── c-face-frown.svg │   │   │   │   ├── c-face-smile.svg │   │   │   │   ├── c-film.svg │   │   │   │   ├── c-finger-print.svg │   │   │   │   ├── c-fire.svg │   │   │   │   ├── c-flag.svg │   │   │   │   ├── c-folder-arrow-down.svg │   │   │   │   ├── c-folder-minus.svg │   │   │   │   ├── c-folder-open.svg │   │   │   │   ├── c-folder-plus.svg │   │   │   │   ├── c-folder.svg │   │   │   │   ├── c-forward.svg │   │   │   │   ├── c-funnel.svg │   │   │   │   ├── c-gif.svg │   │   │   │   ├── c-gift-top.svg │   │   │   │   ├── c-gift.svg │   │   │   │   ├── c-globe-alt.svg │   │   │   │   ├── c-globe-americas.svg │   │   │   │   ├── c-globe-asia-australia.svg │   │   │   │   ├── c-globe-europe-africa.svg │   │   │   │   ├── c-h1.svg │   │   │   │   ├── c-h2.svg │   │   │   │   ├── c-h3.svg │   │   │   │   ├── c-hand-raised.svg │   │   │   │   ├── c-hand-thumb-down.svg │   │   │   │   ├── c-hand-thumb-up.svg │   │   │   │   ├── c-hashtag.svg │   │   │   │   ├── c-heart.svg │   │   │   │   ├── c-home-modern.svg │   │   │   │   ├── c-home.svg │   │   │   │   ├── c-identification.svg │   │   │   │   ├── c-inbox-arrow-down.svg │   │   │   │   ├── c-inbox-stack.svg │   │   │   │   ├── c-inbox.svg │   │   │   │   ├── c-information-circle.svg │   │   │   │   ├── c-italic.svg │   │   │   │   ├── c-key.svg │   │   │   │   ├── c-language.svg │   │   │   │   ├── c-lifebuoy.svg │   │   │   │   ├── c-light-bulb.svg │   │   │   │   ├── c-link-slash.svg │   │   │   │   ├── c-link.svg │   │   │   │   ├── c-list-bullet.svg │   │   │   │   ├── c-lock-closed.svg │   │   │   │   ├── c-lock-open.svg │   │   │   │   ├── c-magnifying-glass-circle.svg │   │   │   │   ├── c-magnifying-glass-minus.svg │   │   │   │   ├── c-magnifying-glass-plus.svg │   │   │   │   ├── c-magnifying-glass.svg │   │   │   │   ├── c-map-pin.svg │   │   │   │   ├── c-map.svg │   │   │   │   ├── c-megaphone.svg │   │   │   │   ├── c-microphone.svg │   │   │   │   ├── c-minus-circle.svg │   │   │   │   ├── c-minus.svg │   │   │   │   ├── c-moon.svg │   │   │   │   ├── c-musical-note.svg │   │   │   │   ├── c-newspaper.svg │   │   │   │   ├── c-no-symbol.svg │   │   │   │   ├── c-numbered-list.svg │   │   │   │   ├── c-paint-brush.svg │   │   │   │   ├── c-paper-airplane.svg │   │   │   │   ├── c-paper-clip.svg │   │   │   │   ├── c-pause-circle.svg │   │   │   │   ├── c-pause.svg │   │   │   │   ├── c-pencil-square.svg │   │   │   │   ├── c-pencil.svg │   │   │   │   ├── c-percent-badge.svg │   │   │   │   ├── c-phone-arrow-down-left.svg │   │   │   │   ├── c-phone-arrow-up-right.svg │   │   │   │   ├── c-phone-x-mark.svg │   │   │   │   ├── c-phone.svg │   │   │   │   ├── c-photo.svg │   │   │   │   ├── c-play-circle.svg │   │   │   │   ├── c-play-pause.svg │   │   │   │   ├── c-play.svg │   │   │   │   ├── c-plus-circle.svg │   │   │   │   ├── c-plus.svg │   │   │   │   ├── c-power.svg │   │   │   │   ├── c-presentation-chart-bar.svg │   │   │   │   ├── c-presentation-chart-line.svg │   │   │   │   ├── c-printer.svg │   │   │   │   ├── c-puzzle-piece.svg │   │   │   │   ├── c-qr-code.svg │   │   │   │   ├── c-question-mark-circle.svg │   │   │   │   ├── c-queue-list.svg │   │   │   │   ├── c-radio.svg │   │   │   │   ├── c-receipt-percent.svg │   │   │   │   ├── c-receipt-refund.svg │   │   │   │   ├── c-rectangle-group.svg │   │   │   │   ├── c-rectangle-stack.svg │   │   │   │   ├── c-rocket-launch.svg │   │   │   │   ├── c-rss.svg │   │   │   │   ├── c-scale.svg │   │   │   │   ├── c-scissors.svg │   │   │   │   ├── c-server-stack.svg │   │   │   │   ├── c-server.svg │   │   │   │   ├── c-share.svg │   │   │   │   ├── c-shield-check.svg │   │   │   │   ├── c-shield-exclamation.svg │   │   │   │   ├── c-shopping-bag.svg │   │   │   │   ├── c-shopping-cart.svg │   │   │   │   ├── c-signal-slash.svg │   │   │   │   ├── c-signal.svg │   │   │   │   ├── c-slash.svg │   │   │   │   ├── c-sparkles.svg │   │   │   │   ├── c-speaker-wave.svg │   │   │   │   ├── c-speaker-x-mark.svg │   │   │   │   ├── c-square-2-stack.svg │   │   │   │   ├── c-square-3-stack-3d.svg │   │   │   │   ├── c-squares-2x2.svg │   │   │   │   ├── c-squares-plus.svg │   │   │   │   ├── c-star.svg │   │   │   │   ├── c-stop-circle.svg │   │   │   │   ├── c-stop.svg │   │   │   │   ├── c-strikethrough.svg │   │   │   │   ├── c-sun.svg │   │   │   │   ├── c-swatch.svg │   │   │   │   ├── c-table-cells.svg │   │   │   │   ├── c-tag.svg │   │   │   │   ├── c-ticket.svg │   │   │   │   ├── c-trash.svg │   │   │   │   ├── c-trophy.svg │   │   │   │   ├── c-truck.svg │   │   │   │   ├── c-tv.svg │   │   │   │   ├── c-underline.svg │   │   │   │   ├── c-user-circle.svg │   │   │   │   ├── c-user-group.svg │   │   │   │   ├── c-user-minus.svg │   │   │   │   ├── c-user-plus.svg │   │   │   │   ├── c-user.svg │   │   │   │   ├── c-users.svg │   │   │   │   ├── c-variable.svg │   │   │   │   ├── c-video-camera-slash.svg │   │   │   │   ├── c-video-camera.svg │   │   │   │   ├── c-view-columns.svg │   │   │   │   ├── c-viewfinder-circle.svg │   │   │   │   ├── c-wallet.svg │   │   │   │   ├── c-wifi.svg │   │   │   │   ├── c-window.svg │   │   │   │   ├── c-wrench-screwdriver.svg │   │   │   │   ├── c-wrench.svg │   │   │   │   ├── c-x-circle.svg │   │   │   │   ├── c-x-mark.svg │   │   │   │   ├── m-academic-cap.svg │   │   │   │   ├── m-adjustments-horizontal.svg │   │   │   │   ├── m-adjustments-vertical.svg │   │   │   │   ├── m-archive-box-arrow-down.svg │   │   │   │   ├── m-archive-box-x-mark.svg │   │   │   │   ├── m-archive-box.svg │   │   │   │   ├── m-arrow-down-circle.svg │   │   │   │   ├── m-arrow-down-left.svg │   │   │   │   ├── m-arrow-down-on-square-stack.svg │   │   │   │   ├── m-arrow-down-on-square.svg │   │   │   │   ├── m-arrow-down-right.svg │   │   │   │   ├── m-arrow-down-tray.svg │   │   │   │   ├── m-arrow-down.svg │   │   │   │   ├── m-arrow-left-circle.svg │   │   │   │   ├── m-arrow-left-end-on-rectangle.svg │   │   │   │   ├── m-arrow-left-on-rectangle.svg │   │   │   │   ├── m-arrow-left-start-on-rectangle.svg │   │   │   │   ├── m-arrow-left.svg │   │   │   │   ├── m-arrow-long-down.svg │   │   │   │   ├── m-arrow-long-left.svg │   │   │   │   ├── m-arrow-long-right.svg │   │   │   │   ├── m-arrow-long-up.svg │   │   │   │   ├── m-arrow-path-rounded-square.svg │   │   │   │   ├── m-arrow-path.svg │   │   │   │   ├── m-arrow-right-circle.svg │   │   │   │   ├── m-arrow-right-end-on-rectangle.svg │   │   │   │   ├── m-arrow-right-on-rectangle.svg │   │   │   │   ├── m-arrow-right-start-on-rectangle.svg │   │   │   │   ├── m-arrow-right.svg │   │   │   │   ├── m-arrow-small-down.svg │   │   │   │   ├── m-arrow-small-left.svg │   │   │   │   ├── m-arrow-small-right.svg │   │   │   │   ├── m-arrow-small-up.svg │   │   │   │   ├── m-arrow-top-right-on-square.svg │   │   │   │   ├── m-arrow-trending-down.svg │   │   │   │   ├── m-arrow-trending-up.svg │   │   │   │   ├── m-arrow-turn-down-left.svg │   │   │   │   ├── m-arrow-turn-down-right.svg │   │   │   │   ├── m-arrow-turn-left-down.svg │   │   │   │   ├── m-arrow-turn-left-up.svg │   │   │   │   ├── m-arrow-turn-right-down.svg │   │   │   │   ├── m-arrow-turn-right-up.svg │   │   │   │   ├── m-arrow-turn-up-left.svg │   │   │   │   ├── m-arrow-turn-up-right.svg │   │   │   │   ├── m-arrow-up-circle.svg │   │   │   │   ├── m-arrow-up-left.svg │   │   │   │   ├── m-arrow-up-on-square-stack.svg │   │   │   │   ├── m-arrow-up-on-square.svg │   │   │   │   ├── m-arrow-up-right.svg │   │   │   │   ├── m-arrow-up-tray.svg │   │   │   │   ├── m-arrow-up.svg │   │   │   │   ├── m-arrow-uturn-down.svg │   │   │   │   ├── m-arrow-uturn-left.svg │   │   │   │   ├── m-arrow-uturn-right.svg │   │   │   │   ├── m-arrow-uturn-up.svg │   │   │   │   ├── m-arrows-pointing-in.svg │   │   │   │   ├── m-arrows-pointing-out.svg │   │   │   │   ├── m-arrows-right-left.svg │   │   │   │   ├── m-arrows-up-down.svg │   │   │   │   ├── m-at-symbol.svg │   │   │   │   ├── m-backspace.svg │   │   │   │   ├── m-backward.svg │   │   │   │   ├── m-banknotes.svg │   │   │   │   ├── m-bars-2.svg │   │   │   │   ├── m-bars-3-bottom-left.svg │   │   │   │   ├── m-bars-3-bottom-right.svg │   │   │   │   ├── m-bars-3-center-left.svg │   │   │   │   ├── m-bars-3.svg │   │   │   │   ├── m-bars-4.svg │   │   │   │   ├── m-bars-arrow-down.svg │   │   │   │   ├── m-bars-arrow-up.svg │   │   │   │   ├── m-battery-0.svg │   │   │   │   ├── m-battery-100.svg │   │   │   │   ├── m-battery-50.svg │   │   │   │   ├── m-beaker.svg │   │   │   │   ├── m-bell-alert.svg │   │   │   │   ├── m-bell-slash.svg │   │   │   │   ├── m-bell-snooze.svg │   │   │   │   ├── m-bell.svg │   │   │   │   ├── m-bold.svg │   │   │   │   ├── m-bolt-slash.svg │   │   │   │   ├── m-bolt.svg │   │   │   │   ├── m-book-open.svg │   │   │   │   ├── m-bookmark-slash.svg │   │   │   │   ├── m-bookmark-square.svg │   │   │   │   ├── m-bookmark.svg │   │   │   │   ├── m-briefcase.svg │   │   │   │   ├── m-bug-ant.svg │   │   │   │   ├── m-building-library.svg │   │   │   │   ├── m-building-office-2.svg │   │   │   │   ├── m-building-office.svg │   │   │   │   ├── m-building-storefront.svg │   │   │   │   ├── m-cake.svg │   │   │   │   ├── m-calculator.svg │   │   │   │   ├── m-calendar-date-range.svg │   │   │   │   ├── m-calendar-days.svg │   │   │   │   ├── m-calendar.svg │   │   │   │   ├── m-camera.svg │   │   │   │   ├── m-chart-bar-square.svg │   │   │   │   ├── m-chart-bar.svg │   │   │   │   ├── m-chart-pie.svg │   │   │   │   ├── m-chat-bubble-bottom-center-text.svg │   │   │   │   ├── m-chat-bubble-bottom-center.svg │   │   │   │   ├── m-chat-bubble-left-ellipsis.svg │   │   │   │   ├── m-chat-bubble-left-right.svg │   │   │   │   ├── m-chat-bubble-left.svg │   │   │   │   ├── m-chat-bubble-oval-left-ellipsis.svg │   │   │   │   ├── m-chat-bubble-oval-left.svg │   │   │   │   ├── m-check-badge.svg │   │   │   │   ├── m-check-circle.svg │   │   │   │   ├── m-check.svg │   │   │   │   ├── m-chevron-double-down.svg │   │   │   │   ├── m-chevron-double-left.svg │   │   │   │   ├── m-chevron-double-right.svg │   │   │   │   ├── m-chevron-double-up.svg │   │   │   │   ├── m-chevron-down.svg │   │   │   │   ├── m-chevron-left.svg │   │   │   │   ├── m-chevron-right.svg │   │   │   │   ├── m-chevron-up-down.svg │   │   │   │   ├── m-chevron-up.svg │   │   │   │   ├── m-circle-stack.svg │   │   │   │   ├── m-clipboard-document-check.svg │   │   │   │   ├── m-clipboard-document-list.svg │   │   │   │   ├── m-clipboard-document.svg │   │   │   │   ├── m-clipboard.svg │   │   │   │   ├── m-clock.svg │   │   │   │   ├── m-cloud-arrow-down.svg │   │   │   │   ├── m-cloud-arrow-up.svg │   │   │   │   ├── m-cloud.svg │   │   │   │   ├── m-code-bracket-square.svg │   │   │   │   ├── m-code-bracket.svg │   │   │   │   ├── m-cog-6-tooth.svg │   │   │   │   ├── m-cog-8-tooth.svg │   │   │   │   ├── m-cog.svg │   │   │   │   ├── m-command-line.svg │   │   │   │   ├── m-computer-desktop.svg │   │   │   │   ├── m-cpu-chip.svg │   │   │   │   ├── m-credit-card.svg │   │   │   │   ├── m-cube-transparent.svg │   │   │   │   ├── m-cube.svg │   │   │   │   ├── m-currency-bangladeshi.svg │   │   │   │   ├── m-currency-dollar.svg │   │   │   │   ├── m-currency-euro.svg │   │   │   │   ├── m-currency-pound.svg │   │   │   │   ├── m-currency-rupee.svg │   │   │   │   ├── m-currency-yen.svg │   │   │   │   ├── m-cursor-arrow-rays.svg │   │   │   │   ├── m-cursor-arrow-ripple.svg │   │   │   │   ├── m-device-phone-mobile.svg │   │   │   │   ├── m-device-tablet.svg │   │   │   │   ├── m-divide.svg │   │   │   │   ├── m-document-arrow-down.svg │   │   │   │   ├── m-document-arrow-up.svg │   │   │   │   ├── m-document-chart-bar.svg │   │   │   │   ├── m-document-check.svg │   │   │   │   ├── m-document-currency-bangladeshi.svg │   │   │   │   ├── m-document-currency-dollar.svg │   │   │   │   ├── m-document-currency-euro.svg │   │   │   │   ├── m-document-currency-pound.svg │   │   │   │   ├── m-document-currency-rupee.svg │   │   │   │   ├── m-document-currency-yen.svg │   │   │   │   ├── m-document-duplicate.svg │   │   │   │   ├── m-document-magnifying-glass.svg │   │   │   │   ├── m-document-minus.svg │   │   │   │   ├── m-document-plus.svg │   │   │   │   ├── m-document-text.svg │   │   │   │   ├── m-document.svg │   │   │   │   ├── m-ellipsis-horizontal-circle.svg │   │   │   │   ├── m-ellipsis-horizontal.svg │   │   │   │   ├── m-ellipsis-vertical.svg │   │   │   │   ├── m-envelope-open.svg │   │   │   │   ├── m-envelope.svg │   │   │   │   ├── m-equals.svg │   │   │   │   ├── m-exclamation-circle.svg │   │   │   │   ├── m-exclamation-triangle.svg │   │   │   │   ├── m-eye-dropper.svg │   │   │   │   ├── m-eye-slash.svg │   │   │   │   ├── m-eye.svg │   │   │   │   ├── m-face-frown.svg │   │   │   │   ├── m-face-smile.svg │   │   │   │   ├── m-film.svg │   │   │   │   ├── m-finger-print.svg │   │   │   │   ├── m-fire.svg │   │   │   │   ├── m-flag.svg │   │   │   │   ├── m-folder-arrow-down.svg │   │   │   │   ├── m-folder-minus.svg │   │   │   │   ├── m-folder-open.svg │   │   │   │   ├── m-folder-plus.svg │   │   │   │   ├── m-folder.svg │   │   │   │   ├── m-forward.svg │   │   │   │   ├── m-funnel.svg │   │   │   │   ├── m-gif.svg │   │   │   │   ├── m-gift-top.svg │   │   │   │   ├── m-gift.svg │   │   │   │   ├── m-globe-alt.svg │   │   │   │   ├── m-globe-americas.svg │   │   │   │   ├── m-globe-asia-australia.svg │   │   │   │   ├── m-globe-europe-africa.svg │   │   │   │   ├── m-h1.svg │   │   │   │   ├── m-h2.svg │   │   │   │   ├── m-h3.svg │   │   │   │   ├── m-hand-raised.svg │   │   │   │   ├── m-hand-thumb-down.svg │   │   │   │   ├── m-hand-thumb-up.svg │   │   │   │   ├── m-hashtag.svg │   │   │   │   ├── m-heart.svg │   │   │   │   ├── m-home-modern.svg │   │   │   │   ├── m-home.svg │   │   │   │   ├── m-identification.svg │   │   │   │   ├── m-inbox-arrow-down.svg │   │   │   │   ├── m-inbox-stack.svg │   │   │   │   ├── m-inbox.svg │   │   │   │   ├── m-information-circle.svg │   │   │   │   ├── m-italic.svg │   │   │   │   ├── m-key.svg │   │   │   │   ├── m-language.svg │   │   │   │   ├── m-lifebuoy.svg │   │   │   │   ├── m-light-bulb.svg │   │   │   │   ├── m-link-slash.svg │   │   │   │   ├── m-link.svg │   │   │   │   ├── m-list-bullet.svg │   │   │   │   ├── m-lock-closed.svg │   │   │   │   ├── m-lock-open.svg │   │   │   │   ├── m-magnifying-glass-circle.svg │   │   │   │   ├── m-magnifying-glass-minus.svg │   │   │   │   ├── m-magnifying-glass-plus.svg │   │   │   │   ├── m-magnifying-glass.svg │   │   │   │   ├── m-map-pin.svg │   │   │   │   ├── m-map.svg │   │   │   │   ├── m-megaphone.svg │   │   │   │   ├── m-microphone.svg │   │   │   │   ├── m-minus-circle.svg │   │   │   │   ├── m-minus-small.svg │   │   │   │   ├── m-minus.svg │   │   │   │   ├── m-moon.svg │   │   │   │   ├── m-musical-note.svg │   │   │   │   ├── m-newspaper.svg │   │   │   │   ├── m-no-symbol.svg │   │   │   │   ├── m-numbered-list.svg │   │   │   │   ├── m-paint-brush.svg │   │   │   │   ├── m-paper-airplane.svg │   │   │   │   ├── m-paper-clip.svg │   │   │   │   ├── m-pause-circle.svg │   │   │   │   ├── m-pause.svg │   │   │   │   ├── m-pencil-square.svg │   │   │   │   ├── m-pencil.svg │   │   │   │   ├── m-percent-badge.svg │   │   │   │   ├── m-phone-arrow-down-left.svg │   │   │   │   ├── m-phone-arrow-up-right.svg │   │   │   │   ├── m-phone-x-mark.svg │   │   │   │   ├── m-phone.svg │   │   │   │   ├── m-photo.svg │   │   │   │   ├── m-play-circle.svg │   │   │   │   ├── m-play-pause.svg │   │   │   │   ├── m-play.svg │   │   │   │   ├── m-plus-circle.svg │   │   │   │   ├── m-plus-small.svg │   │   │   │   ├── m-plus.svg │   │   │   │   ├── m-power.svg │   │   │   │   ├── m-presentation-chart-bar.svg │   │   │   │   ├── m-presentation-chart-line.svg │   │   │   │   ├── m-printer.svg │   │   │   │   ├── m-puzzle-piece.svg │   │   │   │   ├── m-qr-code.svg │   │   │   │   ├── m-question-mark-circle.svg │   │   │   │   ├── m-queue-list.svg │   │   │   │   ├── m-radio.svg │   │   │   │   ├── m-receipt-percent.svg │   │   │   │   ├── m-receipt-refund.svg │   │   │   │   ├── m-rectangle-group.svg │   │   │   │   ├── m-rectangle-stack.svg │   │   │   │   ├── m-rocket-launch.svg │   │   │   │   ├── m-rss.svg │   │   │   │   ├── m-scale.svg │   │   │   │   ├── m-scissors.svg │   │   │   │   ├── m-server-stack.svg │   │   │   │   ├── m-server.svg │   │   │   │   ├── m-share.svg │   │   │   │   ├── m-shield-check.svg │   │   │   │   ├── m-shield-exclamation.svg │   │   │   │   ├── m-shopping-bag.svg │   │   │   │   ├── m-shopping-cart.svg │   │   │   │   ├── m-signal-slash.svg │   │   │   │   ├── m-signal.svg │   │   │   │   ├── m-slash.svg │   │   │   │   ├── m-sparkles.svg │   │   │   │   ├── m-speaker-wave.svg │   │   │   │   ├── m-speaker-x-mark.svg │   │   │   │   ├── m-square-2-stack.svg │   │   │   │   ├── m-square-3-stack-3d.svg │   │   │   │   ├── m-squares-2x2.svg │   │   │   │   ├── m-squares-plus.svg │   │   │   │   ├── m-star.svg │   │   │   │   ├── m-stop-circle.svg │   │   │   │   ├── m-stop.svg │   │   │   │   ├── m-strikethrough.svg │   │   │   │   ├── m-sun.svg │   │   │   │   ├── m-swatch.svg │   │   │   │   ├── m-table-cells.svg │   │   │   │   ├── m-tag.svg │   │   │   │   ├── m-ticket.svg │   │   │   │   ├── m-trash.svg │   │   │   │   ├── m-trophy.svg │   │   │   │   ├── m-truck.svg │   │   │   │   ├── m-tv.svg │   │   │   │   ├── m-underline.svg │   │   │   │   ├── m-user-circle.svg │   │   │   │   ├── m-user-group.svg │   │   │   │   ├── m-user-minus.svg │   │   │   │   ├── m-user-plus.svg │   │   │   │   ├── m-user.svg │   │   │   │   ├── m-users.svg │   │   │   │   ├── m-variable.svg │   │   │   │   ├── m-video-camera-slash.svg │   │   │   │   ├── m-video-camera.svg │   │   │   │   ├── m-view-columns.svg │   │   │   │   ├── m-viewfinder-circle.svg │   │   │   │   ├── m-wallet.svg │   │   │   │   ├── m-wifi.svg │   │   │   │   ├── m-window.svg │   │   │   │   ├── m-wrench-screwdriver.svg │   │   │   │   ├── m-wrench.svg │   │   │   │   ├── m-x-circle.svg │   │   │   │   ├── m-x-mark.svg │   │   │   │   ├── o-academic-cap.svg │   │   │   │   ├── o-adjustments-horizontal.svg │   │   │   │   ├── o-adjustments-vertical.svg │   │   │   │   ├── o-archive-box-arrow-down.svg │   │   │   │   ├── o-archive-box-x-mark.svg │   │   │   │   ├── o-archive-box.svg │   │   │   │   ├── o-arrow-down-circle.svg │   │   │   │   ├── o-arrow-down-left.svg │   │   │   │   ├── o-arrow-down-on-square-stack.svg │   │   │   │   ├── o-arrow-down-on-square.svg │   │   │   │   ├── o-arrow-down-right.svg │   │   │   │   ├── o-arrow-down-tray.svg │   │   │   │   ├── o-arrow-down.svg │   │   │   │   ├── o-arrow-left-circle.svg │   │   │   │   ├── o-arrow-left-end-on-rectangle.svg │   │   │   │   ├── o-arrow-left-on-rectangle.svg │   │   │   │   ├── o-arrow-left-start-on-rectangle.svg │   │   │   │   ├── o-arrow-left.svg │   │   │   │   ├── o-arrow-long-down.svg │   │   │   │   ├── o-arrow-long-left.svg │   │   │   │   ├── o-arrow-long-right.svg │   │   │   │   ├── o-arrow-long-up.svg │   │   │   │   ├── o-arrow-path-rounded-square.svg │   │   │   │   ├── o-arrow-path.svg │   │   │   │   ├── o-arrow-right-circle.svg │   │   │   │   ├── o-arrow-right-end-on-rectangle.svg │   │   │   │   ├── o-arrow-right-on-rectangle.svg │   │   │   │   ├── o-arrow-right-start-on-rectangle.svg │   │   │   │   ├── o-arrow-right.svg │   │   │   │   ├── o-arrow-small-down.svg │   │   │   │   ├── o-arrow-small-left.svg │   │   │   │   ├── o-arrow-small-right.svg │   │   │   │   ├── o-arrow-small-up.svg │   │   │   │   ├── o-arrow-top-right-on-square.svg │   │   │   │   ├── o-arrow-trending-down.svg │   │   │   │   ├── o-arrow-trending-up.svg │   │   │   │   ├── o-arrow-turn-down-left.svg │   │   │   │   ├── o-arrow-turn-down-right.svg │   │   │   │   ├── o-arrow-turn-left-down.svg │   │   │   │   ├── o-arrow-turn-left-up.svg │   │   │   │   ├── o-arrow-turn-right-down.svg │   │   │   │   ├── o-arrow-turn-right-up.svg │   │   │   │   ├── o-arrow-turn-up-left.svg │   │   │   │   ├── o-arrow-turn-up-right.svg │   │   │   │   ├── o-arrow-up-circle.svg │   │   │   │   ├── o-arrow-up-left.svg │   │   │   │   ├── o-arrow-up-on-square-stack.svg │   │   │   │   ├── o-arrow-up-on-square.svg │   │   │   │   ├── o-arrow-up-right.svg │   │   │   │   ├── o-arrow-up-tray.svg │   │   │   │   ├── o-arrow-up.svg │   │   │   │   ├── o-arrow-uturn-down.svg │   │   │   │   ├── o-arrow-uturn-left.svg │   │   │   │   ├── o-arrow-uturn-right.svg │   │   │   │   ├── o-arrow-uturn-up.svg │   │   │   │   ├── o-arrows-pointing-in.svg │   │   │   │   ├── o-arrows-pointing-out.svg │   │   │   │   ├── o-arrows-right-left.svg │   │   │   │   ├── o-arrows-up-down.svg │   │   │   │   ├── o-at-symbol.svg │   │   │   │   ├── o-backspace.svg │   │   │   │   ├── o-backward.svg │   │   │   │   ├── o-banknotes.svg │   │   │   │   ├── o-bars-2.svg │   │   │   │   ├── o-bars-3-bottom-left.svg │   │   │   │   ├── o-bars-3-bottom-right.svg │   │   │   │   ├── o-bars-3-center-left.svg │   │   │   │   ├── o-bars-3.svg │   │   │   │   ├── o-bars-4.svg │   │   │   │   ├── o-bars-arrow-down.svg │   │   │   │   ├── o-bars-arrow-up.svg │   │   │   │   ├── o-battery-0.svg │   │   │   │   ├── o-battery-100.svg │   │   │   │   ├── o-battery-50.svg │   │   │   │   ├── o-beaker.svg │   │   │   │   ├── o-bell-alert.svg │   │   │   │   ├── o-bell-slash.svg │   │   │   │   ├── o-bell-snooze.svg │   │   │   │   ├── o-bell.svg │   │   │   │   ├── o-bold.svg │   │   │   │   ├── o-bolt-slash.svg │   │   │   │   ├── o-bolt.svg │   │   │   │   ├── o-book-open.svg │   │   │   │   ├── o-bookmark-slash.svg │   │   │   │   ├── o-bookmark-square.svg │   │   │   │   ├── o-bookmark.svg │   │   │   │   ├── o-briefcase.svg │   │   │   │   ├── o-bug-ant.svg │   │   │   │   ├── o-building-library.svg │   │   │   │   ├── o-building-office-2.svg │   │   │   │   ├── o-building-office.svg │   │   │   │   ├── o-building-storefront.svg │   │   │   │   ├── o-cake.svg │   │   │   │   ├── o-calculator.svg │   │   │   │   ├── o-calendar-date-range.svg │   │   │   │   ├── o-calendar-days.svg │   │   │   │   ├── o-calendar.svg │   │   │   │   ├── o-camera.svg │   │   │   │   ├── o-chart-bar-square.svg │   │   │   │   ├── o-chart-bar.svg │   │   │   │   ├── o-chart-pie.svg │   │   │   │   ├── o-chat-bubble-bottom-center-text.svg │   │   │   │   ├── o-chat-bubble-bottom-center.svg │   │   │   │   ├── o-chat-bubble-left-ellipsis.svg │   │   │   │   ├── o-chat-bubble-left-right.svg │   │   │   │   ├── o-chat-bubble-left.svg │   │   │   │   ├── o-chat-bubble-oval-left-ellipsis.svg │   │   │   │   ├── o-chat-bubble-oval-left.svg │   │   │   │   ├── o-check-badge.svg │   │   │   │   ├── o-check-circle.svg │   │   │   │   ├── o-check.svg │   │   │   │   ├── o-chevron-double-down.svg │   │   │   │   ├── o-chevron-double-left.svg │   │   │   │   ├── o-chevron-double-right.svg │   │   │   │   ├── o-chevron-double-up.svg │   │   │   │   ├── o-chevron-down.svg │   │   │   │   ├── o-chevron-left.svg │   │   │   │   ├── o-chevron-right.svg │   │   │   │   ├── o-chevron-up-down.svg │   │   │   │   ├── o-chevron-up.svg │   │   │   │   ├── o-circle-stack.svg │   │   │   │   ├── o-clipboard-document-check.svg │   │   │   │   ├── o-clipboard-document-list.svg │   │   │   │   ├── o-clipboard-document.svg │   │   │   │   ├── o-clipboard.svg │   │   │   │   ├── o-clock.svg │   │   │   │   ├── o-cloud-arrow-down.svg │   │   │   │   ├── o-cloud-arrow-up.svg │   │   │   │   ├── o-cloud.svg │   │   │   │   ├── o-code-bracket-square.svg │   │   │   │   ├── o-code-bracket.svg │   │   │   │   ├── o-cog-6-tooth.svg │   │   │   │   ├── o-cog-8-tooth.svg │   │   │   │   ├── o-cog.svg │   │   │   │   ├── o-command-line.svg │   │   │   │   ├── o-computer-desktop.svg │   │   │   │   ├── o-cpu-chip.svg │   │   │   │   ├── o-credit-card.svg │   │   │   │   ├── o-cube-transparent.svg │   │   │   │   ├── o-cube.svg │   │   │   │   ├── o-currency-bangladeshi.svg │   │   │   │   ├── o-currency-dollar.svg │   │   │   │   ├── o-currency-euro.svg │   │   │   │   ├── o-currency-pound.svg │   │   │   │   ├── o-currency-rupee.svg │   │   │   │   ├── o-currency-yen.svg │   │   │   │   ├── o-cursor-arrow-rays.svg │   │   │   │   ├── o-cursor-arrow-ripple.svg │   │   │   │   ├── o-device-phone-mobile.svg │   │   │   │   ├── o-device-tablet.svg │   │   │   │   ├── o-divide.svg │   │   │   │   ├── o-document-arrow-down.svg │   │   │   │   ├── o-document-arrow-up.svg │   │   │   │   ├── o-document-chart-bar.svg │   │   │   │   ├── o-document-check.svg │   │   │   │   ├── o-document-currency-bangladeshi.svg │   │   │   │   ├── o-document-currency-dollar.svg │   │   │   │   ├── o-document-currency-euro.svg │   │   │   │   ├── o-document-currency-pound.svg │   │   │   │   ├── o-document-currency-rupee.svg │   │   │   │   ├── o-document-currency-yen.svg │   │   │   │   ├── o-document-duplicate.svg │   │   │   │   ├── o-document-magnifying-glass.svg │   │   │   │   ├── o-document-minus.svg │   │   │   │   ├── o-document-plus.svg │   │   │   │   ├── o-document-text.svg │   │   │   │   ├── o-document.svg │   │   │   │   ├── o-ellipsis-horizontal-circle.svg │   │   │   │   ├── o-ellipsis-horizontal.svg │   │   │   │   ├── o-ellipsis-vertical.svg │   │   │   │   ├── o-envelope-open.svg │   │   │   │   ├── o-envelope.svg │   │   │   │   ├── o-equals.svg │   │   │   │   ├── o-exclamation-circle.svg │   │   │   │   ├── o-exclamation-triangle.svg │   │   │   │   ├── o-eye-dropper.svg │   │   │   │   ├── o-eye-slash.svg │   │   │   │   ├── o-eye.svg │   │   │   │   ├── o-face-frown.svg │   │   │   │   ├── o-face-smile.svg │   │   │   │   ├── o-film.svg │   │   │   │   ├── o-finger-print.svg │   │   │   │   ├── o-fire.svg │   │   │   │   ├── o-flag.svg │   │   │   │   ├── o-folder-arrow-down.svg │   │   │   │   ├── o-folder-minus.svg │   │   │   │   ├── o-folder-open.svg │   │   │   │   ├── o-folder-plus.svg │   │   │   │   ├── o-folder.svg │   │   │   │   ├── o-forward.svg │   │   │   │   ├── o-funnel.svg │   │   │   │   ├── o-gif.svg │   │   │   │   ├── o-gift-top.svg │   │   │   │   ├── o-gift.svg │   │   │   │   ├── o-globe-alt.svg │   │   │   │   ├── o-globe-americas.svg │   │   │   │   ├── o-globe-asia-australia.svg │   │   │   │   ├── o-globe-europe-africa.svg │   │   │   │   ├── o-h1.svg │   │   │   │   ├── o-h2.svg │   │   │   │   ├── o-h3.svg │   │   │   │   ├── o-hand-raised.svg │   │   │   │   ├── o-hand-thumb-down.svg │   │   │   │   ├── o-hand-thumb-up.svg │   │   │   │   ├── o-hashtag.svg │   │   │   │   ├── o-heart.svg │   │   │   │   ├── o-home-modern.svg │   │   │   │   ├── o-home.svg │   │   │   │   ├── o-identification.svg │   │   │   │   ├── o-inbox-arrow-down.svg │   │   │   │   ├── o-inbox-stack.svg │   │   │   │   ├── o-inbox.svg │   │   │   │   ├── o-information-circle.svg │   │   │   │   ├── o-italic.svg │   │   │   │   ├── o-key.svg │   │   │   │   ├── o-language.svg │   │   │   │   ├── o-lifebuoy.svg │   │   │   │   ├── o-light-bulb.svg │   │   │   │   ├── o-link-slash.svg │   │   │   │   ├── o-link.svg │   │   │   │   ├── o-list-bullet.svg │   │   │   │   ├── o-lock-closed.svg │   │   │   │   ├── o-lock-open.svg │   │   │   │   ├── o-magnifying-glass-circle.svg │   │   │   │   ├── o-magnifying-glass-minus.svg │   │   │   │   ├── o-magnifying-glass-plus.svg │   │   │   │   ├── o-magnifying-glass.svg │   │   │   │   ├── o-map-pin.svg │   │   │   │   ├── o-map.svg │   │   │   │   ├── o-megaphone.svg │   │   │   │   ├── o-microphone.svg │   │   │   │   ├── o-minus-circle.svg │   │   │   │   ├── o-minus-small.svg │   │   │   │   ├── o-minus.svg │   │   │   │   ├── o-moon.svg │   │   │   │   ├── o-musical-note.svg │   │   │   │   ├── o-newspaper.svg │   │   │   │   ├── o-no-symbol.svg │   │   │   │   ├── o-numbered-list.svg │   │   │   │   ├── o-paint-brush.svg │   │   │   │   ├── o-paper-airplane.svg │   │   │   │   ├── o-paper-clip.svg │   │   │   │   ├── o-pause-circle.svg │   │   │   │   ├── o-pause.svg │   │   │   │   ├── o-pencil-square.svg │   │   │   │   ├── o-pencil.svg │   │   │   │   ├── o-percent-badge.svg │   │   │   │   ├── o-phone-arrow-down-left.svg │   │   │   │   ├── o-phone-arrow-up-right.svg │   │   │   │   ├── o-phone-x-mark.svg │   │   │   │   ├── o-phone.svg │   │   │   │   ├── o-photo.svg │   │   │   │   ├── o-play-circle.svg │   │   │   │   ├── o-play-pause.svg │   │   │   │   ├── o-play.svg │   │   │   │   ├── o-plus-circle.svg │   │   │   │   ├── o-plus-small.svg │   │   │   │   ├── o-plus.svg │   │   │   │   ├── o-power.svg │   │   │   │   ├── o-presentation-chart-bar.svg │   │   │   │   ├── o-presentation-chart-line.svg │   │   │   │   ├── o-printer.svg │   │   │   │   ├── o-puzzle-piece.svg │   │   │   │   ├── o-qr-code.svg │   │   │   │   ├── o-question-mark-circle.svg │   │   │   │   ├── o-queue-list.svg │   │   │   │   ├── o-radio.svg │   │   │   │   ├── o-receipt-percent.svg │   │   │   │   ├── o-receipt-refund.svg │   │   │   │   ├── o-rectangle-group.svg │   │   │   │   ├── o-rectangle-stack.svg │   │   │   │   ├── o-rocket-launch.svg │   │   │   │   ├── o-rss.svg │   │   │   │   ├── o-scale.svg │   │   │   │   ├── o-scissors.svg │   │   │   │   ├── o-server-stack.svg │   │   │   │   ├── o-server.svg │   │   │   │   ├── o-share.svg │   │   │   │   ├── o-shield-check.svg │   │   │   │   ├── o-shield-exclamation.svg │   │   │   │   ├── o-shopping-bag.svg │   │   │   │   ├── o-shopping-cart.svg │   │   │   │   ├── o-signal-slash.svg │   │   │   │   ├── o-signal.svg │   │   │   │   ├── o-slash.svg │   │   │   │   ├── o-sparkles.svg │   │   │   │   ├── o-speaker-wave.svg │   │   │   │   ├── o-speaker-x-mark.svg │   │   │   │   ├── o-square-2-stack.svg │   │   │   │   ├── o-square-3-stack-3d.svg │   │   │   │   ├── o-squares-2x2.svg │   │   │   │   ├── o-squares-plus.svg │   │   │   │   ├── o-star.svg │   │   │   │   ├── o-stop-circle.svg │   │   │   │   ├── o-stop.svg │   │   │   │   ├── o-strikethrough.svg │   │   │   │   ├── o-sun.svg │   │   │   │   ├── o-swatch.svg │   │   │   │   ├── o-table-cells.svg │   │   │   │   ├── o-tag.svg │   │   │   │   ├── o-ticket.svg │   │   │   │   ├── o-trash.svg │   │   │   │   ├── o-trophy.svg │   │   │   │   ├── o-truck.svg │   │   │   │   ├── o-tv.svg │   │   │   │   ├── o-underline.svg │   │   │   │   ├── o-user-circle.svg │   │   │   │   ├── o-user-group.svg │   │   │   │   ├── o-user-minus.svg │   │   │   │   ├── o-user-plus.svg │   │   │   │   ├── o-user.svg │   │   │   │   ├── o-users.svg │   │   │   │   ├── o-variable.svg │   │   │   │   ├── o-video-camera-slash.svg │   │   │   │   ├── o-video-camera.svg │   │   │   │   ├── o-view-columns.svg │   │   │   │   ├── o-viewfinder-circle.svg │   │   │   │   ├── o-wallet.svg │   │   │   │   ├── o-wifi.svg │   │   │   │   ├── o-window.svg │   │   │   │   ├── o-wrench-screwdriver.svg │   │   │   │   ├── o-wrench.svg │   │   │   │   ├── o-x-circle.svg │   │   │   │   ├── o-x-mark.svg │   │   │   │   ├── s-academic-cap.svg │   │   │   │   ├── s-adjustments-horizontal.svg │   │   │   │   ├── s-adjustments-vertical.svg │   │   │   │   ├── s-archive-box-arrow-down.svg │   │   │   │   ├── s-archive-box-x-mark.svg │   │   │   │   ├── s-archive-box.svg │   │   │   │   ├── s-arrow-down-circle.svg │   │   │   │   ├── s-arrow-down-left.svg │   │   │   │   ├── s-arrow-down-on-square-stack.svg │   │   │   │   ├── s-arrow-down-on-square.svg │   │   │   │   ├── s-arrow-down-right.svg │   │   │   │   ├── s-arrow-down-tray.svg │   │   │   │   ├── s-arrow-down.svg │   │   │   │   ├── s-arrow-left-circle.svg │   │   │   │   ├── s-arrow-left-end-on-rectangle.svg │   │   │   │   ├── s-arrow-left-on-rectangle.svg │   │   │   │   ├── s-arrow-left-start-on-rectangle.svg │   │   │   │   ├── s-arrow-left.svg │   │   │   │   ├── s-arrow-long-down.svg │   │   │   │   ├── s-arrow-long-left.svg │   │   │   │   ├── s-arrow-long-right.svg │   │   │   │   ├── s-arrow-long-up.svg │   │   │   │   ├── s-arrow-path-rounded-square.svg │   │   │   │   ├── s-arrow-path.svg │   │   │   │   ├── s-arrow-right-circle.svg │   │   │   │   ├── s-arrow-right-end-on-rectangle.svg │   │   │   │   ├── s-arrow-right-on-rectangle.svg │   │   │   │   ├── s-arrow-right-start-on-rectangle.svg │   │   │   │   ├── s-arrow-right.svg │   │   │   │   ├── s-arrow-small-down.svg │   │   │   │   ├── s-arrow-small-left.svg │   │   │   │   ├── s-arrow-small-right.svg │   │   │   │   ├── s-arrow-small-up.svg │   │   │   │   ├── s-arrow-top-right-on-square.svg │   │   │   │   ├── s-arrow-trending-down.svg │   │   │   │   ├── s-arrow-trending-up.svg │   │   │   │   ├── s-arrow-turn-down-left.svg │   │   │   │   ├── s-arrow-turn-down-right.svg │   │   │   │   ├── s-arrow-turn-left-down.svg │   │   │   │   ├── s-arrow-turn-left-up.svg │   │   │   │   ├── s-arrow-turn-right-down.svg │   │   │   │   ├── s-arrow-turn-right-up.svg │   │   │   │   ├── s-arrow-turn-up-left.svg │   │   │   │   ├── s-arrow-turn-up-right.svg │   │   │   │   ├── s-arrow-up-circle.svg │   │   │   │   ├── s-arrow-up-left.svg │   │   │   │   ├── s-arrow-up-on-square-stack.svg │   │   │   │   ├── s-arrow-up-on-square.svg │   │   │   │   ├── s-arrow-up-right.svg │   │   │   │   ├── s-arrow-up-tray.svg │   │   │   │   ├── s-arrow-up.svg │   │   │   │   ├── s-arrow-uturn-down.svg │   │   │   │   ├── s-arrow-uturn-left.svg │   │   │   │   ├── s-arrow-uturn-right.svg │   │   │   │   ├── s-arrow-uturn-up.svg │   │   │   │   ├── s-arrows-pointing-in.svg │   │   │   │   ├── s-arrows-pointing-out.svg │   │   │   │   ├── s-arrows-right-left.svg │   │   │   │   ├── s-arrows-up-down.svg │   │   │   │   ├── s-at-symbol.svg │   │   │   │   ├── s-backspace.svg │   │   │   │   ├── s-backward.svg │   │   │   │   ├── s-banknotes.svg │   │   │   │   ├── s-bars-2.svg │   │   │   │   ├── s-bars-3-bottom-left.svg │   │   │   │   ├── s-bars-3-bottom-right.svg │   │   │   │   ├── s-bars-3-center-left.svg │   │   │   │   ├── s-bars-3.svg │   │   │   │   ├── s-bars-4.svg │   │   │   │   ├── s-bars-arrow-down.svg │   │   │   │   ├── s-bars-arrow-up.svg │   │   │   │   ├── s-battery-0.svg │   │   │   │   ├── s-battery-100.svg │   │   │   │   ├── s-battery-50.svg │   │   │   │   ├── s-beaker.svg │   │   │   │   ├── s-bell-alert.svg │   │   │   │   ├── s-bell-slash.svg │   │   │   │   ├── s-bell-snooze.svg │   │   │   │   ├── s-bell.svg │   │   │   │   ├── s-bold.svg │   │   │   │   ├── s-bolt-slash.svg │   │   │   │   ├── s-bolt.svg │   │   │   │   ├── s-book-open.svg │   │   │   │   ├── s-bookmark-slash.svg │   │   │   │   ├── s-bookmark-square.svg │   │   │   │   ├── s-bookmark.svg │   │   │   │   ├── s-briefcase.svg │   │   │   │   ├── s-bug-ant.svg │   │   │   │   ├── s-building-library.svg │   │   │   │   ├── s-building-office-2.svg │   │   │   │   ├── s-building-office.svg │   │   │   │   ├── s-building-storefront.svg │   │   │   │   ├── s-cake.svg │   │   │   │   ├── s-calculator.svg │   │   │   │   ├── s-calendar-date-range.svg │   │   │   │   ├── s-calendar-days.svg │   │   │   │   ├── s-calendar.svg │   │   │   │   ├── s-camera.svg │   │   │   │   ├── s-chart-bar-square.svg │   │   │   │   ├── s-chart-bar.svg │   │   │   │   ├── s-chart-pie.svg │   │   │   │   ├── s-chat-bubble-bottom-center-text.svg │   │   │   │   ├── s-chat-bubble-bottom-center.svg │   │   │   │   ├── s-chat-bubble-left-ellipsis.svg │   │   │   │   ├── s-chat-bubble-left-right.svg │   │   │   │   ├── s-chat-bubble-left.svg │   │   │   │   ├── s-chat-bubble-oval-left-ellipsis.svg │   │   │   │   ├── s-chat-bubble-oval-left.svg │   │   │   │   ├── s-check-badge.svg │   │   │   │   ├── s-check-circle.svg │   │   │   │   ├── s-check.svg │   │   │   │   ├── s-chevron-double-down.svg │   │   │   │   ├── s-chevron-double-left.svg │   │   │   │   ├── s-chevron-double-right.svg │   │   │   │   ├── s-chevron-double-up.svg │   │   │   │   ├── s-chevron-down.svg │   │   │   │   ├── s-chevron-left.svg │   │   │   │   ├── s-chevron-right.svg │   │   │   │   ├── s-chevron-up-down.svg │   │   │   │   ├── s-chevron-up.svg │   │   │   │   ├── s-circle-stack.svg │   │   │   │   ├── s-clipboard-document-check.svg │   │   │   │   ├── s-clipboard-document-list.svg │   │   │   │   ├── s-clipboard-document.svg │   │   │   │   ├── s-clipboard.svg │   │   │   │   ├── s-clock.svg │   │   │   │   ├── s-cloud-arrow-down.svg │   │   │   │   ├── s-cloud-arrow-up.svg │   │   │   │   ├── s-cloud.svg │   │   │   │   ├── s-code-bracket-square.svg │   │   │   │   ├── s-code-bracket.svg │   │   │   │   ├── s-cog-6-tooth.svg │   │   │   │   ├── s-cog-8-tooth.svg │   │   │   │   ├── s-cog.svg │   │   │   │   ├── s-command-line.svg │   │   │   │   ├── s-computer-desktop.svg │   │   │   │   ├── s-cpu-chip.svg │   │   │   │   ├── s-credit-card.svg │   │   │   │   ├── s-cube-transparent.svg │   │   │   │   ├── s-cube.svg │   │   │   │   ├── s-currency-bangladeshi.svg │   │   │   │   ├── s-currency-dollar.svg │   │   │   │   ├── s-currency-euro.svg │   │   │   │   ├── s-currency-pound.svg │   │   │   │   ├── s-currency-rupee.svg │   │   │   │   ├── s-currency-yen.svg │   │   │   │   ├── s-cursor-arrow-rays.svg │   │   │   │   ├── s-cursor-arrow-ripple.svg │   │   │   │   ├── s-device-phone-mobile.svg │   │   │   │   ├── s-device-tablet.svg │   │   │   │   ├── s-divide.svg │   │   │   │   ├── s-document-arrow-down.svg │   │   │   │   ├── s-document-arrow-up.svg │   │   │   │   ├── s-document-chart-bar.svg │   │   │   │   ├── s-document-check.svg │   │   │   │   ├── s-document-currency-bangladeshi.svg │   │   │   │   ├── s-document-currency-dollar.svg │   │   │   │   ├── s-document-currency-euro.svg │   │   │   │   ├── s-document-currency-pound.svg │   │   │   │   ├── s-document-currency-rupee.svg │   │   │   │   ├── s-document-currency-yen.svg │   │   │   │   ├── s-document-duplicate.svg │   │   │   │   ├── s-document-magnifying-glass.svg │   │   │   │   ├── s-document-minus.svg │   │   │   │   ├── s-document-plus.svg │   │   │   │   ├── s-document-text.svg │   │   │   │   ├── s-document.svg │   │   │   │   ├── s-ellipsis-horizontal-circle.svg │   │   │   │   ├── s-ellipsis-horizontal.svg │   │   │   │   ├── s-ellipsis-vertical.svg │   │   │   │   ├── s-envelope-open.svg │   │   │   │   ├── s-envelope.svg │   │   │   │   ├── s-equals.svg │   │   │   │   ├── s-exclamation-circle.svg │   │   │   │   ├── s-exclamation-triangle.svg │   │   │   │   ├── s-eye-dropper.svg │   │   │   │   ├── s-eye-slash.svg │   │   │   │   ├── s-eye.svg │   │   │   │   ├── s-face-frown.svg │   │   │   │   ├── s-face-smile.svg │   │   │   │   ├── s-film.svg │   │   │   │   ├── s-finger-print.svg │   │   │   │   ├── s-fire.svg │   │   │   │   ├── s-flag.svg │   │   │   │   ├── s-folder-arrow-down.svg │   │   │   │   ├── s-folder-minus.svg │   │   │   │   ├── s-folder-open.svg │   │   │   │   ├── s-folder-plus.svg │   │   │   │   ├── s-folder.svg │   │   │   │   ├── s-forward.svg │   │   │   │   ├── s-funnel.svg │   │   │   │   ├── s-gif.svg │   │   │   │   ├── s-gift-top.svg │   │   │   │   ├── s-gift.svg │   │   │   │   ├── s-globe-alt.svg │   │   │   │   ├── s-globe-americas.svg │   │   │   │   ├── s-globe-asia-australia.svg │   │   │   │   ├── s-globe-europe-africa.svg │   │   │   │   ├── s-h1.svg │   │   │   │   ├── s-h2.svg │   │   │   │   ├── s-h3.svg │   │   │   │   ├── s-hand-raised.svg │   │   │   │   ├── s-hand-thumb-down.svg │   │   │   │   ├── s-hand-thumb-up.svg │   │   │   │   ├── s-hashtag.svg │   │   │   │   ├── s-heart.svg │   │   │   │   ├── s-home-modern.svg │   │   │   │   ├── s-home.svg │   │   │   │   ├── s-identification.svg │   │   │   │   ├── s-inbox-arrow-down.svg │   │   │   │   ├── s-inbox-stack.svg │   │   │   │   ├── s-inbox.svg │   │   │   │   ├── s-information-circle.svg │   │   │   │   ├── s-italic.svg │   │   │   │   ├── s-key.svg │   │   │   │   ├── s-language.svg │   │   │   │   ├── s-lifebuoy.svg │   │   │   │   ├── s-light-bulb.svg │   │   │   │   ├── s-link-slash.svg │   │   │   │   ├── s-link.svg │   │   │   │   ├── s-list-bullet.svg │   │   │   │   ├── s-lock-closed.svg │   │   │   │   ├── s-lock-open.svg │   │   │   │   ├── s-magnifying-glass-circle.svg │   │   │   │   ├── s-magnifying-glass-minus.svg │   │   │   │   ├── s-magnifying-glass-plus.svg │   │   │   │   ├── s-magnifying-glass.svg │   │   │   │   ├── s-map-pin.svg │   │   │   │   ├── s-map.svg │   │   │   │   ├── s-megaphone.svg │   │   │   │   ├── s-microphone.svg │   │   │   │   ├── s-minus-circle.svg │   │   │   │   ├── s-minus-small.svg │   │   │   │   ├── s-minus.svg │   │   │   │   ├── s-moon.svg │   │   │   │   ├── s-musical-note.svg │   │   │   │   ├── s-newspaper.svg │   │   │   │   ├── s-no-symbol.svg │   │   │   │   ├── s-numbered-list.svg │   │   │   │   ├── s-paint-brush.svg │   │   │   │   ├── s-paper-airplane.svg │   │   │   │   ├── s-paper-clip.svg │   │   │   │   ├── s-pause-circle.svg │   │   │   │   ├── s-pause.svg │   │   │   │   ├── s-pencil-square.svg │   │   │   │   ├── s-pencil.svg │   │   │   │   ├── s-percent-badge.svg │   │   │   │   ├── s-phone-arrow-down-left.svg │   │   │   │   ├── s-phone-arrow-up-right.svg │   │   │   │   ├── s-phone-x-mark.svg │   │   │   │   ├── s-phone.svg │   │   │   │   ├── s-photo.svg │   │   │   │   ├── s-play-circle.svg │   │   │   │   ├── s-play-pause.svg │   │   │   │   ├── s-play.svg │   │   │   │   ├── s-plus-circle.svg │   │   │   │   ├── s-plus-small.svg │   │   │   │   ├── s-plus.svg │   │   │   │   ├── s-power.svg │   │   │   │   ├── s-presentation-chart-bar.svg │   │   │   │   ├── s-presentation-chart-line.svg │   │   │   │   ├── s-printer.svg │   │   │   │   ├── s-puzzle-piece.svg │   │   │   │   ├── s-qr-code.svg │   │   │   │   ├── s-question-mark-circle.svg │   │   │   │   ├── s-queue-list.svg │   │   │   │   ├── s-radio.svg │   │   │   │   ├── s-receipt-percent.svg │   │   │   │   ├── s-receipt-refund.svg │   │   │   │   ├── s-rectangle-group.svg │   │   │   │   ├── s-rectangle-stack.svg │   │   │   │   ├── s-rocket-launch.svg │   │   │   │   ├── s-rss.svg │   │   │   │   ├── s-scale.svg │   │   │   │   ├── s-scissors.svg │   │   │   │   ├── s-server-stack.svg │   │   │   │   ├── s-server.svg │   │   │   │   ├── s-share.svg │   │   │   │   ├── s-shield-check.svg │   │   │   │   ├── s-shield-exclamation.svg │   │   │   │   ├── s-shopping-bag.svg │   │   │   │   ├── s-shopping-cart.svg │   │   │   │   ├── s-signal-slash.svg │   │   │   │   ├── s-signal.svg │   │   │   │   ├── s-slash.svg │   │   │   │   ├── s-sparkles.svg │   │   │   │   ├── s-speaker-wave.svg │   │   │   │   ├── s-speaker-x-mark.svg │   │   │   │   ├── s-square-2-stack.svg │   │   │   │   ├── s-square-3-stack-3d.svg │   │   │   │   ├── s-squares-2x2.svg │   │   │   │   ├── s-squares-plus.svg │   │   │   │   ├── s-star.svg │   │   │   │   ├── s-stop-circle.svg │   │   │   │   ├── s-stop.svg │   │   │   │   ├── s-strikethrough.svg │   │   │   │   ├── s-sun.svg │   │   │   │   ├── s-swatch.svg │   │   │   │   ├── s-table-cells.svg │   │   │   │   ├── s-tag.svg │   │   │   │   ├── s-ticket.svg │   │   │   │   ├── s-trash.svg │   │   │   │   ├── s-trophy.svg │   │   │   │   ├── s-truck.svg │   │   │   │   ├── s-tv.svg │   │   │   │   ├── s-underline.svg │   │   │   │   ├── s-user-circle.svg │   │   │   │   ├── s-user-group.svg │   │   │   │   ├── s-user-minus.svg │   │   │   │   ├── s-user-plus.svg │   │   │   │   ├── s-user.svg │   │   │   │   ├── s-users.svg │   │   │   │   ├── s-variable.svg │   │   │   │   ├── s-video-camera-slash.svg │   │   │   │   ├── s-video-camera.svg │   │   │   │   ├── s-view-columns.svg │   │   │   │   ├── s-viewfinder-circle.svg │   │   │   │   ├── s-wallet.svg │   │   │   │   ├── s-wifi.svg │   │   │   │   ├── s-window.svg │   │   │   │   ├── s-wrench-screwdriver.svg │   │   │   │   ├── s-wrench.svg │   │   │   │   ├── s-x-circle.svg │   │   │   │   └── s-x-mark.svg │   │   │   └── src │   │   │   └── BladeHeroiconsServiceProvider.php │   │   └── blade-icons │   │   ├── LICENSE.md │   │   ├── bin │   │   │   └── blade-icons-generate │   │   ├── composer.json │   │   ├── config │   │   │   └── blade-icons.php │   │   ├── pint.json │   │   └── src │   │   ├── BladeIconsServiceProvider.php │   │   ├── Components │   │   │   ├── Icon.php │   │   │   └── Svg.php │   │   ├── Concerns │   │   │   └── RendersAttributes.php │   │   ├── Console │   │   │   ├── CacheCommand.php │   │   │   └── ClearCommand.php │   │   ├── Exceptions │   │   │   ├── CannotRegisterIconSet.php │   │   │   └── SvgNotFound.php │   │   ├── Factory.php │   │   ├── Generation │   │   │   └── IconGenerator.php │   │   ├── IconsManifest.php │   │   ├── Svg.php │   │   └── helpers.php │   ├── brianium │   │   └── paratest │   │   ├── LICENSE │   │   ├── README.md │   │   ├── bin │   │   │   ├── paratest │   │   │   ├── paratest_for_phpstorm │   │   │   └── phpunit-wrapper.php │   │   ├── composer.json │   │   ├── renovate.json │   │   └── src │   │   ├── Coverage │   │   │   └── CoverageMerger.php │   │   ├── JUnit │   │   │   ├── LogMerger.php │   │   │   ├── MessageType.php │   │   │   ├── TestCase.php │   │   │   ├── TestCaseWithMessage.php │   │   │   ├── TestSuite.php │   │   │   └── Writer.php │   │   ├── Options.php │   │   ├── ParaTestCommand.php │   │   ├── RunnerInterface.php │   │   ├── Util │   │   │   └── PhpstormHelper.php │   │   └── WrapperRunner │   │   ├── ApplicationForWrapperWorker.php │   │   ├── ProgressPrinterOutput.php │   │   ├── ResultPrinter.php │   │   ├── SuiteLoader.php │   │   ├── WorkerCrashedException.php │   │   ├── WrapperRunner.php │   │   └── WrapperWorker.php │   ├── brick │   │   └── math │   │   ├── CHANGELOG.md │   │   ├── LICENSE │   │   ├── composer.json │   │   ├── psalm-baseline.xml │   │   └── src │   │   ├── BigDecimal.php │   │   ├── BigInteger.php │   │   ├── BigNumber.php │   │   ├── BigRational.php │   │   ├── Exception │   │   │   ├── DivisionByZeroException.php │   │   │   ├── IntegerOverflowException.php │   │   │   ├── MathException.php │   │   │   ├── NegativeNumberException.php │   │   │   ├── NumberFormatException.php │   │   │   └── RoundingNecessaryException.php │   │   ├── Internal │   │   │   ├── Calculator │   │   │   │   ├── BcMathCalculator.php │   │   │   │   ├── GmpCalculator.php │   │   │   │   └── NativeCalculator.php │   │   │   └── Calculator.php │   │   └── RoundingMode.php │   ├── carbonphp │   │   └── carbon-doctrine-types │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   └── Carbon │   │   └── Doctrine │   │   ├── CarbonDoctrineType.php │   │   ├── CarbonImmutableType.php │   │   ├── CarbonType.php │   │   ├── CarbonTypeConverter.php │   │   ├── DateTimeDefaultPrecision.php │   │   ├── DateTimeImmutableType.php │   │   └── DateTimeType.php │   ├── composer │   │   ├── ClassLoader.php │   │   ├── InstalledVersions.php │   │   ├── LICENSE │   │   ├── autoload_classmap.php │   │   ├── autoload_files.php │   │   ├── autoload_namespaces.php │   │   ├── autoload_psr4.php │   │   ├── autoload_real.php │   │   ├── autoload_static.php │   │   ├── installed.json │   │   ├── installed.php │   │   └── platform_check.php │   ├── danharrin │   │   ├── date-format-converter │   │   │   ├── CODE_OF_CONDUCT.md │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Converter.php │   │   │   ├── helpers.php │   │   │   └── standards.php │   │   └── livewire-rate-limiting │   │   ├── CODE_OF_CONDUCT.md │   │   ├── LICENSE.md │   │   ├── README.md │   │   ├── SECURITY.md │   │   ├── composer.json │   │   └── src │   │   ├── Exceptions │   │   │   └── TooManyRequestsException.php │   │   └── WithRateLimiting.php │   ├── dflydev │   │   └── dot-access-data │   │   ├── CHANGELOG.md │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   ├── Data.php │   │   ├── DataInterface.php │   │   ├── Exception │   │   │   ├── DataException.php │   │   │   ├── InvalidPathException.php │   │   │   └── MissingPathException.php │   │   └── Util.php │   ├── doctrine │   │   ├── dbal │   │   │   ├── CONTRIBUTING.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   ├── phpstan-baseline.neon │   │   │   └── src │   │   │   ├── ArrayParameterType.php │   │   │   ├── ArrayParameters │   │   │   │   ├── Exception │   │   │   │   │   ├── MissingNamedParameter.php │   │   │   │   │   └── MissingPositionalParameter.php │   │   │   │   └── Exception.php │   │   │   ├── Cache │   │   │   │   ├── ArrayResult.php │   │   │   │   ├── CacheException.php │   │   │   │   ├── Exception │   │   │   │   │   ├── NoCacheKey.php │   │   │   │   │   └── NoResultDriverConfigured.php │   │   │   │   └── QueryCacheProfile.php │   │   │   ├── ColumnCase.php │   │   │   ├── Configuration.php │   │   │   ├── Connection │   │   │   │   └── StaticServerVersionProvider.php │   │   │   ├── Connection.php │   │   │   ├── ConnectionException.php │   │   │   ├── Connections │   │   │   │   └── PrimaryReadReplicaConnection.php │   │   │   ├── Driver │   │   │   │   ├── API │   │   │   │   │   ├── ExceptionConverter.php │   │   │   │   │   ├── IBMDB2 │   │   │   │   │   │   └── ExceptionConverter.php │   │   │   │   │   ├── MySQL │   │   │   │   │   │   └── ExceptionConverter.php │   │   │   │   │   ├── OCI │   │   │   │   │   │   └── ExceptionConverter.php │   │   │   │   │   ├── PostgreSQL │   │   │   │   │   │   └── ExceptionConverter.php │   │   │   │   │   ├── SQLSrv │   │   │   │   │   │   └── ExceptionConverter.php │   │   │   │   │   └── SQLite │   │   │   │   │   └── ExceptionConverter.php │   │   │   │   ├── AbstractDB2Driver.php │   │   │   │   ├── AbstractException.php │   │   │   │   ├── AbstractMySQLDriver.php │   │   │   │   ├── AbstractOracleDriver │   │   │   │   │   └── EasyConnectString.php │   │   │   │   ├── AbstractOracleDriver.php │   │   │   │   ├── AbstractPostgreSQLDriver.php │   │   │   │   ├── AbstractSQLServerDriver │   │   │   │   │   └── Exception │   │   │   │   │   └── PortWithoutHost.php │   │   │   │   ├── AbstractSQLServerDriver.php │   │   │   │   ├── AbstractSQLiteDriver │   │   │   │   │   └── Middleware │   │   │   │   │   └── EnableForeignKeys.php │   │   │   │   ├── AbstractSQLiteDriver.php │   │   │   │   ├── Connection.php │   │   │   │   ├── Exception │   │   │   │   │   ├── IdentityColumnsNotSupported.php │   │   │   │   │   └── NoIdentityValue.php │   │   │   │   ├── Exception.php │   │   │   │   ├── FetchUtils.php │   │   │   │   ├── IBMDB2 │   │   │   │   │   ├── Connection.php │   │   │   │   │   ├── DataSourceName.php │   │   │   │   │   ├── Driver.php │   │   │   │   │   ├── Exception │   │   │   │   │   │   ├── CannotCopyStreamToStream.php │   │   │   │   │   │   ├── CannotCreateTemporaryFile.php │   │   │   │   │   │   ├── ConnectionError.php │   │   │   │   │   │   ├── ConnectionFailed.php │   │   │   │   │   │   ├── Factory.php │   │   │   │   │   │   ├── PrepareFailed.php │   │   │   │   │   │   └── StatementError.php │   │   │   │   │   ├── Result.php │   │   │   │   │   └── Statement.php │   │   │   │   ├── Middleware │   │   │   │   │   ├── AbstractConnectionMiddleware.php │   │   │   │   │   ├── AbstractDriverMiddleware.php │   │   │   │   │   ├── AbstractResultMiddleware.php │   │   │   │   │   └── AbstractStatementMiddleware.php │   │   │   │   ├── Middleware.php │   │   │   │   ├── Mysqli │   │   │   │   │   ├── Connection.php │   │   │   │   │   ├── Driver.php │   │   │   │   │   ├── Exception │   │   │   │   │   │   ├── ConnectionError.php │   │   │   │   │   │   ├── ConnectionFailed.php │   │   │   │   │   │   ├── FailedReadingStreamOffset.php │   │   │   │   │   │   ├── HostRequired.php │   │   │   │   │   │   ├── InvalidCharset.php │   │   │   │   │   │   ├── InvalidOption.php │   │   │   │   │   │   ├── NonStreamResourceUsedAsLargeObject.php │   │   │   │   │   │   └── StatementError.php │   │   │   │   │   ├── Initializer │   │   │   │   │   │   ├── Charset.php │   │   │   │   │   │   ├── Options.php │   │   │   │   │   │   └── Secure.php │   │   │   │   │   ├── Initializer.php │   │   │   │   │   ├── Result.php │   │   │   │   │   └── Statement.php │   │   │   │   ├── OCI8 │   │   │   │   │   ├── Connection.php │   │   │   │   │   ├── ConvertPositionalToNamedPlaceholders.php │   │   │   │   │   ├── Driver.php │   │   │   │   │   ├── Exception │   │   │   │   │   │   ├── ConnectionFailed.php │   │   │   │   │   │   ├── Error.php │   │   │   │   │   │   ├── InvalidConfiguration.php │   │   │   │   │   │   ├── NonTerminatedStringLiteral.php │   │   │   │   │   │   └── UnknownParameterIndex.php │   │   │   │   │   ├── ExecutionMode.php │   │   │   │   │   ├── Middleware │   │   │   │   │   │   └── InitializeSession.php │   │   │   │   │   ├── Result.php │   │   │   │   │   └── Statement.php │   │   │   │   ├── PDO │   │   │   │   │   ├── Connection.php │   │   │   │   │   ├── Exception │   │   │   │   │   │   └── InvalidConfiguration.php │   │   │   │   │   ├── Exception.php │   │   │   │   │   ├── MySQL │   │   │   │   │   │   └── Driver.php │   │   │   │   │   ├── OCI │   │   │   │   │   │   └── Driver.php │   │   │   │   │   ├── PDOConnect.php │   │   │   │   │   ├── PgSQL │   │   │   │   │   │   └── Driver.php │   │   │   │   │   ├── Result.php │   │   │   │   │   ├── SQLSrv │   │   │   │   │   │   ├── Connection.php │   │   │   │   │   │   ├── Driver.php │   │   │   │   │   │   └── Statement.php │   │   │   │   │   ├── SQLite │   │   │   │   │   │   └── Driver.php │   │   │   │   │   └── Statement.php │   │   │   │   ├── PgSQL │   │   │   │   │   ├── Connection.php │   │   │   │   │   ├── ConvertParameters.php │   │   │   │   │   ├── Driver.php │   │   │   │   │   ├── Exception │   │   │   │   │   │   ├── UnexpectedValue.php │   │   │   │   │   │   └── UnknownParameter.php │   │   │   │   │   ├── Exception.php │   │   │   │   │   ├── Result.php │   │   │   │   │   └── Statement.php │   │   │   │   ├── Result.php │   │   │   │   ├── SQLSrv │   │   │   │   │   ├── Connection.php │   │   │   │   │   ├── Driver.php │   │   │   │   │   ├── Exception │   │   │   │   │   │   └── Error.php │   │   │   │   │   ├── Result.php │   │   │   │   │   └── Statement.php │   │   │   │   ├── SQLite3 │   │   │   │   │   ├── Connection.php │   │   │   │   │   ├── Driver.php │   │   │   │   │   ├── Exception.php │   │   │   │   │   ├── Result.php │   │   │   │   │   └── Statement.php │   │   │   │   └── Statement.php │   │   │   ├── Driver.php │   │   │   ├── DriverManager.php │   │   │   ├── Exception │   │   │   │   ├── CommitFailedRollbackOnly.php │   │   │   │   ├── ConnectionException.php │   │   │   │   ├── ConnectionLost.php │   │   │   │   ├── ConstraintViolationException.php │   │   │   │   ├── DatabaseDoesNotExist.php │   │   │   │   ├── DatabaseObjectExistsException.php │   │   │   │   ├── DatabaseObjectNotFoundException.php │   │   │   │   ├── DatabaseRequired.php │   │   │   │   ├── DeadlockException.php │   │   │   │   ├── DriverException.php │   │   │   │   ├── DriverRequired.php │   │   │   │   ├── ForeignKeyConstraintViolationException.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── InvalidColumnDeclaration.php │   │   │   │   ├── InvalidColumnIndex.php │   │   │   │   ├── InvalidColumnType │   │   │   │   │   ├── ColumnLengthRequired.php │   │   │   │   │   ├── ColumnPrecisionRequired.php │   │   │   │   │   ├── ColumnScaleRequired.php │   │   │   │   │   └── ColumnValuesRequired.php │   │   │   │   ├── InvalidColumnType.php │   │   │   │   ├── InvalidDriverClass.php │   │   │   │   ├── InvalidFieldNameException.php │   │   │   │   ├── InvalidWrapperClass.php │   │   │   │   ├── LockWaitTimeoutException.php │   │   │   │   ├── MalformedDsnException.php │   │   │   │   ├── NoActiveTransaction.php │   │   │   │   ├── NoKeyValue.php │   │   │   │   ├── NonUniqueFieldNameException.php │   │   │   │   ├── NotNullConstraintViolationException.php │   │   │   │   ├── ReadOnlyException.php │   │   │   │   ├── RetryableException.php │   │   │   │   ├── SavepointsNotSupported.php │   │   │   │   ├── SchemaDoesNotExist.php │   │   │   │   ├── ServerException.php │   │   │   │   ├── SyntaxErrorException.php │   │   │   │   ├── TableExistsException.php │   │   │   │   ├── TableNotFoundException.php │   │   │   │   ├── TransactionRolledBack.php │   │   │   │   ├── UniqueConstraintViolationException.php │   │   │   │   └── UnknownDriver.php │   │   │   ├── Exception.php │   │   │   ├── ExpandArrayParameters.php │   │   │   ├── LockMode.php │   │   │   ├── Logging │   │   │   │   ├── Connection.php │   │   │   │   ├── Driver.php │   │   │   │   ├── Middleware.php │   │   │   │   └── Statement.php │   │   │   ├── ParameterType.php │   │   │   ├── Platforms │   │   │   │   ├── AbstractMySQLPlatform.php │   │   │   │   ├── AbstractPlatform.php │   │   │   │   ├── DB2Platform.php │   │   │   │   ├── DateIntervalUnit.php │   │   │   │   ├── Exception │   │   │   │   │   ├── InvalidPlatformVersion.php │   │   │   │   │   ├── NoColumnsSpecifiedForTable.php │   │   │   │   │   ├── NotSupported.php │   │   │   │   │   └── PlatformException.php │   │   │   │   ├── Keywords │   │   │   │   │   ├── DB2Keywords.php │   │   │   │   │   ├── KeywordList.php │   │   │   │   │   ├── MariaDBKeywords.php │   │   │   │   │   ├── MySQL80Keywords.php │   │   │   │   │   ├── MySQL84Keywords.php │   │   │   │   │   ├── MySQLKeywords.php │   │   │   │   │   ├── OracleKeywords.php │   │   │   │   │   ├── PostgreSQLKeywords.php │   │   │   │   │   ├── SQLServerKeywords.php │   │   │   │   │   └── SQLiteKeywords.php │   │   │   │   ├── MariaDB1010Platform.php │   │   │   │   ├── MariaDB1052Platform.php │   │   │   │   ├── MariaDB1060Platform.php │   │   │   │   ├── MariaDBPlatform.php │   │   │   │   ├── MySQL │   │   │   │   │   ├── CharsetMetadataProvider │   │   │   │   │   │   ├── CachingCharsetMetadataProvider.php │   │   │   │   │   │   └── ConnectionCharsetMetadataProvider.php │   │   │   │   │   ├── CharsetMetadataProvider.php │   │   │   │   │   ├── CollationMetadataProvider │   │   │   │   │   │   ├── CachingCollationMetadataProvider.php │   │   │   │   │   │   └── ConnectionCollationMetadataProvider.php │   │   │   │   │   ├── CollationMetadataProvider.php │   │   │   │   │   ├── Comparator.php │   │   │   │   │   └── DefaultTableOptions.php │   │   │   │   ├── MySQL80Platform.php │   │   │   │   ├── MySQL84Platform.php │   │   │   │   ├── MySQLPlatform.php │   │   │   │   ├── OraclePlatform.php │   │   │   │   ├── PostgreSQL120Platform.php │   │   │   │   ├── PostgreSQLPlatform.php │   │   │   │   ├── SQLServer │   │   │   │   │   ├── Comparator.php │   │   │   │   │   └── SQL │   │   │   │   │   └── Builder │   │   │   │   │   └── SQLServerSelectSQLBuilder.php │   │   │   │   ├── SQLServerPlatform.php │   │   │   │   ├── SQLite │   │   │   │   │   └── Comparator.php │   │   │   │   ├── SQLitePlatform.php │   │   │   │   └── TrimMode.php │   │   │   ├── Portability │   │   │   │   ├── Connection.php │   │   │   │   ├── Converter.php │   │   │   │   ├── Driver.php │   │   │   │   ├── Middleware.php │   │   │   │   ├── OptimizeFlags.php │   │   │   │   ├── Result.php │   │   │   │   └── Statement.php │   │   │   ├── Query │   │   │   │   ├── Exception │   │   │   │   │   ├── NonUniqueAlias.php │   │   │   │   │   └── UnknownAlias.php │   │   │   │   ├── Expression │   │   │   │   │   ├── CompositeExpression.php │   │   │   │   │   └── ExpressionBuilder.php │   │   │   │   ├── ForUpdate │   │   │   │   │   └── ConflictResolutionMode.php │   │   │   │   ├── ForUpdate.php │   │   │   │   ├── From.php │   │   │   │   ├── Join.php │   │   │   │   ├── Limit.php │   │   │   │   ├── QueryBuilder.php │   │   │   │   ├── QueryException.php │   │   │   │   ├── QueryType.php │   │   │   │   ├── SelectQuery.php │   │   │   │   ├── Union.php │   │   │   │   ├── UnionQuery.php │   │   │   │   └── UnionType.php │   │   │   ├── Query.php │   │   │   ├── Result.php │   │   │   ├── SQL │   │   │   │   ├── Builder │   │   │   │   │   ├── CreateSchemaObjectsSQLBuilder.php │   │   │   │   │   ├── DefaultSelectSQLBuilder.php │   │   │   │   │   ├── DefaultUnionSQLBuilder.php │   │   │   │   │   ├── DropSchemaObjectsSQLBuilder.php │   │   │   │   │   ├── SelectSQLBuilder.php │   │   │   │   │   └── UnionSQLBuilder.php │   │   │   │   ├── Parser │   │   │   │   │   ├── Exception │   │   │   │   │   │   └── RegularExpressionError.php │   │   │   │   │   ├── Exception.php │   │   │   │   │   └── Visitor.php │   │   │   │   └── Parser.php │   │   │   ├── Schema │   │   │   │   ├── AbstractAsset.php │   │   │   │   ├── AbstractSchemaManager.php │   │   │   │   ├── Column.php │   │   │   │   ├── ColumnDiff.php │   │   │   │   ├── Comparator.php │   │   │   │   ├── DB2SchemaManager.php │   │   │   │   ├── DefaultSchemaManagerFactory.php │   │   │   │   ├── Exception │   │   │   │   │   ├── ColumnAlreadyExists.php │   │   │   │   │   ├── ColumnDoesNotExist.php │   │   │   │   │   ├── ForeignKeyDoesNotExist.php │   │   │   │   │   ├── IndexAlreadyExists.php │   │   │   │   │   ├── IndexDoesNotExist.php │   │   │   │   │   ├── IndexNameInvalid.php │   │   │   │   │   ├── InvalidTableName.php │   │   │   │   │   ├── NamespaceAlreadyExists.php │   │   │   │   │   ├── SequenceAlreadyExists.php │   │   │   │   │   ├── SequenceDoesNotExist.php │   │   │   │   │   ├── TableAlreadyExists.php │   │   │   │   │   ├── TableDoesNotExist.php │   │   │   │   │   ├── UniqueConstraintDoesNotExist.php │   │   │   │   │   └── UnknownColumnOption.php │   │   │   │   ├── ForeignKeyConstraint.php │   │   │   │   ├── Identifier.php │   │   │   │   ├── Index.php │   │   │   │   ├── MySQLSchemaManager.php │   │   │   │   ├── OracleSchemaManager.php │   │   │   │   ├── PostgreSQLSchemaManager.php │   │   │   │   ├── SQLServerSchemaManager.php │   │   │   │   ├── SQLiteSchemaManager.php │   │   │   │   ├── Schema.php │   │   │   │   ├── SchemaConfig.php │   │   │   │   ├── SchemaDiff.php │   │   │   │   ├── SchemaException.php │   │   │   │   ├── SchemaManagerFactory.php │   │   │   │   ├── Sequence.php │   │   │   │   ├── Table.php │   │   │   │   ├── TableDiff.php │   │   │   │   ├── UniqueConstraint.php │   │   │   │   └── View.php │   │   │   ├── ServerVersionProvider.php │   │   │   ├── Statement.php │   │   │   ├── Tools │   │   │   │   ├── Console │   │   │   │   │   ├── Command │   │   │   │   │   │   └── RunSqlCommand.php │   │   │   │   │   ├── ConnectionNotFound.php │   │   │   │   │   ├── ConnectionProvider │   │   │   │   │   │   └── SingleConnectionProvider.php │   │   │   │   │   └── ConnectionProvider.php │   │   │   │   └── DsnParser.php │   │   │   ├── TransactionIsolationLevel.php │   │   │   └── Types │   │   │   ├── AsciiStringType.php │   │   │   ├── BigIntType.php │   │   │   ├── BinaryType.php │   │   │   ├── BlobType.php │   │   │   ├── BooleanType.php │   │   │   ├── ConversionException.php │   │   │   ├── DateImmutableType.php │   │   │   ├── DateIntervalType.php │   │   │   ├── DateTimeImmutableType.php │   │   │   ├── DateTimeType.php │   │   │   ├── DateTimeTzImmutableType.php │   │   │   ├── DateTimeTzType.php │   │   │   ├── DateType.php │   │   │   ├── DecimalType.php │   │   │   ├── EnumType.php │   │   │   ├── Exception │   │   │   │   ├── InvalidFormat.php │   │   │   │   ├── InvalidType.php │   │   │   │   ├── SerializationFailed.php │   │   │   │   ├── TypeAlreadyRegistered.php │   │   │   │   ├── TypeNotFound.php │   │   │   │   ├── TypeNotRegistered.php │   │   │   │   ├── TypesAlreadyExists.php │   │   │   │   ├── TypesException.php │   │   │   │   ├── UnknownColumnType.php │   │   │   │   └── ValueNotConvertible.php │   │   │   ├── FloatType.php │   │   │   ├── GuidType.php │   │   │   ├── IntegerType.php │   │   │   ├── JsonType.php │   │   │   ├── PhpDateMappingType.php │   │   │   ├── PhpDateTimeMappingType.php │   │   │   ├── PhpIntegerMappingType.php │   │   │   ├── PhpTimeMappingType.php │   │   │   ├── SimpleArrayType.php │   │   │   ├── SmallFloatType.php │   │   │   ├── SmallIntType.php │   │   │   ├── StringType.php │   │   │   ├── TextType.php │   │   │   ├── TimeImmutableType.php │   │   │   ├── TimeType.php │   │   │   ├── Type.php │   │   │   ├── TypeRegistry.php │   │   │   ├── Types.php │   │   │   ├── VarDateTimeImmutableType.php │   │   │   └── VarDateTimeType.php │   │   ├── deprecations │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Deprecation.php │   │   │   └── PHPUnit │   │   │   └── VerifyDeprecations.php │   │   ├── inflector │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   ├── docs │   │   │   │   └── en │   │   │   │   └── index.rst │   │   │   └── lib │   │   │   └── Doctrine │   │   │   └── Inflector │   │   │   ├── CachedWordInflector.php │   │   │   ├── GenericLanguageInflectorFactory.php │   │   │   ├── Inflector.php │   │   │   ├── InflectorFactory.php │   │   │   ├── Language.php │   │   │   ├── LanguageInflectorFactory.php │   │   │   ├── NoopWordInflector.php │   │   │   ├── Rules │   │   │   │   ├── English │   │   │   │   │   ├── Inflectible.php │   │   │   │   │   ├── InflectorFactory.php │   │   │   │   │   ├── Rules.php │   │   │   │   │   └── Uninflected.php │   │   │   │   ├── French │   │   │   │   │   ├── Inflectible.php │   │   │   │   │   ├── InflectorFactory.php │   │   │   │   │   ├── Rules.php │   │   │   │   │   └── Uninflected.php │   │   │   │   ├── NorwegianBokmal │   │   │   │   │   ├── Inflectible.php │   │   │   │   │   ├── InflectorFactory.php │   │   │   │   │   ├── Rules.php │   │   │   │   │   └── Uninflected.php │   │   │   │   ├── Pattern.php │   │   │   │   ├── Patterns.php │   │   │   │   ├── Portuguese │   │   │   │   │   ├── Inflectible.php │   │   │   │   │   ├── InflectorFactory.php │   │   │   │   │   ├── Rules.php │   │   │   │   │   └── Uninflected.php │   │   │   │   ├── Ruleset.php │   │   │   │   ├── Spanish │   │   │   │   │   ├── Inflectible.php │   │   │   │   │   ├── InflectorFactory.php │   │   │   │   │   ├── Rules.php │   │   │   │   │   └── Uninflected.php │   │   │   │   ├── Substitution.php │   │   │   │   ├── Substitutions.php │   │   │   │   ├── Transformation.php │   │   │   │   ├── Transformations.php │   │   │   │   ├── Turkish │   │   │   │   │   ├── Inflectible.php │   │   │   │   │   ├── InflectorFactory.php │   │   │   │   │   ├── Rules.php │   │   │   │   │   └── Uninflected.php │   │   │   │   └── Word.php │   │   │   ├── RulesetInflector.php │   │   │   └── WordInflector.php │   │   └── lexer │   │   ├── LICENSE │   │   ├── README.md │   │   ├── UPGRADE.md │   │   ├── composer.json │   │   └── src │   │   ├── AbstractLexer.php │   │   └── Token.php │   ├── dragonmantank │   │   └── cron-expression │   │   ├── CHANGELOG.md │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   └── Cron │   │   ├── AbstractField.php │   │   ├── CronExpression.php │   │   ├── DayOfMonthField.php │   │   ├── DayOfWeekField.php │   │   ├── FieldFactory.php │   │   ├── FieldFactoryInterface.php │   │   ├── FieldInterface.php │   │   ├── HoursField.php │   │   ├── MinutesField.php │   │   └── MonthField.php │   ├── egulias │   │   └── email-validator │   │   ├── CONTRIBUTING.md │   │   ├── LICENSE │   │   ├── composer.json │   │   └── src │   │   ├── EmailLexer.php │   │   ├── EmailParser.php │   │   ├── EmailValidator.php │   │   ├── MessageIDParser.php │   │   ├── Parser │   │   │   ├── Comment.php │   │   │   ├── CommentStrategy │   │   │   │   ├── CommentStrategy.php │   │   │   │   ├── DomainComment.php │   │   │   │   └── LocalComment.php │   │   │   ├── DomainLiteral.php │   │   │   ├── DomainPart.php │   │   │   ├── DoubleQuote.php │   │   │   ├── FoldingWhiteSpace.php │   │   │   ├── IDLeftPart.php │   │   │   ├── IDRightPart.php │   │   │   ├── LocalPart.php │   │   │   └── PartParser.php │   │   ├── Parser.php │   │   ├── Result │   │   │   ├── InvalidEmail.php │   │   │   ├── MultipleErrors.php │   │   │   ├── Reason │   │   │   │   ├── AtextAfterCFWS.php │   │   │   │   ├── CRLFAtTheEnd.php │   │   │   │   ├── CRLFX2.php │   │   │   │   ├── CRNoLF.php │   │   │   │   ├── CharNotAllowed.php │   │   │   │   ├── CommaInDomain.php │   │   │   │   ├── CommentsInIDRight.php │   │   │   │   ├── ConsecutiveAt.php │   │   │   │   ├── ConsecutiveDot.php │   │   │   │   ├── DetailedReason.php │   │   │   │   ├── DomainAcceptsNoMail.php │   │   │   │   ├── DomainHyphened.php │   │   │   │   ├── DomainTooLong.php │   │   │   │   ├── DotAtEnd.php │   │   │   │   ├── DotAtStart.php │   │   │   │   ├── EmptyReason.php │   │   │   │   ├── ExceptionFound.php │   │   │   │   ├── ExpectingATEXT.php │   │   │   │   ├── ExpectingCTEXT.php │   │   │   │   ├── ExpectingDTEXT.php │   │   │   │   ├── ExpectingDomainLiteralClose.php │   │   │   │   ├── LabelTooLong.php │   │   │   │   ├── LocalOrReservedDomain.php │   │   │   │   ├── NoDNSRecord.php │   │   │   │   ├── NoDomainPart.php │   │   │   │   ├── NoLocalPart.php │   │   │   │   ├── RFCWarnings.php │   │   │   │   ├── Reason.php │   │   │   │   ├── SpoofEmail.php │   │   │   │   ├── UnOpenedComment.php │   │   │   │   ├── UnableToGetDNSRecord.php │   │   │   │   ├── UnclosedComment.php │   │   │   │   ├── UnclosedQuotedString.php │   │   │   │   └── UnusualElements.php │   │   │   ├── Result.php │   │   │   ├── SpoofEmail.php │   │   │   └── ValidEmail.php │   │   ├── Validation │   │   │   ├── DNSCheckValidation.php │   │   │   ├── DNSGetRecordWrapper.php │   │   │   ├── DNSRecords.php │   │   │   ├── EmailValidation.php │   │   │   ├── Exception │   │   │   │   └── EmptyValidationList.php │   │   │   ├── Extra │   │   │   │   └── SpoofCheckValidation.php │   │   │   ├── MessageIDValidation.php │   │   │   ├── MultipleValidationWithAnd.php │   │   │   ├── NoRFCWarningsValidation.php │   │   │   └── RFCValidation.php │   │   └── Warning │   │   ├── AddressLiteral.php │   │   ├── CFWSNearAt.php │   │   ├── CFWSWithFWS.php │   │   ├── Comment.php │   │   ├── DeprecatedComment.php │   │   ├── DomainLiteral.php │   │   ├── EmailTooLong.php │   │   ├── IPV6BadChar.php │   │   ├── IPV6ColonEnd.php │   │   ├── IPV6ColonStart.php │   │   ├── IPV6Deprecated.php │   │   ├── IPV6DoubleColon.php │   │   ├── IPV6GroupCount.php │   │   ├── IPV6MaxGroups.php │   │   ├── LocalTooLong.php │   │   ├── NoDNSMXRecord.php │   │   ├── ObsoleteDTEXT.php │   │   ├── QuotedPart.php │   │   ├── QuotedString.php │   │   ├── TLD.php │   │   └── Warning.php │   ├── fakerphp │   │   └── faker │   │   ├── CHANGELOG.md │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   ├── rector-migrate.php │   │   └── src │   │   ├── Faker │   │   │   ├── Calculator │   │   │   │   ├── Ean.php │   │   │   │   ├── Iban.php │   │   │   │   ├── Inn.php │   │   │   │   ├── Isbn.php │   │   │   │   ├── Luhn.php │   │   │   │   └── TCNo.php │   │   │   ├── ChanceGenerator.php │   │   │   ├── Container │   │   │   │   ├── Container.php │   │   │   │   ├── ContainerBuilder.php │   │   │   │   ├── ContainerException.php │   │   │   │   ├── ContainerInterface.php │   │   │   │   └── NotInContainerException.php │   │   │   ├── Core │   │   │   │   ├── Barcode.php │   │   │   │   ├── Blood.php │   │   │   │   ├── Color.php │   │   │   │   ├── Coordinates.php │   │   │   │   ├── DateTime.php │   │   │   │   ├── File.php │   │   │   │   ├── Number.php │   │   │   │   ├── Uuid.php │   │   │   │   └── Version.php │   │   │   ├── DefaultGenerator.php │   │   │   ├── Documentor.php │   │   │   ├── Extension │   │   │   │   ├── AddressExtension.php │   │   │   │   ├── BarcodeExtension.php │   │   │   │   ├── BloodExtension.php │   │   │   │   ├── ColorExtension.php │   │   │   │   ├── CompanyExtension.php │   │   │   │   ├── CountryExtension.php │   │   │   │   ├── DateTimeExtension.php │   │   │   │   ├── Extension.php │   │   │   │   ├── ExtensionNotFound.php │   │   │   │   ├── FileExtension.php │   │   │   │   ├── GeneratorAwareExtension.php │   │   │   │   ├── GeneratorAwareExtensionTrait.php │   │   │   │   ├── Helper.php │   │   │   │   ├── NumberExtension.php │   │   │   │   ├── PersonExtension.php │   │   │   │   ├── PhoneNumberExtension.php │   │   │   │   ├── UuidExtension.php │   │   │   │   └── VersionExtension.php │   │   │   ├── Factory.php │   │   │   ├── Generator.php │   │   │   ├── Guesser │   │   │   │   └── Name.php │   │   │   ├── ORM │   │   │   │   ├── CakePHP │   │   │   │   │   ├── ColumnTypeGuesser.php │   │   │   │   │   ├── EntityPopulator.php │   │   │   │   │   └── Populator.php │   │   │   │   ├── Doctrine │   │   │   │   │   ├── ColumnTypeGuesser.php │   │   │   │   │   ├── EntityPopulator.php │   │   │   │   │   ├── Populator.php │   │   │   │   │   └── backward-compatibility.php │   │   │   │   ├── Mandango │   │   │   │   │   ├── ColumnTypeGuesser.php │   │   │   │   │   ├── EntityPopulator.php │   │   │   │   │   └── Populator.php │   │   │   │   ├── Propel │   │   │   │   │   ├── ColumnTypeGuesser.php │   │   │   │   │   ├── EntityPopulator.php │   │   │   │   │   └── Populator.php │   │   │   │   ├── Propel2 │   │   │   │   │   ├── ColumnTypeGuesser.php │   │   │   │   │   ├── EntityPopulator.php │   │   │   │   │   └── Populator.php │   │   │   │   └── Spot │   │   │   │   ├── ColumnTypeGuesser.php │   │   │   │   ├── EntityPopulator.php │   │   │   │   └── Populator.php │   │   │   ├── Provider │   │   │   │   ├── Address.php │   │   │   │   ├── Barcode.php │   │   │   │   ├── Base.php │   │   │   │   ├── Biased.php │   │   │   │   ├── Color.php │   │   │   │   ├── Company.php │   │   │   │   ├── DateTime.php │   │   │   │   ├── File.php │   │   │   │   ├── HtmlLorem.php │   │   │   │   ├── Image.php │   │   │   │   ├── Internet.php │   │   │   │   ├── Lorem.php │   │   │   │   ├── Medical.php │   │   │   │   ├── Miscellaneous.php │   │   │   │   ├── Payment.php │   │   │   │   ├── Person.php │   │   │   │   ├── PhoneNumber.php │   │   │   │   ├── Text.php │   │   │   │   ├── UserAgent.php │   │   │   │   ├── Uuid.php │   │   │   │   ├── ar_EG │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── Text.php │   │   │   │   ├── ar_JO │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── Text.php │   │   │   │   ├── ar_SA │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── Text.php │   │   │   │   ├── at_AT │   │   │   │   │   └── Payment.php │   │   │   │   ├── bg_BG │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── bn_BD │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Utils.php │   │   │   │   ├── cs_CZ │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── DateTime.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── da_DK │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── de_AT │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── de_CH │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── de_DE │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── el_CY │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── el_GR │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── en_AU │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── en_CA │   │   │   │   │   ├── Address.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── en_GB │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── en_HK │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── en_IN │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── en_NG │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── en_NZ │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── en_PH │   │   │   │   │   ├── Address.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── en_SG │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── en_UG │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── en_US │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── en_ZA │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── es_AR │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── es_ES │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── es_PE │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── es_VE │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── et_EE │   │   │   │   │   └── Person.php │   │   │   │   ├── fa_IR │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── fi_FI │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── fr_BE │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── fr_CA │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── Text.php │   │   │   │   ├── fr_CH │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── fr_FR │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── he_IL │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── hr_HR │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── hu_HU │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── hy_AM │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── id_ID │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── is_IS │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── it_CH │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── it_IT │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── ja_JP │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── ka_GE │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── DateTime.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── kk_KZ │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── ko_KR │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── lt_LT │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── lv_LV │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── me_ME │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── mn_MN │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── ms_MY │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Miscellaneous.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── nb_NO │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── ne_NP │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── nl_BE │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── nl_NL │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── pl_PL │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── LicensePlate.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── pt_BR │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   ├── Text.php │   │   │   │   │   └── check_digit.php │   │   │   │   ├── pt_PT │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── ro_MD │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── ro_RO │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── ru_RU │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── sk_SK │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── sl_SI │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── sr_Cyrl_RS │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   └── Person.php │   │   │   │   ├── sr_Latn_RS │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   └── Person.php │   │   │   │   ├── sr_RS │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   └── Person.php │   │   │   │   ├── sv_SE │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Municipality.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── th_TH │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── tr_TR │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── DateTime.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── uk_UA │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   ├── PhoneNumber.php │   │   │   │   │   └── Text.php │   │   │   │   ├── vi_VN │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   ├── zh_CN │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Color.php │   │   │   │   │   ├── Company.php │   │   │   │   │   ├── DateTime.php │   │   │   │   │   ├── Internet.php │   │   │   │   │   ├── Payment.php │   │   │   │   │   ├── Person.php │   │   │   │   │   └── PhoneNumber.php │   │   │   │   └── zh_TW │   │   │   │   ├── Address.php │   │   │   │   ├── Color.php │   │   │   │   ├── Company.php │   │   │   │   ├── DateTime.php │   │   │   │   ├── Internet.php │   │   │   │   ├── Payment.php │   │   │   │   ├── Person.php │   │   │   │   ├── PhoneNumber.php │   │   │   │   └── Text.php │   │   │   ├── UniqueGenerator.php │   │   │   └── ValidGenerator.php │   │   └── autoload.php │   ├── fidry │   │   └── cpu-core-counter │   │   ├── LICENSE.md │   │   ├── README.md │   │   ├── bin │   │   │   ├── diagnose.php │   │   │   ├── execute.php │   │   │   └── trace.php │   │   ├── composer.json │   │   └── src │   │   ├── CpuCoreCounter.php │   │   ├── Diagnoser.php │   │   ├── Executor │   │   │   ├── ProcOpenExecutor.php │   │   │   └── ProcessExecutor.php │   │   ├── Finder │   │   │   ├── CmiCmdletLogicalFinder.php │   │   │   ├── CmiCmdletPhysicalFinder.php │   │   │   ├── CpuCoreFinder.php │   │   │   ├── CpuInfoFinder.php │   │   │   ├── DummyCpuCoreFinder.php │   │   │   ├── EnvVariableFinder.php │   │   │   ├── FinderRegistry.php │   │   │   ├── HwLogicalFinder.php │   │   │   ├── HwPhysicalFinder.php │   │   │   ├── LscpuLogicalFinder.php │   │   │   ├── LscpuPhysicalFinder.php │   │   │   ├── NProcFinder.php │   │   │   ├── NProcessorFinder.php │   │   │   ├── NullCpuCoreFinder.php │   │   │   ├── OnlyInPowerShellFinder.php │   │   │   ├── OnlyOnOSFamilyFinder.php │   │   │   ├── ProcOpenBasedFinder.php │   │   │   ├── SkipOnOSFamilyFinder.php │   │   │   ├── WindowsRegistryLogicalFinder.php │   │   │   ├── WmicLogicalFinder.php │   │   │   ├── WmicPhysicalFinder.php │   │   │   └── _NProcessorFinder.php │   │   ├── NumberOfCpuCoreNotFound.php │   │   └── ParallelisationResult.php │   ├── filament │   │   ├── actions │   │   │   ├── composer.json │   │   │   ├── database │   │   │   │   └── migrations │   │   │   │   ├── create_exports_table.php │   │   │   │   ├── create_failed_import_rows_table.php │   │   │   │   └── create_imports_table.php │   │   │   ├── docs │   │   │   │   ├── 01-installation.md │   │   │   │   ├── 02-overview.md │   │   │   │   ├── 03-trigger-button.md │   │   │   │   ├── 04-modals.md │   │   │   │   ├── 05-grouping-actions.md │   │   │   │   ├── 06-adding-an-action-to-a-livewire-component.md │   │   │   │   ├── 07-prebuilt-actions │   │   │   │   │   ├── 01-create.md │   │   │   │   │   ├── 02-edit.md │   │   │   │   │   ├── 03-view.md │   │   │   │   │   ├── 04-delete.md │   │   │   │   │   ├── 05-replicate.md │   │   │   │   │   ├── 06-force-delete.md │   │   │   │   │   ├── 07-restore.md │   │   │   │   │   ├── 08-import.md │   │   │   │   │   └── 09-export.md │   │   │   │   ├── 08-advanced.md │   │   │   │   ├── 09-testing.md │   │   │   │   └── 10-upgrade-guide.md │   │   │   ├── resources │   │   │   │   ├── lang │   │   │   │   │   ├── ar │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── az │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── bg │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── bn │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── bs │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── ca │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── ckb │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── cs │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── da │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── de │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── el │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── en │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── es │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── fa │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── fi │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── fr │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── he │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── hi │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   └── modal.php │   │   │   │   │   ├── hr │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── hu │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── hy │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── id │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── it │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── ja │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── ka │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── kh │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   └── edit.php │   │   │   │   │   ├── km │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── ko │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── ku │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── lt │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── lv │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── mn │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── ms │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── my │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── ne │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── nl │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── no │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── np │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── pl │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── pt_BR │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── pt_PT │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── ro │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── ru │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── sk │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── sl │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── sq │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── sv │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── sw │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── th │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── tr │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── uk │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── uz │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── vi │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   ├── zh_CN │   │   │   │   │   │   ├── associate.php │   │   │   │   │   │   ├── attach.php │   │   │   │   │   │   ├── create.php │   │   │   │   │   │   ├── delete.php │   │   │   │   │   │   ├── detach.php │   │   │   │   │   │   ├── dissociate.php │   │   │   │   │   │   ├── edit.php │   │   │   │   │   │   ├── export.php │   │   │   │   │   │   ├── force-delete.php │   │   │   │   │   │   ├── group.php │   │   │   │   │   │   ├── import.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   ├── replicate.php │   │   │   │   │   │   ├── restore.php │   │   │   │   │   │   └── view.php │   │   │   │   │   └── zh_TW │   │   │   │   │   ├── associate.php │   │   │   │   │   ├── attach.php │   │   │   │   │   ├── create.php │   │   │   │   │   ├── delete.php │   │   │   │   │   ├── detach.php │   │   │   │   │   ├── dissociate.php │   │   │   │   │   ├── edit.php │   │   │   │   │   ├── export.php │   │   │   │   │   ├── force-delete.php │   │   │   │   │   ├── group.php │   │   │   │   │   ├── import.php │   │   │   │   │   ├── modal.php │   │   │   │   │   ├── replicate.php │   │   │   │   │   ├── restore.php │   │   │   │   │   └── view.php │   │   │   │   └── views │   │   │   │   ├── badge-action.blade.php │   │   │   │   ├── badge-group.blade.php │   │   │   │   ├── button-action.blade.php │   │   │   │   ├── button-group.blade.php │   │   │   │   ├── components │   │   │   │   │   ├── action.blade.php │   │   │   │   │   ├── actions.blade.php │   │   │   │   │   ├── group.blade.php │   │   │   │   │   └── modals.blade.php │   │   │   │   ├── grouped-action.blade.php │   │   │   │   ├── grouped-group.blade.php │   │   │   │   ├── icon-button-action.blade.php │   │   │   │   ├── icon-button-group.blade.php │   │   │   │   ├── link-action.blade.php │   │   │   │   ├── link-group.blade.php │   │   │   │   └── select-action.blade.php │   │   │   ├── routes │   │   │   │   └── web.php │   │   │   ├── src │   │   │   │   ├── Action.php │   │   │   │   ├── ActionGroup.php │   │   │   │   ├── ActionsServiceProvider.php │   │   │   │   ├── Commands │   │   │   │   │   ├── Aliases │   │   │   │   │   │   ├── MakeExporterCommand.php │   │   │   │   │   │   └── MakeImporterCommand.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   ├── CanGenerateExporterColumns.php │   │   │   │   │   │   └── CanGenerateImporterColumns.php │   │   │   │   │   ├── MakeExporterCommand.php │   │   │   │   │   └── MakeImporterCommand.php │   │   │   │   ├── Concerns │   │   │   │   │   ├── BelongsToGroup.php │   │   │   │   │   ├── BelongsToLivewire.php │   │   │   │   │   ├── CanBeDisabled.php │   │   │   │   │   ├── CanBeHidden.php │   │   │   │   │   ├── CanBeLabeledFrom.php │   │   │   │   │   ├── CanBeMounted.php │   │   │   │   │   ├── CanBeOutlined.php │   │   │   │   │   ├── CanCallParentAction.php │   │   │   │   │   ├── CanClose.php │   │   │   │   │   ├── CanCustomizeProcess.php │   │   │   │   │   ├── CanDispatchEvent.php │   │   │   │   │   ├── CanExportRecords.php │   │   │   │   │   ├── CanImportRecords.php │   │   │   │   │   ├── CanNotify.php │   │   │   │   │   ├── CanOpenModal.php │   │   │   │   │   ├── CanOpenUrl.php │   │   │   │   │   ├── CanRedirect.php │   │   │   │   │   ├── CanReplicateRecords.php │   │   │   │   │   ├── CanRequireConfirmation.php │   │   │   │   │   ├── CanSubmitForm.php │   │   │   │   │   ├── CanUseDatabaseTransactions.php │   │   │   │   │   ├── HasAction.php │   │   │   │   │   ├── HasArguments.php │   │   │   │   │   ├── HasDropdown.php │   │   │   │   │   ├── HasExtraModalWindowAttributes.php │   │   │   │   │   ├── HasForm.php │   │   │   │   │   ├── HasGroupedIcon.php │   │   │   │   │   ├── HasId.php │   │   │   │   │   ├── HasInfolist.php │   │   │   │   │   ├── HasKeyBindings.php │   │   │   │   │   ├── HasLabel.php │   │   │   │   │   ├── HasLifecycleHooks.php │   │   │   │   │   ├── HasMountableArguments.php │   │   │   │   │   ├── HasName.php │   │   │   │   │   ├── HasParentActions.php │   │   │   │   │   ├── HasSelect.php │   │   │   │   │   ├── HasSize.php │   │   │   │   │   ├── HasTooltip.php │   │   │   │   │   ├── HasWizard.php │   │   │   │   │   ├── InteractsWithActions.php │   │   │   │   │   └── InteractsWithRecord.php │   │   │   │   ├── Contracts │   │   │   │   │   ├── Groupable.php │   │   │   │   │   ├── HasActions.php │   │   │   │   │   ├── HasLivewire.php │   │   │   │   │   ├── HasRecord.php │   │   │   │   │   └── ReplicatesRecords.php │   │   │   │   ├── CreateAction.php │   │   │   │   ├── DeleteAction.php │   │   │   │   ├── EditAction.php │   │   │   │   ├── Events │   │   │   │   │   ├── ActionCalled.php │   │   │   │   │   └── ActionCalling.php │   │   │   │   ├── Exceptions │   │   │   │   │   └── Hold.php │   │   │   │   ├── ExportAction.php │   │   │   │   ├── Exports │   │   │   │   │   ├── Concerns │   │   │   │   │   │   └── CanFormatState.php │   │   │   │   │   ├── Downloaders │   │   │   │   │   │   ├── Contracts │   │   │   │   │   │   │   └── Downloader.php │   │   │   │   │   │   ├── CsvDownloader.php │   │   │   │   │   │   └── XlsxDownloader.php │   │   │   │   │   ├── Enums │   │   │   │   │   │   ├── Contracts │   │   │   │   │   │   │   └── ExportFormat.php │   │   │   │   │   │   └── ExportFormat.php │   │   │   │   │   ├── ExportColumn.php │   │   │   │   │   ├── Exporter.php │   │   │   │   │   ├── Http │   │   │   │   │   │   └── Controllers │   │   │   │   │   │   └── DownloadExport.php │   │   │   │   │   ├── Jobs │   │   │   │   │   │   ├── CreateXlsxFile.php │   │   │   │   │   │   ├── ExportCompletion.php │   │   │   │   │   │   ├── ExportCsv.php │   │   │   │   │   │   └── PrepareCsvExport.php │   │   │   │   │   └── Models │   │   │   │   │   └── Export.php │   │   │   │   ├── ForceDeleteAction.php │   │   │   │   ├── ImportAction.php │   │   │   │   ├── Imports │   │   │   │   │   ├── Events │   │   │   │   │   │   ├── ImportChunkProcessed.php │   │   │   │   │   │   ├── ImportCompleted.php │   │   │   │   │   │   └── ImportStarted.php │   │   │   │   │   ├── Exceptions │   │   │   │   │   │   └── RowImportFailedException.php │   │   │   │   │   ├── Http │   │   │   │   │   │   └── Controllers │   │   │   │   │   │   └── DownloadImportFailureCsv.php │   │   │   │   │   ├── ImportColumn.php │   │   │   │   │   ├── Importer.php │   │   │   │   │   ├── Jobs │   │   │   │   │   │   └── ImportCsv.php │   │   │   │   │   └── Models │   │   │   │   │   ├── FailedImportRow.php │   │   │   │   │   └── Import.php │   │   │   │   ├── Modal │   │   │   │   │   └── Actions │   │   │   │   │   └── Action.php │   │   │   │   ├── MountableAction.php │   │   │   │   ├── ReplicateAction.php │   │   │   │   ├── RestoreAction.php │   │   │   │   ├── SelectAction.php │   │   │   │   ├── StaticAction.php │   │   │   │   ├── Testing │   │   │   │   │   └── TestsActions.php │   │   │   │   └── ViewAction.php │   │   │   └── stubs │   │   │   ├── Exporter.stub │   │   │   └── Importer.stub │   │   ├── filament │   │   │   ├── composer.json │   │   │   ├── dist │   │   │   │   ├── echo.js │   │   │   │   ├── index.js │   │   │   │   └── theme.css │   │   │   ├── docs │   │   │   │   ├── 01-installation.md │   │   │   │   ├── 02-getting-started.md │   │   │   │   ├── 03-resources │   │   │   │   │   ├── 01-getting-started.md │   │   │   │   │   ├── 02-listing-records.md │   │   │   │   │   ├── 03-creating-records.md │   │   │   │   │   ├── 04-editing-records.md │   │   │   │   │   ├── 05-viewing-records.md │   │   │   │   │   ├── 06-deleting-records.md │   │   │   │   │   ├── 07-relation-managers.md │   │   │   │   │   ├── 08-global-search.md │   │   │   │   │   ├── 09-widgets.md │   │   │   │   │   ├── 10-custom-pages.md │   │   │   │   │   └── 11-security.md │   │   │   │   ├── 04-pages.md │   │   │   │   ├── 05-dashboard.md │   │   │   │   ├── 06-navigation.md │   │   │   │   ├── 07-notifications.md │   │   │   │   ├── 08-users.md │   │   │   │   ├── 09-configuration.md │   │   │   │   ├── 10-clusters.md │   │   │   │   ├── 11-tenancy.md │   │   │   │   ├── 12-themes.md │   │   │   │   ├── 13-plugins.md │   │   │   │   ├── 14-testing.md │   │   │   │   └── 15-upgrade-guide.md │   │   │   ├── resources │   │   │   │   ├── css │   │   │   │   │   ├── base.css │   │   │   │   │   ├── index.css │   │   │   │   │   └── theme.css │   │   │   │   ├── js │   │   │   │   │   ├── echo.js │   │   │   │   │   └── index.js │   │   │   │   ├── lang │   │   │   │   │   ├── ar │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── az │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── bg │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── bn │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   └── login.php │   │   │   │   │   │   │   └── dashboard.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── bs │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   └── login.php │   │   │   │   │   │   │   └── dashboard.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── ca │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── ckb │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── cs │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── da │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── de │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── el │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   └── dashboard.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── en │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── es │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── fa │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── fi │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── fr │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── he │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── hi │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   └── login.php │   │   │   │   │   │   │   └── dashboard.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── hr │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── hu │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── hy │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── id │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── it │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── ja │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── ka │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── km │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── ko │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── ku │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── lt │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── lv │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── mn │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── ms │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── my │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── nl │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── no │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── np │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── pl │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── pt_BR │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── pt_PT │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── ro │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── ru │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── sk │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── sl │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── sq │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── sv │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── sw │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   └── login.php │   │   │   │   │   │   │   └── dashboard.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── th │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── tr │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── uk │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── uz │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── vi │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   ├── unsaved-changes-alert.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   ├── zh_CN │   │   │   │   │   │   ├── global-search.php │   │   │   │   │   │   ├── layout.php │   │   │   │   │   │   ├── pages │   │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   │   ├── edit-profile.php │   │   │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   │   │   └── email-verification-prompt.php │   │   │   │   │   │   │   │   ├── login.php │   │   │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   │   │   ├── request-password-reset.php │   │   │   │   │   │   │   │   │   └── reset-password.php │   │   │   │   │   │   │   │   └── register.php │   │   │   │   │   │   │   ├── dashboard.php │   │   │   │   │   │   │   └── tenancy │   │   │   │   │   │   │   └── edit-tenant-profile.php │   │   │   │   │   │   ├── resources │   │   │   │   │   │   │   └── pages │   │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   │   └── view-record.php │   │   │   │   │   │   └── widgets │   │   │   │   │   │   ├── account-widget.php │   │   │   │   │   │   └── filament-info-widget.php │   │   │   │   │   └── zh_TW │   │   │   │   │   ├── global-search.php │   │   │   │   │   ├── layout.php │   │   │   │   │   ├── pages │   │   │   │   │   │   ├── auth │   │   │   │   │   │   │   └── login.php │   │   │   │   │   │   └── dashboard.php │   │   │   │   │   ├── resources │   │   │   │   │   │   └── pages │   │   │   │   │   │   ├── create-record.php │   │   │   │   │   │   ├── edit-record.php │   │   │   │   │   │   ├── list-records.php │   │   │   │   │   │   └── view-record.php │   │   │   │   │   └── widgets │   │   │   │   │   ├── account-widget.php │   │   │   │   │   └── filament-info-widget.php │   │   │   │   └── views │   │   │   │   ├── components │   │   │   │   │   ├── avatar │   │   │   │   │   │   ├── tenant.blade.php │   │   │   │   │   │   └── user.blade.php │   │   │   │   │   ├── form │   │   │   │   │   │   ├── actions.blade.php │   │   │   │   │   │   └── index.blade.php │   │   │   │   │   ├── global-search │   │   │   │   │   │   ├── actions.blade.php │   │   │   │   │   │   ├── field.blade.php │   │   │   │   │   │   ├── index.blade.php │   │   │   │   │   │   ├── no-results-message.blade.php │   │   │   │   │   │   ├── result-group.blade.php │   │   │   │   │   │   ├── result.blade.php │   │   │   │   │   │   └── results-container.blade.php │   │   │   │   │   ├── header │   │   │   │   │   │   ├── index.blade.php │   │   │   │   │   │   └── simple.blade.php │   │   │   │   │   ├── layout │   │   │   │   │   │   ├── base.blade.php │   │   │   │   │   │   ├── index.blade.php │   │   │   │   │   │   └── simple.blade.php │   │   │   │   │   ├── logo.blade.php │   │   │   │   │   ├── page │   │   │   │   │   │   ├── index.blade.php │   │   │   │   │   │   ├── simple.blade.php │   │   │   │   │   │   ├── sub-navigation │   │   │   │   │   │   │   ├── select.blade.php │   │   │   │   │   │   │   ├── sidebar.blade.php │   │   │   │   │   │   │   └── tabs.blade.php │   │   │   │   │   │   └── unsaved-data-changes-alert.blade.php │   │   │   │   │   ├── resources │   │   │   │   │   │   ├── relation-managers.blade.php │   │   │   │   │   │   └── tabs.blade.php │   │   │   │   │   ├── sidebar │   │   │   │   │   │   ├── group.blade.php │   │   │   │   │   │   ├── index.blade.php │   │   │   │   │   │   └── item.blade.php │   │   │   │   │   ├── tenant-menu.blade.php │   │   │   │   │   ├── theme-switcher │   │   │   │   │   │   ├── button.blade.php │   │   │   │   │   │   └── index.blade.php │   │   │   │   │   ├── topbar │   │   │   │   │   │   ├── database-notifications-trigger.blade.php │   │   │   │   │   │   ├── index.blade.php │   │   │   │   │   │   └── item.blade.php │   │   │   │   │   ├── unsaved-action-changes-alert.blade.php │   │   │   │   │   └── user-menu.blade.php │   │   │   │   ├── pages │   │   │   │   │   ├── auth │   │   │   │   │   │   ├── edit-profile.blade.php │   │   │   │   │   │   ├── email-verification │   │   │   │   │   │   │   └── email-verification-prompt.blade.php │   │   │   │   │   │   ├── login.blade.php │   │   │   │   │   │   ├── password-reset │   │   │   │   │   │   │   ├── request-password-reset.blade.php │   │   │   │   │   │   │   └── reset-password.blade.php │   │   │   │   │   │   └── register.blade.php │   │   │   │   │   ├── dashboard.blade.php │   │   │   │   │   └── tenancy │   │   │   │   │   ├── edit-tenant-profile.blade.php │   │   │   │   │   └── register-tenant.blade.php │   │   │   │   ├── resources │   │   │   │   │   ├── pages │   │   │   │   │   │   ├── create-record.blade.php │   │   │   │   │   │   ├── edit-record.blade.php │   │   │   │   │   │   ├── list-records.blade.php │   │   │   │   │   │   ├── manage-related-records.blade.php │   │   │   │   │   │   └── view-record.blade.php │   │   │   │   │   └── relation-manager.blade.php │   │   │   │   └── widgets │   │   │   │   ├── account-widget.blade.php │   │   │   │   └── filament-info-widget.blade.php │   │   │   ├── routes │   │   │   │   └── web.php │   │   │   ├── src │   │   │   │   ├── AvatarProviders │   │   │   │   │   ├── Contracts │   │   │   │   │   │   └── AvatarProvider.php │   │   │   │   │   └── UiAvatarsProvider.php │   │   │   │   ├── Billing │   │   │   │   │   └── Providers │   │   │   │   │   └── Contracts │   │   │   │   │   └── Provider.php │   │   │   │   ├── Clusters │   │   │   │   │   └── Cluster.php │   │   │   │   ├── Commands │   │   │   │   │   ├── Aliases │   │   │   │   │   │   ├── MakeClusterCommand.php │   │   │   │   │   │   ├── MakePageCommand.php │   │   │   │   │   │   ├── MakePanelCommand.php │   │   │   │   │   │   ├── MakeRelationManagerCommand.php │   │   │   │   │   │   ├── MakeResourceCommand.php │   │   │   │   │   │   ├── MakeThemeCommand.php │   │   │   │   │   │   └── MakeUserCommand.php │   │   │   │   │   ├── CacheComponentsCommand.php │   │   │   │   │   ├── ClearCachedComponentsCommand.php │   │   │   │   │   ├── MakeClusterCommand.php │   │   │   │   │   ├── MakePageCommand.php │   │   │   │   │   ├── MakePanelCommand.php │   │   │   │   │   ├── MakeRelationManagerCommand.php │   │   │   │   │   ├── MakeResourceCommand.php │   │   │   │   │   ├── MakeThemeCommand.php │   │   │   │   │   └── MakeUserCommand.php │   │   │   │   ├── Contracts │   │   │   │   │   └── Plugin.php │   │   │   │   ├── Enums │   │   │   │   │   └── ThemeMode.php │   │   │   │   ├── Events │   │   │   │   │   ├── Auth │   │   │   │   │   │   └── Registered.php │   │   │   │   │   ├── ServingFilament.php │   │   │   │   │   └── TenantSet.php │   │   │   │   ├── Exceptions │   │   │   │   │   └── NoDefaultPanelSetException.php │   │   │   │   ├── Facades │   │   │   │   │   └── Filament.php │   │   │   │   ├── FilamentManager.php │   │   │   │   ├── FilamentServiceProvider.php │   │   │   │   ├── FontProviders │   │   │   │   │   ├── BunnyFontProvider.php │   │   │   │   │   ├── Contracts │   │   │   │   │   │   └── FontProvider.php │   │   │   │   │   ├── GoogleFontProvider.php │   │   │   │   │   └── LocalFontProvider.php │   │   │   │   ├── GlobalSearch │   │   │   │   │   ├── Actions │   │   │   │   │   │   └── Action.php │   │   │   │   │   ├── Contracts │   │   │   │   │   │   └── GlobalSearchProvider.php │   │   │   │   │   ├── DefaultGlobalSearchProvider.php │   │   │   │   │   ├── GlobalSearchResult.php │   │   │   │   │   └── GlobalSearchResults.php │   │   │   │   ├── Http │   │   │   │   │   ├── Controllers │   │   │   │   │   │   ├── Auth │   │   │   │   │   │   │   ├── EmailVerificationController.php │   │   │   │   │   │   │   └── LogoutController.php │   │   │   │   │   │   ├── RedirectToHomeController.php │   │   │   │   │   │   └── RedirectToTenantController.php │   │   │   │   │   ├── Livewire │   │   │   │   │   │   └── Auth │   │   │   │   │   │   └── Login.php │   │   │   │   │   ├── Middleware │   │   │   │   │   │   ├── Authenticate.php │   │   │   │   │   │   ├── AuthenticateSession.php │   │   │   │   │   │   ├── DisableBladeIconComponents.php │   │   │   │   │   │   ├── DispatchServingFilamentEvent.php │   │   │   │   │   │   ├── IdentifyTenant.php │   │   │   │   │   │   └── SetUpPanel.php │   │   │   │   │   └── Responses │   │   │   │   │   └── Auth │   │   │   │   │   ├── Contracts │   │   │   │   │   │   ├── EmailVerificationResponse.php │   │   │   │   │   │   ├── LoginResponse.php │   │   │   │   │   │   ├── LogoutResponse.php │   │   │   │   │   │   ├── PasswordResetResponse.php │   │   │   │   │   │   └── RegistrationResponse.php │   │   │   │   │   ├── EmailVerificationResponse.php │   │   │   │   │   ├── LoginResponse.php │   │   │   │   │   ├── LogoutResponse.php │   │   │   │   │   ├── PasswordResetResponse.php │   │   │   │   │   └── RegistrationResponse.php │   │   │   │   ├── Livewire │   │   │   │   │   ├── DatabaseNotifications.php │   │   │   │   │   ├── GlobalSearch.php │   │   │   │   │   └── Notifications.php │   │   │   │   ├── Models │   │   │   │   │   └── Contracts │   │   │   │   │   ├── FilamentUser.php │   │   │   │   │   ├── HasAvatar.php │   │   │   │   │   ├── HasCurrentTenantLabel.php │   │   │   │   │   ├── HasDefaultTenant.php │   │   │   │   │   ├── HasName.php │   │   │   │   │   └── HasTenants.php │   │   │   │   ├── Navigation │   │   │   │   │   ├── MenuItem.php │   │   │   │   │   ├── NavigationBuilder.php │   │   │   │   │   ├── NavigationGroup.php │   │   │   │   │   ├── NavigationItem.php │   │   │   │   │   ├── NavigationManager.php │   │   │   │   │   └── UserMenuItem.php │   │   │   │   ├── Notifications │   │   │   │   │   └── Auth │   │   │   │   │   ├── ResetPassword.php │   │   │   │   │   └── VerifyEmail.php │   │   │   │   ├── Pages │   │   │   │   │   ├── Actions │   │   │   │   │   │   ├── Action.php │   │   │   │   │   │   ├── ActionGroup.php │   │   │   │   │   │   ├── ButtonAction.php │   │   │   │   │   │   ├── CreateAction.php │   │   │   │   │   │   ├── DeleteAction.php │   │   │   │   │   │   ├── EditAction.php │   │   │   │   │   │   ├── ForceDeleteAction.php │   │   │   │   │   │   ├── Modal │   │   │   │   │   │   │   └── Actions │   │   │   │   │   │   │   ├── Action.php │   │   │   │   │   │   │   └── ButtonAction.php │   │   │   │   │   │   ├── ReplicateAction.php │   │   │   │   │   │   ├── RestoreAction.php │   │   │   │   │   │   ├── SelectAction.php │   │   │   │   │   │   └── ViewAction.php │   │   │   │   │   ├── Auth │   │   │   │   │   │   ├── EditProfile.php │   │   │   │   │   │   ├── EmailVerification │   │   │   │   │   │   │   └── EmailVerificationPrompt.php │   │   │   │   │   │   ├── Login.php │   │   │   │   │   │   ├── PasswordReset │   │   │   │   │   │   │   ├── RequestPasswordReset.php │   │   │   │   │   │   │   └── ResetPassword.php │   │   │   │   │   │   └── Register.php │   │   │   │   │   ├── BasePage.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   ├── CanAuthorizeAccess.php │   │   │   │   │   │   ├── CanUseDatabaseTransactions.php │   │   │   │   │   │   ├── ExposesTableToWidgets.php │   │   │   │   │   │   ├── HasMaxWidth.php │   │   │   │   │   │   ├── HasRoutes.php │   │   │   │   │   │   ├── HasSubNavigation.php │   │   │   │   │   │   ├── HasTopbar.php │   │   │   │   │   │   ├── HasUnsavedDataChangesAlert.php │   │   │   │   │   │   ├── InteractsWithFormActions.php │   │   │   │   │   │   └── InteractsWithHeaderActions.php │   │   │   │   │   ├── Dashboard │   │   │   │   │   │   ├── Actions │   │   │   │   │   │   │   └── FilterAction.php │   │   │   │   │   │   └── Concerns │   │   │   │   │   │   ├── HasFilters.php │   │   │   │   │   │   ├── HasFiltersAction.php │   │   │   │   │   │   └── HasFiltersForm.php │   │   │   │   │   ├── Dashboard.php │   │   │   │   │   ├── Page.php │   │   │   │   │   ├── SimplePage.php │   │   │   │   │   ├── SubNavigationPosition.php │   │   │   │   │   └── Tenancy │   │   │   │   │   ├── EditTenantProfile.php │   │   │   │   │   └── RegisterTenant.php │   │   │   │   ├── Panel │   │   │   │   │   └── Concerns │   │   │   │   │   ├── CanGenerateResourceUrls.php │   │   │   │   │   ├── HasAssets.php │   │   │   │   │   ├── HasAuth.php │   │   │   │   │   ├── HasAvatars.php │   │   │   │   │   ├── HasBrandLogo.php │   │   │   │   │   ├── HasBrandName.php │   │   │   │   │   ├── HasBreadcrumbs.php │   │   │   │   │   ├── HasBroadcasting.php │   │   │   │   │   ├── HasColors.php │   │   │   │   │   ├── HasComponents.php │   │   │   │   │   ├── HasDarkMode.php │   │   │   │   │   ├── HasDatabaseTransactions.php │   │   │   │   │   ├── HasFavicon.php │   │   │   │   │   ├── HasFont.php │   │   │   │   │   ├── HasGlobalSearch.php │   │   │   │   │   ├── HasIcons.php │   │   │   │   │   ├── HasId.php │   │   │   │   │   ├── HasMaxContentWidth.php │   │   │   │   │   ├── HasMiddleware.php │   │   │   │   │   ├── HasNavigation.php │   │   │   │   │   ├── HasNotifications.php │   │   │   │   │   ├── HasPlugins.php │   │   │   │   │   ├── HasRenderHooks.php │   │   │   │   │   ├── HasRoutes.php │   │   │   │   │   ├── HasSidebar.php │   │   │   │   │   ├── HasSpaMode.php │   │   │   │   │   ├── HasTenancy.php │   │   │   │   │   ├── HasTheme.php │   │   │   │   │   ├── HasTopNavigation.php │   │   │   │   │   ├── HasTopbar.php │   │   │   │   │   ├── HasUnsavedChangesAlerts.php │   │   │   │   │   └── HasUserMenu.php │   │   │   │   ├── Panel.php │   │   │   │   ├── PanelProvider.php │   │   │   │   ├── PanelRegistry.php │   │   │   │   ├── Resources │   │   │   │   │   ├── Components │   │   │   │   │   │   └── Tab.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   ├── HasTabs.php │   │   │   │   │   │   └── InteractsWithRelationshipTable.php │   │   │   │   │   ├── Pages │   │   │   │   │   │   ├── Concerns │   │   │   │   │   │   │   ├── CanAuthorizeResourceAccess.php │   │   │   │   │   │   │   ├── HasRelationManagers.php │   │   │   │   │   │   │   ├── HasWizard.php │   │   │   │   │   │   │   └── InteractsWithRecord.php │   │   │   │   │   │   ├── ContentTabPosition.php │   │   │   │   │   │   ├── CreateRecord │   │   │   │   │   │   │   └── Concerns │   │   │   │   │   │   │   └── HasWizard.php │   │   │   │   │   │   ├── CreateRecord.php │   │   │   │   │   │   ├── EditRecord │   │   │   │   │   │   │   └── Concerns │   │   │   │   │   │   │   └── HasWizard.php │   │   │   │   │   │   ├── EditRecord.php │   │   │   │   │   │   ├── ListRecords │   │   │   │   │   │   │   └── Tab.php │   │   │   │   │   │   ├── ListRecords.php │   │   │   │   │   │   ├── ManageRecords.php │   │   │   │   │   │   ├── ManageRelatedRecords.php │   │   │   │   │   │   ├── Page.php │   │   │   │   │   │   ├── PageRegistration.php │   │   │   │   │   │   └── ViewRecord.php │   │   │   │   │   ├── RelationManagers │   │   │   │   │   │   ├── RelationGroup.php │   │   │   │   │   │   ├── RelationManager.php │   │   │   │   │   │   └── RelationManagerConfiguration.php │   │   │   │   │   └── Resource.php │   │   │   │   ├── View │   │   │   │   │   ├── LegacyComponents │   │   │   │   │   │   ├── Page.php │   │   │   │   │   │   └── Widget.php │   │   │   │   │   └── PanelsRenderHook.php │   │   │   │   ├── Widgets │   │   │   │   │   ├── AccountWidget.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   ├── InteractsWithPageFilters.php │   │   │   │   │   │   └── InteractsWithPageTable.php │   │   │   │   │   └── FilamentInfoWidget.php │   │   │   │   ├── global_helpers.php │   │   │   │   └── helpers.php │   │   │   ├── stubs │   │   │   │   ├── Cluster.stub │   │   │   │   ├── CustomResourcePage.stub │   │   │   │   ├── Page.stub │   │   │   │   ├── PageView.stub │   │   │   │   ├── RelationManager.stub │   │   │   │   ├── Resource.stub │   │   │   │   ├── ResourceEditPage.stub │   │   │   │   ├── ResourceListPage.stub │   │   │   │   ├── ResourceManagePage.stub │   │   │   │   ├── ResourceManageRelatedRecordsPage.stub │   │   │   │   ├── ResourcePage.stub │   │   │   │   ├── ResourceViewPage.stub │   │   │   │   ├── ThemeCss.stub │   │   │   │   ├── ThemeCssTailwind4.stub │   │   │   │   ├── ThemePostcssConfig.stub │   │   │   │   └── ThemeTailwindConfig.stub │   │   │   ├── tailwind.config.js │   │   │   └── tailwind.config.preset.js │   │   ├── forms │   │   │   ├── composer.json │   │   │   ├── dist │   │   │   │   ├── components │   │   │   │   │   ├── color-picker.js │   │   │   │   │   ├── date-time-picker.js │   │   │   │   │   ├── file-upload.js │   │   │   │   │   ├── key-value.js │   │   │   │   │   ├── markdown-editor.js │   │   │   │   │   ├── rich-editor.css │   │   │   │   │   ├── rich-editor.js │   │   │   │   │   ├── select.js │   │   │   │   │   ├── tags-input.js │   │   │   │   │   └── textarea.js │   │   │   │   ├── index.css │   │   │   │   └── index.js │   │   │   ├── docs │   │   │   │   ├── 01-installation.md │   │   │   │   ├── 02-getting-started.md │   │   │   │   ├── 03-fields │   │   │   │   │   ├── 01-getting-started.md │   │   │   │   │   ├── 02-text-input.md │   │   │   │   │   ├── 03-select.md │   │   │   │   │   ├── 04-checkbox.md │   │   │   │   │   ├── 05-toggle.md │   │   │   │   │   ├── 06-checkbox-list.md │   │   │   │   │   ├── 07-radio.md │   │   │   │   │   ├── 08-date-time-picker.md │   │   │   │   │   ├── 09-file-upload.md │   │   │   │   │   ├── 10-rich-editor.md │   │   │   │   │   ├── 11-markdown-editor.md │   │   │   │   │   ├── 12-repeater.md │   │   │   │   │   ├── 13-builder.md │   │   │   │   │   ├── 14-tags-input.md │   │   │   │   │   ├── 15-textarea.md │   │   │   │   │   ├── 16-key-value.md │   │   │   │   │   ├── 17-color-picker.md │   │   │   │   │   ├── 18-toggle-buttons.md │   │   │   │   │   ├── 19-hidden.md │   │   │   │   │   └── 20-custom.md │   │   │   │   ├── 04-layout │   │   │   │   │   ├── 01-getting-started.md │   │   │   │   │   ├── 02-grid.md │   │   │   │   │   ├── 03-fieldset.md │   │   │   │   │   ├── 04-tabs.md │   │   │   │   │   ├── 05-wizard.md │   │   │   │   │   ├── 06-section.md │   │   │   │   │   ├── 07-split.md │   │   │   │   │   ├── 08-custom.md │   │   │   │   │   └── 08-placeholder.md │   │   │   │   ├── 05-validation.md │   │   │   │   ├── 06-actions.md │   │   │   │   ├── 07-advanced.md │   │   │   │   ├── 08-adding-a-form-to-a-livewire-component.md │   │   │   │   ├── 09-testing.md │   │   │   │   └── 10-upgrade-guide.md │   │   │   ├── resources │   │   │   │   ├── css │   │   │   │   │   └── components │   │   │   │   │   ├── date-time-picker.css │   │   │   │   │   ├── file-upload.css │   │   │   │   │   ├── markdown-editor.css │   │   │   │   │   ├── rich-editor.css │   │   │   │   │   ├── select.css │   │   │   │   │   └── tags-input.css │   │   │   │   ├── js │   │   │   │   │   ├── components │   │   │   │   │   │   ├── color-picker.js │   │   │   │   │   │   ├── date-time-picker.js │   │   │   │   │   │   ├── file-upload.js │   │   │   │   │   │   ├── key-value.js │   │   │   │   │   │   ├── markdown-editor │   │   │   │   │   │   │   └── EasyMDE.js │   │   │   │   │   │   ├── markdown-editor.js │   │   │   │   │   │   ├── rich-editor.js │   │   │   │   │   │   ├── select.js │   │   │   │   │   │   ├── tags-input.js │   │   │   │   │   │   └── textarea.js │   │   │   │   │   └── index.js │   │   │   │   ├── lang │   │   │   │   │   ├── ar │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── az │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── bg │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── bn │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── bs │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── ca │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── ckb │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── cs │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── cy │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── da │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── de │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── el │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── en │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── es │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── eu │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── fa │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── fi │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── fr │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── he │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── hi │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── hr │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── hu │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── hy │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── id │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── it │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── ja │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── ka │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── km │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── ko │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── ku │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── lt │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── lv │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── mn │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── ms │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── my │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── nl │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── no │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── np │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── pl │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── pt_BR │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── pt_PT │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── ro │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── ru │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── sk │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── sq │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── sv │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── sw │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── th │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── tr │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── uk │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── uz │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── vi │   │   │   │   │   │   ├── components.php │   │   │   │   │   │   └── validation.php │   │   │   │   │   ├── zh_CN │   │   │   │   │   │   └── components.php │   │   │   │   │   └── zh_TW │   │   │   │   │   └── components.php │   │   │   │   └── views │   │   │   │   ├── component-container.blade.php │   │   │   │   └── components │   │   │   │   ├── actions │   │   │   │   │   └── action-container.blade.php │   │   │   │   ├── actions.blade.php │   │   │   │   ├── builder │   │   │   │   │   └── block-picker.blade.php │   │   │   │   ├── builder.blade.php │   │   │   │   ├── checkbox-list.blade.php │   │   │   │   ├── checkbox.blade.php │   │   │   │   ├── color-picker.blade.php │   │   │   │   ├── date-time-picker.blade.php │   │   │   │   ├── field-wrapper │   │   │   │   │   ├── error-message.blade.php │   │   │   │   │   ├── helper-text.blade.php │   │   │   │   │   ├── hint.blade.php │   │   │   │   │   ├── index.blade.php │   │   │   │   │   └── label.blade.php │   │   │   │   ├── fieldset.blade.php │   │   │   │   ├── file-upload.blade.php │   │   │   │   ├── grid.blade.php │   │   │   │   ├── group.blade.php │   │   │   │   ├── hidden.blade.php │   │   │   │   ├── key-value.blade.php │   │   │   │   ├── livewire.blade.php │   │   │   │   ├── markdown-editor.blade.php │   │   │   │   ├── placeholder.blade.php │   │   │   │   ├── radio.blade.php │   │   │   │   ├── repeater │   │   │   │   │   ├── index.blade.php │   │   │   │   │   └── simple.blade.php │   │   │   │   ├── rich-editor │   │   │   │   │   └── toolbar │   │   │   │   │   ├── button.blade.php │   │   │   │   │   └── group.blade.php │   │   │   │   ├── rich-editor.blade.php │   │   │   │   ├── section.blade.php │   │   │   │   ├── select.blade.php │   │   │   │   ├── split.blade.php │   │   │   │   ├── tabs │   │   │   │   │   └── tab.blade.php │   │   │   │   ├── tabs.blade.php │   │   │   │   ├── tags-input.blade.php │   │   │   │   ├── text-input.blade.php │   │   │   │   ├── textarea.blade.php │   │   │   │   ├── toggle-buttons │   │   │   │   │   ├── grouped.blade.php │   │   │   │   │   └── index.blade.php │   │   │   │   ├── toggle.blade.php │   │   │   │   ├── wizard │   │   │   │   │   └── step.blade.php │   │   │   │   └── wizard.blade.php │   │   │   ├── src │   │   │   │   ├── Commands │   │   │   │   │   ├── Aliases │   │   │   │   │   │   ├── MakeFieldCommand.php │   │   │   │   │   │   └── MakeLayoutComponentCommand.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   └── CanGenerateForms.php │   │   │   │   │   ├── MakeFieldCommand.php │   │   │   │   │   ├── MakeFormCommand.php │   │   │   │   │   └── MakeLayoutComponentCommand.php │   │   │   │   ├── ComponentContainer.php │   │   │   │   ├── Components │   │   │   │   │   ├── Actions │   │   │   │   │   │   ├── Action.php │   │   │   │   │   │   ├── ActionContainer.php │   │   │   │   │   │   └── Concerns │   │   │   │   │   │   └── BelongsToComponent.php │   │   │   │   │   ├── Actions.php │   │   │   │   │   ├── BaseFileUpload.php │   │   │   │   │   ├── BelongsToManyCheckboxList.php │   │   │   │   │   ├── BelongsToManyMultiSelect.php │   │   │   │   │   ├── BelongsToSelect.php │   │   │   │   │   ├── Builder │   │   │   │   │   │   └── Block.php │   │   │   │   │   ├── Builder.php │   │   │   │   │   ├── Card.php │   │   │   │   │   ├── Checkbox.php │   │   │   │   │   ├── CheckboxList.php │   │   │   │   │   ├── ColorPicker.php │   │   │   │   │   ├── Component.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   ├── BelongsToContainer.php │   │   │   │   │   │   ├── BelongsToModel.php │   │   │   │   │   │   ├── CanAllowHtml.php │   │   │   │   │   │   ├── CanBeAccepted.php │   │   │   │   │   │   ├── CanBeAutocapitalized.php │   │   │   │   │   │   ├── CanBeAutocompleted.php │   │   │   │   │   │   ├── CanBeAutofocused.php │   │   │   │   │   │   ├── CanBeCloned.php │   │   │   │   │   │   ├── CanBeCollapsed.php │   │   │   │   │   │   ├── CanBeCompacted.php │   │   │   │   │   │   ├── CanBeConcealed.php │   │   │   │   │   │   ├── CanBeDisabled.php │   │   │   │   │   │   ├── CanBeHidden.php │   │   │   │   │   │   ├── CanBeInline.php │   │   │   │   │   │   ├── CanBeLengthConstrained.php │   │   │   │   │   │   ├── CanBeMarkedAsRequired.php │   │   │   │   │   │   ├── CanBeNative.php │   │   │   │   │   │   ├── CanBePreloaded.php │   │   │   │   │   │   ├── CanBeReadOnly.php │   │   │   │   │   │   ├── CanBeRepeated.php │   │   │   │   │   │   ├── CanBeSearchable.php │   │   │   │   │   │   ├── CanBeValidated.php │   │   │   │   │   │   ├── CanDisableGrammarly.php │   │   │   │   │   │   ├── CanDisableOptions.php │   │   │   │   │   │   ├── CanDisableOptionsWhenSelectedInSiblingRepeaterItems.php │   │   │   │   │   │   ├── CanFixIndistinctState.php │   │   │   │   │   │   ├── CanGenerateUuids.php │   │   │   │   │   │   ├── CanLimitItemsLength.php │   │   │   │   │   │   ├── CanSelectPlaceholder.php │   │   │   │   │   │   ├── CanSpanColumns.php │   │   │   │   │   │   ├── Cloneable.php │   │   │   │   │   │   ├── EntanglesStateWithSingularRelationship.php │   │   │   │   │   │   ├── HasActions.php │   │   │   │   │   │   ├── HasAffixes.php │   │   │   │   │   │   ├── HasChildComponents.php │   │   │   │   │   │   ├── HasColors.php │   │   │   │   │   │   ├── HasContainerGridLayout.php │   │   │   │   │   │   ├── HasDatalistOptions.php │   │   │   │   │   │   ├── HasDescriptions.php │   │   │   │   │   │   ├── HasExtraAlpineAttributes.php │   │   │   │   │   │   ├── HasExtraAttributes.php │   │   │   │   │   │   ├── HasExtraFieldWrapperAttributes.php │   │   │   │   │   │   ├── HasExtraInputAttributes.php │   │   │   │   │   │   ├── HasExtraItemActions.php │   │   │   │   │   │   ├── HasFieldWrapper.php │   │   │   │   │   │   ├── HasFileAttachments.php │   │   │   │   │   │   ├── HasFooterActions.php │   │   │   │   │   │   ├── HasGridDirection.php │   │   │   │   │   │   ├── HasHeaderActions.php │   │   │   │   │   │   ├── HasHelperText.php │   │   │   │   │   │   ├── HasHint.php │   │   │   │   │   │   ├── HasIcons.php │   │   │   │   │   │   ├── HasId.php │   │   │   │   │   │   ├── HasInlineLabel.php │   │   │   │   │   │   ├── HasInputMode.php │   │   │   │   │   │   ├── HasKey.php │   │   │   │   │   │   ├── HasLabel.php │   │   │   │   │   │   ├── HasLoadingMessage.php │   │   │   │   │   │   ├── HasMaxHeight.php │   │   │   │   │   │   ├── HasMaxWidth.php │   │   │   │   │   │   ├── HasMeta.php │   │   │   │   │   │   ├── HasMinHeight.php │   │   │   │   │   │   ├── HasName.php │   │   │   │   │   │   ├── HasNestedRecursiveValidationRules.php │   │   │   │   │   │   ├── HasOptions.php │   │   │   │   │   │   ├── HasPivotData.php │   │   │   │   │   │   ├── HasPlaceholder.php │   │   │   │   │   │   ├── HasPreview.php │   │   │   │   │   │   ├── HasState.php │   │   │   │   │   │   ├── HasStep.php │   │   │   │   │   │   ├── HasToggleColors.php │   │   │   │   │   │   ├── HasToggleIcons.php │   │   │   │   │   │   ├── HasUploadingMessage.php │   │   │   │   │   │   ├── InteractsWithToolbarButtons.php │   │   │   │   │   │   └── ListensToEvents.php │   │   │   │   │   ├── Contracts │   │   │   │   │   │   ├── CanBeLengthConstrained.php │   │   │   │   │   │   ├── CanConcealComponents.php │   │   │   │   │   │   ├── CanDisableOptions.php │   │   │   │   │   │   ├── CanEntangleWithSingularRelationships.php │   │   │   │   │   │   ├── CanHaveNumericState.php │   │   │   │   │   │   ├── HasAffixActions.php │   │   │   │   │   │   ├── HasExtraItemActions.php │   │   │   │   │   │   ├── HasFileAttachments.php │   │   │   │   │   │   ├── HasFooterActions.php │   │   │   │   │   │   ├── HasHeaderActions.php │   │   │   │   │   │   ├── HasHintActions.php │   │   │   │   │   │   ├── HasNestedRecursiveValidationRules.php │   │   │   │   │   │   └── HasValidationRules.php │   │   │   │   │   ├── DatePicker.php │   │   │   │   │   ├── DateTimePicker.php │   │   │   │   │   ├── Field.php │   │   │   │   │   ├── Fieldset.php │   │   │   │   │   ├── FileUpload.php │   │   │   │   │   ├── Grid.php │   │   │   │   │   ├── Group.php │   │   │   │   │   ├── HasManyRepeater.php │   │   │   │   │   ├── Hidden.php │   │   │   │   │   ├── KeyValue.php │   │   │   │   │   ├── Livewire.php │   │   │   │   │   ├── MarkdownEditor.php │   │   │   │   │   ├── MorphManyRepeater.php │   │   │   │   │   ├── MorphToSelect │   │   │   │   │   │   └── Type.php │   │   │   │   │   ├── MorphToSelect.php │   │   │   │   │   ├── MultiSelect.php │   │   │   │   │   ├── Placeholder.php │   │   │   │   │   ├── Radio.php │   │   │   │   │   ├── RelationshipRepeater.php │   │   │   │   │   ├── Repeater.php │   │   │   │   │   ├── RichEditor.php │   │   │   │   │   ├── Section.php │   │   │   │   │   ├── Select.php │   │   │   │   │   ├── Split.php │   │   │   │   │   ├── Tabs │   │   │   │   │   │   └── Tab.php │   │   │   │   │   ├── Tabs.php │   │   │   │   │   ├── TagsInput.php │   │   │   │   │   ├── TextInput │   │   │   │   │   │   └── Actions │   │   │   │   │   │   ├── HidePasswordAction.php │   │   │   │   │   │   └── ShowPasswordAction.php │   │   │   │   │   ├── TextInput.php │   │   │   │   │   ├── Textarea.php │   │   │   │   │   ├── TimePicker.php │   │   │   │   │   ├── Toggle.php │   │   │   │   │   ├── ToggleButtons.php │   │   │   │   │   ├── View.php │   │   │   │   │   ├── ViewField.php │   │   │   │   │   ├── Wizard │   │   │   │   │   │   └── Step.php │   │   │   │   │   └── Wizard.php │   │   │   │   ├── Concerns │   │   │   │   │   ├── BelongsToLivewire.php │   │   │   │   │   ├── BelongsToModel.php │   │   │   │   │   ├── BelongsToParentComponent.php │   │   │   │   │   ├── CanBeDisabled.php │   │   │   │   │   ├── CanBeHidden.php │   │   │   │   │   ├── CanBeValidated.php │   │   │   │   │   ├── Cloneable.php │   │   │   │   │   ├── HasColumns.php │   │   │   │   │   ├── HasComponents.php │   │   │   │   │   ├── HasFieldWrapper.php │   │   │   │   │   ├── HasFormComponentActions.php │   │   │   │   │   ├── HasInlineLabels.php │   │   │   │   │   ├── HasOperation.php │   │   │   │   │   ├── HasState.php │   │   │   │   │   ├── HasStateBindingModifiers.php │   │   │   │   │   ├── InteractsWithForms.php │   │   │   │   │   ├── ListensToEvents.php │   │   │   │   │   ├── SupportsComponentFileAttachments.php │   │   │   │   │   ├── SupportsFileUploadFields.php │   │   │   │   │   └── SupportsSelectFields.php │   │   │   │   ├── Contracts │   │   │   │   │   └── HasForms.php │   │   │   │   ├── Form.php │   │   │   │   ├── FormsComponent.php │   │   │   │   ├── FormsServiceProvider.php │   │   │   │   ├── Get.php │   │   │   │   ├── Set.php │   │   │   │   ├── Testing │   │   │   │   │   ├── TestsComponentActions.php │   │   │   │   │   └── TestsForms.php │   │   │   │   └── helpers.php │   │   │   └── stubs │   │   │   ├── CreateForm.stub │   │   │   ├── EditForm.stub │   │   │   ├── Field.stub │   │   │   ├── FieldView.stub │   │   │   ├── Form.stub │   │   │   ├── FormView.stub │   │   │   ├── LayoutComponent.stub │   │   │   └── LayoutComponentView.stub │   │   ├── infolists │   │   │   ├── composer.json │   │   │   ├── docs │   │   │   │   ├── 01-installation.md │   │   │   │   ├── 02-getting-started.md │   │   │   │   ├── 03-entries │   │   │   │   │   ├── 01-getting-started.md │   │   │   │   │   ├── 02-text.md │   │   │   │   │   ├── 03-icon.md │   │   │   │   │   ├── 04-image.md │   │   │   │   │   ├── 05-color.md │   │   │   │   │   ├── 06-key-value.md │   │   │   │   │   ├── 07-repeatable.md │   │   │   │   │   └── 08-custom.md │   │   │   │   ├── 04-layout │   │   │   │   │   ├── 01-getting-started.md │   │   │   │   │   ├── 02-grid.md │   │   │   │   │   ├── 03-fieldset.md │   │   │   │   │   ├── 04-tabs.md │   │   │   │   │   ├── 05-section.md │   │   │   │   │   ├── 06-split.md │   │   │   │   │   └── 07-custom.md │   │   │   │   ├── 05-actions.md │   │   │   │   ├── 06-advanced.md │   │   │   │   ├── 07-adding-an-infolist-to-a-livewire-component.md │   │   │   │   └── 08-testing.md │   │   │   ├── resources │   │   │   │   ├── lang │   │   │   │   │   ├── ar │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── az │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── bg │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── bs │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── ca │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── ckb │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── cs │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── da │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── de │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── en │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── es │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── fa │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── fi │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── fr │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── hr │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── hu │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── hy │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── id │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── it │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── ja │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── ka │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── km │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── ko │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── ku │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── lt │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── my │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── nl │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── no │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── np │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── pl │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── pt_BR │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── pt_PT │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── ru │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── sk │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── sv │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── th │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── tr │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── uk │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── uz │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── vi │   │   │   │   │   │   └── components.php │   │   │   │   │   ├── zh_CN │   │   │   │   │   │   └── components.php │   │   │   │   │   └── zh_TW │   │   │   │   │   └── components.php │   │   │   │   └── views │   │   │   │   ├── component-container.blade.php │   │   │   │   └── components │   │   │   │   ├── actions │   │   │   │   │   └── action-container.blade.php │   │   │   │   ├── actions.blade.php │   │   │   │   ├── affixes.blade.php │   │   │   │   ├── color-entry.blade.php │   │   │   │   ├── entries │   │   │   │   │   └── placeholder.blade.php │   │   │   │   ├── entry-wrapper │   │   │   │   │   ├── helper-text.blade.php │   │   │   │   │   ├── hint.blade.php │   │   │   │   │   ├── index.blade.php │   │   │   │   │   └── label.blade.php │   │   │   │   ├── fieldset.blade.php │   │   │   │   ├── grid.blade.php │   │   │   │   ├── group.blade.php │   │   │   │   ├── icon-entry.blade.php │   │   │   │   ├── image-entry.blade.php │   │   │   │   ├── key-value-entry.blade.php │   │   │   │   ├── livewire.blade.php │   │   │   │   ├── repeatable-entry.blade.php │   │   │   │   ├── section.blade.php │   │   │   │   ├── split.blade.php │   │   │   │   ├── tabs │   │   │   │   │   └── tab.blade.php │   │   │   │   ├── tabs.blade.php │   │   │   │   └── text-entry.blade.php │   │   │   ├── src │   │   │   │   ├── Commands │   │   │   │   │   ├── Aliases │   │   │   │   │   │   ├── MakeEntryCommand.php │   │   │   │   │   │   └── MakeLayoutComponentCommand.php │   │   │   │   │   ├── MakeEntryCommand.php │   │   │   │   │   └── MakeLayoutComponentCommand.php │   │   │   │   ├── ComponentContainer.php │   │   │   │   ├── Components │   │   │   │   │   ├── Actions │   │   │   │   │   │   ├── Action.php │   │   │   │   │   │   ├── ActionContainer.php │   │   │   │   │   │   └── Concerns │   │   │   │   │   │   └── BelongsToInfolist.php │   │   │   │   │   ├── Actions.php │   │   │   │   │   ├── Card.php │   │   │   │   │   ├── ColorEntry.php │   │   │   │   │   ├── Component.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   ├── BelongsToContainer.php │   │   │   │   │   │   ├── CanBeCollapsed.php │   │   │   │   │   │   ├── CanBeCompacted.php │   │   │   │   │   │   ├── CanBeHidden.php │   │   │   │   │   │   ├── CanFormatState.php │   │   │   │   │   │   ├── CanGetStateFromRelationships.php │   │   │   │   │   │   ├── CanOpenUrl.php │   │   │   │   │   │   ├── CanSpanColumns.php │   │   │   │   │   │   ├── Cloneable.php │   │   │   │   │   │   ├── EntanglesStateWithSingularRelationship.php │   │   │   │   │   │   ├── HasActions.php │   │   │   │   │   │   ├── HasAffixes.php │   │   │   │   │   │   ├── HasChildComponents.php │   │   │   │   │   │   ├── HasColor.php │   │   │   │   │   │   ├── HasContainerGridLayout.php │   │   │   │   │   │   ├── HasEntryWrapper.php │   │   │   │   │   │   ├── HasExtraEntryWrapperAttributes.php │   │   │   │   │   │   ├── HasFontFamily.php │   │   │   │   │   │   ├── HasFooterActions.php │   │   │   │   │   │   ├── HasHeaderActions.php │   │   │   │   │   │   ├── HasHelperText.php │   │   │   │   │   │   ├── HasHint.php │   │   │   │   │   │   ├── HasIcon.php │   │   │   │   │   │   ├── HasIconColor.php │   │   │   │   │   │   ├── HasId.php │   │   │   │   │   │   ├── HasInlineLabel.php │   │   │   │   │   │   ├── HasKey.php │   │   │   │   │   │   ├── HasLabel.php │   │   │   │   │   │   ├── HasMaxWidth.php │   │   │   │   │   │   ├── HasMeta.php │   │   │   │   │   │   ├── HasName.php │   │   │   │   │   │   ├── HasState.php │   │   │   │   │   │   ├── HasTooltip.php │   │   │   │   │   │   └── HasWeight.php │   │   │   │   │   ├── Contracts │   │   │   │   │   │   ├── HasAffixActions.php │   │   │   │   │   │   ├── HasFooterActions.php │   │   │   │   │   │   ├── HasHeaderActions.php │   │   │   │   │   │   └── HasHintActions.php │   │   │   │   │   ├── Entry.php │   │   │   │   │   ├── Fieldset.php │   │   │   │   │   ├── Grid.php │   │   │   │   │   ├── Group.php │   │   │   │   │   ├── IconEntry │   │   │   │   │   │   └── IconEntrySize.php │   │   │   │   │   ├── IconEntry.php │   │   │   │   │   ├── ImageEntry.php │   │   │   │   │   ├── KeyValueEntry.php │   │   │   │   │   ├── Livewire.php │   │   │   │   │   ├── RepeatableEntry.php │   │   │   │   │   ├── Section.php │   │   │   │   │   ├── Split.php │   │   │   │   │   ├── Tabs │   │   │   │   │   │   └── Tab.php │   │   │   │   │   ├── Tabs.php │   │   │   │   │   ├── TextEntry │   │   │   │   │   │   └── TextEntrySize.php │   │   │   │   │   ├── TextEntry.php │   │   │   │   │   ├── View.php │   │   │   │   │   └── ViewEntry.php │   │   │   │   ├── Concerns │   │   │   │   │   ├── BelongsToLivewire.php │   │   │   │   │   ├── BelongsToParentComponent.php │   │   │   │   │   ├── CanBeHidden.php │   │   │   │   │   ├── Cloneable.php │   │   │   │   │   ├── HasColumns.php │   │   │   │   │   ├── HasComponents.php │   │   │   │   │   ├── HasEntryWrapper.php │   │   │   │   │   ├── HasInlineLabels.php │   │   │   │   │   ├── HasState.php │   │   │   │   │   └── InteractsWithInfolists.php │   │   │   │   ├── Contracts │   │   │   │   │   └── HasInfolists.php │   │   │   │   ├── Infolist.php │   │   │   │   ├── InfolistsServiceProvider.php │   │   │   │   └── Testing │   │   │   │   └── TestsActions.php │   │   │   └── stubs │   │   │   ├── Entry.stub │   │   │   ├── EntryView.stub │   │   │   ├── LayoutComponent.stub │   │   │   └── LayoutComponentView.stub │   │   ├── notifications │   │   │   ├── composer.json │   │   │   ├── dist │   │   │   │   └── index.js │   │   │   ├── docs │   │   │   │   ├── 01-installation.md │   │   │   │   ├── 02-sending-notifications.md │   │   │   │   ├── 03-database-notifications.md │   │   │   │   ├── 04-broadcast-notifications.md │   │   │   │   ├── 05-customizing-notifications.md │   │   │   │   ├── 06-testing.md │   │   │   │   └── 07-upgrade-guide.md │   │   │   ├── resources │   │   │   │   ├── js │   │   │   │   │   ├── Notification.js │   │   │   │   │   ├── components │   │   │   │   │   │   └── notification.js │   │   │   │   │   └── index.js │   │   │   │   ├── lang │   │   │   │   │   ├── ar │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── az │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── bg │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── bn │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── bs │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── ca │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── ckb │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── cs │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── cy │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── da │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── de │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── el │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── en │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── es │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── eu │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── fa │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── fi │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── fr │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── he │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── hr │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── hu │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── hy │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── id │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── it │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── ja │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── ka │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── km │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── ko │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── ku │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── lt │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── lv │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── ms │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── nl │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── no │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── np │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── pl │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── pt_BR │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── pt_PT │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── ro │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── ru │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── sk │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── sl │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── sq │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── sv │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── sw │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── th │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── tr │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── uk │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── uz │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── vi │   │   │   │   │   │   └── database.php │   │   │   │   │   ├── zh_CN │   │   │   │   │   │   └── database.php │   │   │   │   │   └── zh_TW │   │   │   │   │   └── database.php │   │   │   │   └── views │   │   │   │   ├── components │   │   │   │   │   ├── actions.blade.php │   │   │   │   │   ├── body.blade.php │   │   │   │   │   ├── close-button.blade.php │   │   │   │   │   ├── database │   │   │   │   │   │   ├── echo.blade.php │   │   │   │   │   │   ├── modal │   │   │   │   │   │   │   ├── actions.blade.php │   │   │   │   │   │   │   ├── heading.blade.php │   │   │   │   │   │   │   └── index.blade.php │   │   │   │   │   │   └── trigger.blade.php │   │   │   │   │   ├── date.blade.php │   │   │   │   │   ├── echo.blade.php │   │   │   │   │   ├── icon.blade.php │   │   │   │   │   ├── notification.blade.php │   │   │   │   │   └── title.blade.php │   │   │   │   ├── database-notifications.blade.php │   │   │   │   ├── notification.blade.php │   │   │   │   └── notifications.blade.php │   │   │   └── src │   │   │   ├── Actions │   │   │   │   ├── Action.php │   │   │   │   └── ActionGroup.php │   │   │   ├── BroadcastNotification.php │   │   │   ├── Collection.php │   │   │   ├── Concerns │   │   │   │   ├── CanBeInline.php │   │   │   │   ├── HasActions.php │   │   │   │   ├── HasBody.php │   │   │   │   ├── HasDate.php │   │   │   │   ├── HasDuration.php │   │   │   │   ├── HasIcon.php │   │   │   │   ├── HasIconColor.php │   │   │   │   ├── HasId.php │   │   │   │   ├── HasStatus.php │   │   │   │   └── HasTitle.php │   │   │   ├── DatabaseNotification.php │   │   │   ├── Events │   │   │   │   └── DatabaseNotificationsSent.php │   │   │   ├── Livewire │   │   │   │   ├── DatabaseNotifications.php │   │   │   │   └── Notifications.php │   │   │   ├── Notification.php │   │   │   ├── NotificationsServiceProvider.php │   │   │   └── Testing │   │   │   ├── Autoload.php │   │   │   └── TestsNotifications.php │   │   ├── support │   │   │   ├── composer.json │   │   │   ├── config │   │   │   │   └── filament.php │   │   │   ├── dist │   │   │   │   ├── async-alpine.js │   │   │   │   ├── index.css │   │   │   │   └── index.js │   │   │   ├── docs │   │   │   │   ├── 01-overview.md │   │   │   │   ├── 02-assets.md │   │   │   │   ├── 03-icons.md │   │   │   │   ├── 04-colors.md │   │   │   │   ├── 05-style-customization.md │   │   │   │   ├── 06-render-hooks.md │   │   │   │   ├── 07-enums.md │   │   │   │   ├── 08-contributing.md │   │   │   │   ├── 08-plugins │   │   │   │   │   ├── 01-getting-started.md │   │   │   │   │   ├── 02-build-a-panel-plugin.md │   │   │   │   │   └── 03-build-a-standalone-plugin.md │   │   │   │   ├── 09-blade-components │   │   │   │   │   ├── 01-overview.md │   │   │   │   │   ├── 02-avatar.md │   │   │   │   │   ├── 02-badge.md │   │   │   │   │   ├── 02-breadcrumbs.md │   │   │   │   │   ├── 02-button.md │   │   │   │   │   ├── 02-checkbox.md │   │   │   │   │   ├── 02-dropdown.md │   │   │   │   │   ├── 02-fieldset.md │   │   │   │   │   ├── 02-icon-button.md │   │   │   │   │   ├── 02-input-wrapper.md │   │   │   │   │   ├── 02-input.md │   │   │   │   │   ├── 02-link.md │   │   │   │   │   ├── 02-loading-indicator.md │   │   │   │   │   ├── 02-modal.md │   │   │   │   │   ├── 02-pagination.md │   │   │   │   │   ├── 02-section.md │   │   │   │   │   ├── 02-select.md │   │   │   │   │   └── 02-tabs.md │   │   │   │   ├── 09-stubs.md │   │   │   │   └── 10-support.md │   │   │   ├── resources │   │   │   │   ├── css │   │   │   │   │   ├── components │   │   │   │   │   │   └── pagination.css │   │   │   │   │   └── sortable.css │   │   │   │   ├── js │   │   │   │   │   ├── index.js │   │   │   │   │   └── sortable.js │   │   │   │   ├── lang │   │   │   │   │   ├── ar │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── az │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── bg │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── bn │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── bs │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── ca │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── ckb │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── cs │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── cy │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── da │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── de │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── el │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── en │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── es │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── eu │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── fa │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── fi │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── fr │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── he │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── hi │   │   │   │   │   │   └── components │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── hr │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── hu │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── hy │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── id │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── it │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── ja │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── ka │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── km │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── ko │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── ku │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── lt │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── lv │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── mn │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── ms │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── nl │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── no │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── np │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── pl │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── pt_BR │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── pt_PT │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── ro │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── ru │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── sk │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── sq │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── sv │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── sw │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── th │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── tr │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── uk │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── uz │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── vi │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   ├── zh_CN │   │   │   │   │   │   └── components │   │   │   │   │   │   ├── button.php │   │   │   │   │   │   ├── copyable.php │   │   │   │   │   │   ├── modal.php │   │   │   │   │   │   └── pagination.php │   │   │   │   │   └── zh_TW │   │   │   │   │   └── components │   │   │   │   │   ├── button.php │   │   │   │   │   ├── copyable.php │   │   │   │   │   ├── modal.php │   │   │   │   │   └── pagination.php │   │   │   │   └── views │   │   │   │   ├── assets.blade.php │   │   │   │   └── components │   │   │   │   ├── actions.blade.php │   │   │   │   ├── avatar.blade.php │   │   │   │   ├── badge.blade.php │   │   │   │   ├── breadcrumbs.blade.php │   │   │   │   ├── button │   │   │   │   │   ├── group.blade.php │   │   │   │   │   └── index.blade.php │   │   │   │   ├── card.blade.php │   │   │   │   ├── dropdown │   │   │   │   │   ├── header.blade.php │   │   │   │   │   ├── index.blade.php │   │   │   │   │   └── list │   │   │   │   │   ├── index.blade.php │   │   │   │   │   └── item.blade.php │   │   │   │   ├── fieldset.blade.php │   │   │   │   ├── grid │   │   │   │   │   ├── column.blade.php │   │   │   │   │   └── index.blade.php │   │   │   │   ├── icon-button.blade.php │   │   │   │   ├── icon.blade.php │   │   │   │   ├── input │   │   │   │   │   ├── checkbox.blade.php │   │   │   │   │   ├── index.blade.php │   │   │   │   │   ├── radio.blade.php │   │   │   │   │   ├── select.blade.php │   │   │   │   │   └── wrapper.blade.php │   │   │   │   ├── link.blade.php │   │   │   │   ├── loading-indicator.blade.php │   │   │   │   ├── loading-section.blade.php │   │   │   │   ├── modal │   │   │   │   │   ├── description.blade.php │   │   │   │   │   ├── heading.blade.php │   │   │   │   │   └── index.blade.php │   │   │   │   ├── pagination │   │   │   │   │   ├── index.blade.php │   │   │   │   │   └── item.blade.php │   │   │   │   ├── section │   │   │   │   │   ├── description.blade.php │   │   │   │   │   ├── heading.blade.php │   │   │   │   │   └── index.blade.php │   │   │   │   └── tabs │   │   │   │   ├── index.blade.php │   │   │   │   └── item.blade.php │   │   │   ├── src │   │   │   │   ├── Assets │   │   │   │   │   ├── AlpineComponent.php │   │   │   │   │   ├── Asset.php │   │   │   │   │   ├── AssetManager.php │   │   │   │   │   ├── Css.php │   │   │   │   │   ├── Js.php │   │   │   │   │   └── Theme.php │   │   │   │   ├── ChunkIterator.php │   │   │   │   ├── Colors │   │   │   │   │   ├── Color.php │   │   │   │   │   └── ColorManager.php │   │   │   │   ├── Commands │   │   │   │   │   ├── AboutCommand.php │   │   │   │   │   ├── Aliases │   │   │   │   │   │   └── MakeIssueCommand.php │   │   │   │   │   ├── AssetsCommand.php │   │   │   │   │   ├── CheckTranslationsCommand.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   ├── CanCachePanelComponents.php │   │   │   │   │   │   ├── CanGeneratePanels.php │   │   │   │   │   │   ├── CanIndentStrings.php │   │   │   │   │   │   ├── CanManipulateFiles.php │   │   │   │   │   │   ├── CanReadModelSchemas.php │   │   │   │   │   │   └── CanValidateInput.php │   │   │   │   │   ├── InstallCommand.php │   │   │   │   │   ├── MakeIssueCommand.php │   │   │   │   │   ├── OptimizeClearCommand.php │   │   │   │   │   ├── OptimizeCommand.php │   │   │   │   │   └── UpgradeCommand.php │   │   │   │   ├── Components │   │   │   │   │   ├── Component.php │   │   │   │   │   ├── ComponentManager.php │   │   │   │   │   ├── Contracts │   │   │   │   │   │   └── ScopedComponentManager.php │   │   │   │   │   └── ViewComponent.php │   │   │   │   ├── Concerns │   │   │   │   │   ├── CanAggregateRelatedModels.php │   │   │   │   │   ├── CanBeContained.php │   │   │   │   │   ├── CanBeCopied.php │   │   │   │   │   ├── CanBeLazy.php │   │   │   │   │   ├── CanGrow.php │   │   │   │   │   ├── CanPersistTab.php │   │   │   │   │   ├── Configurable.php │   │   │   │   │   ├── EvaluatesClosures.php │   │   │   │   │   ├── HasAlignment.php │   │   │   │   │   ├── HasBadge.php │   │   │   │   │   ├── HasCellState.php │   │   │   │   │   ├── HasColor.php │   │   │   │   │   ├── HasDescription.php │   │   │   │   │   ├── HasExtraAlpineAttributes.php │   │   │   │   │   ├── HasExtraAttributes.php │   │   │   │   │   ├── HasExtraSidebarAttributes.php │   │   │   │   │   ├── HasExtraTopbarAttributes.php │   │   │   │   │   ├── HasFooterActionsAlignment.php │   │   │   │   │   ├── HasFromBreakpoint.php │   │   │   │   │   ├── HasHeading.php │   │   │   │   │   ├── HasIcon.php │   │   │   │   │   ├── HasIconColor.php │   │   │   │   │   ├── HasLineClamp.php │   │   │   │   │   ├── HasPlaceholder.php │   │   │   │   │   ├── HasReorderAnimationDuration.php │   │   │   │   │   ├── HasVerticalAlignment.php │   │   │   │   │   ├── Macroable.php │   │   │   │   │   └── ResolvesDynamicLivewireProperties.php │   │   │   │   ├── Contracts │   │   │   │   │   ├── HasColor.php │   │   │   │   │   ├── HasDescription.php │   │   │   │   │   ├── HasIcon.php │   │   │   │   │   ├── HasLabel.php │   │   │   │   │   └── TranslatableContentDriver.php │   │   │   │   ├── Enums │   │   │   │   │   ├── ActionSize.php │   │   │   │   │   ├── Alignment.php │   │   │   │   │   ├── ArgumentValue.php │   │   │   │   │   ├── FontFamily.php │   │   │   │   │   ├── FontWeight.php │   │   │   │   │   ├── IconPosition.php │   │   │   │   │   ├── IconSize.php │   │   │   │   │   ├── MaxWidth.php │   │   │   │   │   ├── Platform.php │   │   │   │   │   └── VerticalAlignment.php │   │   │   │   ├── Events │   │   │   │   │   └── FilamentUpgraded.php │   │   │   │   ├── Exceptions │   │   │   │   │   ├── Cancel.php │   │   │   │   │   └── Halt.php │   │   │   │   ├── Facades │   │   │   │   │   ├── FilamentAsset.php │   │   │   │   │   ├── FilamentColor.php │   │   │   │   │   ├── FilamentIcon.php │   │   │   │   │   └── FilamentView.php │   │   │   │   ├── Icons │   │   │   │   │   └── IconManager.php │   │   │   │   ├── Markdown.php │   │   │   │   ├── RawJs.php │   │   │   │   ├── Services │   │   │   │   │   └── RelationshipJoiner.php │   │   │   │   ├── SupportServiceProvider.php │   │   │   │   ├── View │   │   │   │   │   ├── Components │   │   │   │   │   │   └── Modal.php │   │   │   │   │   └── ViewManager.php │   │   │   │   └── helpers.php │   │   │   ├── stubs │   │   │   │   ├── DefaultPanelProvider.stub │   │   │   │   ├── PanelProvider.stub │   │   │   │   └── scaffolding │   │   │   │   ├── postcss.config.js │   │   │   │   ├── resources │   │   │   │   │   ├── css │   │   │   │   │   │   └── app.css │   │   │   │   │   ├── js │   │   │   │   │   │   └── app.js │   │   │   │   │   └── views │   │   │   │   │   └── components │   │   │   │   │   └── layouts │   │   │   │   │   └── app.blade.php │   │   │   │   ├── tailwind.config.js │   │   │   │   └── vite.config.js │   │   │   ├── tailwind.config.js │   │   │   └── tailwind.config.preset.js │   │   ├── tables │   │   │   ├── composer.json │   │   │   ├── dist │   │   │   │   ├── components │   │   │   │   │   └── table.js │   │   │   │   └── index.js │   │   │   ├── docs │   │   │   │   ├── 01-installation.md │   │   │   │   ├── 02-getting-started.md │   │   │   │   ├── 03-columns │   │   │   │   │   ├── 01-getting-started.md │   │   │   │   │   ├── 02-text.md │   │   │   │   │   ├── 03-icon.md │   │   │   │   │   ├── 04-image.md │   │   │   │   │   ├── 05-color.md │   │   │   │   │   ├── 06-select.md │   │   │   │   │   ├── 07-toggle.md │   │   │   │   │   ├── 08-text-input.md │   │   │   │   │   ├── 09-checkbox.md │   │   │   │   │   ├── 10-custom.md │   │   │   │   │   ├── 11-relationships.md │   │   │   │   │   └── 12-advanced.md │   │   │   │   ├── 04-filters │   │   │   │   │   ├── 01-getting-started.md │   │   │   │   │   ├── 02-select.md │   │   │   │   │   ├── 03-ternary.md │   │   │   │   │   ├── 04-query-builder.md │   │   │   │   │   ├── 05-custom.md │   │   │   │   │   └── 06-layout.md │   │   │   │   ├── 05-actions.md │   │   │   │   ├── 06-layout.md │   │   │   │   ├── 07-summaries.md │   │   │   │   ├── 08-grouping.md │   │   │   │   ├── 09-empty-state.md │   │   │   │   ├── 10-advanced.md │   │   │   │   ├── 11-adding-a-table-to-a-livewire-component.md │   │   │   │   ├── 12-testing.md │   │   │   │   └── 13-upgrade-guide.md │   │   │   ├── resources │   │   │   │   ├── js │   │   │   │   │   ├── components │   │   │   │   │   │   └── table.js │   │   │   │   │   └── index.js │   │   │   │   ├── lang │   │   │   │   │   ├── ar │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── az │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── bg │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── bn │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── bs │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── ca │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── ckb │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── cs │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── cy │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── da │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── de │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── el │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── en │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── es │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── eu │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── fa │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── fi │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── fr │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── he │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── hi │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── hr │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── hu │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── hy │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── id │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── it │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── ja │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── ka │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── km │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── ko │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── ku │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── lt │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── lv │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── mn │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── ms │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── nl │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── no │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── np │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── pl │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── pt_BR │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── pt_PT │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── ro │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── ru │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── sk │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── sl │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── sq │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── sv │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── sw │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── th │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── tr │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── uk │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── uz │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── vi │   │   │   │   │   │   ├── filters │   │   │   │   │   │   │   └── query-builder.php │   │   │   │   │   │   └── table.php │   │   │   │   │   ├── zh_CN │   │   │   │   │   │   └── table.php │   │   │   │   │   └── zh_TW │   │   │   │   │   └── table.php │   │   │   │   └── views │   │   │   │   ├── columns │   │   │   │   │   ├── checkbox-column.blade.php │   │   │   │   │   ├── color-column.blade.php │   │   │   │   │   ├── icon-column.blade.php │   │   │   │   │   ├── image-column.blade.php │   │   │   │   │   ├── layout │   │   │   │   │   │   ├── grid.blade.php │   │   │   │   │   │   ├── panel.blade.php │   │   │   │   │   │   ├── split.blade.php │   │   │   │   │   │   └── stack.blade.php │   │   │   │   │   ├── select-column.blade.php │   │   │   │   │   ├── summaries │   │   │   │   │   │   ├── icon-count.blade.php │   │   │   │   │   │   ├── range.blade.php │   │   │   │   │   │   ├── text.blade.php │   │   │   │   │   │   └── values.blade.php │   │   │   │   │   ├── text-column.blade.php │   │   │   │   │   ├── text-input-column.blade.php │   │   │   │   │   └── toggle-column.blade.php │   │   │   │   ├── components │   │   │   │   │   ├── actions │   │   │   │   │   │   └── cell.blade.php │   │   │   │   │   ├── actions.blade.php │   │   │   │   │   ├── cell.blade.php │   │   │   │   │   ├── column-toggle │   │   │   │   │   │   └── dropdown.blade.php │   │   │   │   │   ├── columns │   │   │   │   │   │   ├── column.blade.php │   │   │   │   │   │   ├── layout.blade.php │   │   │   │   │   │   └── placeholder.blade.php │   │   │   │   │   ├── container.blade.php │   │   │   │   │   ├── empty-state │   │   │   │   │   │   ├── description.blade.php │   │   │   │   │   │   ├── heading.blade.php │   │   │   │   │   │   └── index.blade.php │   │   │   │   │   ├── filters │   │   │   │   │   │   ├── dialog.blade.php │   │   │   │   │   │   ├── index.blade.php │   │   │   │   │   │   └── indicators.blade.php │   │   │   │   │   ├── group │   │   │   │   │   │   └── header.blade.php │   │   │   │   │   ├── groups.blade.php │   │   │   │   │   ├── header-cell.blade.php │   │   │   │   │   ├── header.blade.php │   │   │   │   │   ├── reorder │   │   │   │   │   │   ├── cell.blade.php │   │   │   │   │   │   ├── handle.blade.php │   │   │   │   │   │   └── indicator.blade.php │   │   │   │   │   ├── row.blade.php │   │   │   │   │   ├── search-field.blade.php │   │   │   │   │   ├── selection │   │   │   │   │   │   ├── cell.blade.php │   │   │   │   │   │   ├── checkbox.blade.php │   │   │   │   │   │   ├── group-cell.blade.php │   │   │   │   │   │   ├── group-checkbox.blade.php │   │   │   │   │   │   └── indicator.blade.php │   │   │   │   │   ├── summary │   │   │   │   │   │   ├── header-cell.blade.php │   │   │   │   │   │   ├── index.blade.php │   │   │   │   │   │   └── row.blade.php │   │   │   │   │   └── table.blade.php │   │   │   │   └── index.blade.php │   │   │   ├── src │   │   │   │   ├── Actions │   │   │   │   │   ├── Action.php │   │   │   │   │   ├── ActionGroup.php │   │   │   │   │   ├── AssociateAction.php │   │   │   │   │   ├── AttachAction.php │   │   │   │   │   ├── BulkAction.php │   │   │   │   │   ├── BulkActionGroup.php │   │   │   │   │   ├── ButtonAction.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   ├── BelongsToTable.php │   │   │   │   │   │   ├── CanAccessSelectedRecords.php │   │   │   │   │   │   ├── CanDeselectRecordsAfterCompletion.php │   │   │   │   │   │   ├── CanFetchSelectedRecords.php │   │   │   │   │   │   └── InteractsWithRecords.php │   │   │   │   │   ├── Contracts │   │   │   │   │   │   └── HasTable.php │   │   │   │   │   ├── CreateAction.php │   │   │   │   │   ├── DeleteAction.php │   │   │   │   │   ├── DeleteBulkAction.php │   │   │   │   │   ├── DetachAction.php │   │   │   │   │   ├── DetachBulkAction.php │   │   │   │   │   ├── DissociateAction.php │   │   │   │   │   ├── DissociateBulkAction.php │   │   │   │   │   ├── EditAction.php │   │   │   │   │   ├── ExportAction.php │   │   │   │   │   ├── ExportBulkAction.php │   │   │   │   │   ├── ForceDeleteAction.php │   │   │   │   │   ├── ForceDeleteBulkAction.php │   │   │   │   │   ├── HeaderActionsPosition.php │   │   │   │   │   ├── IconButtonAction.php │   │   │   │   │   ├── ImportAction.php │   │   │   │   │   ├── LinkAction.php │   │   │   │   │   ├── Modal │   │   │   │   │   │   └── Actions │   │   │   │   │   │   ├── Action.php │   │   │   │   │   │   └── ButtonAction.php │   │   │   │   │   ├── ReplicateAction.php │   │   │   │   │   ├── RestoreAction.php │   │   │   │   │   ├── RestoreBulkAction.php │   │   │   │   │   ├── SelectAction.php │   │   │   │   │   └── ViewAction.php │   │   │   │   ├── Columns │   │   │   │   │   ├── BadgeColumn.php │   │   │   │   │   ├── BooleanColumn.php │   │   │   │   │   ├── CheckboxColumn.php │   │   │   │   │   ├── ColorColumn.php │   │   │   │   │   ├── Column.php │   │   │   │   │   ├── ColumnGroup.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   ├── BelongsToGroup.php │   │   │   │   │   │   ├── BelongsToLayout.php │   │   │   │   │   │   ├── BelongsToTable.php │   │   │   │   │   │   ├── CanBeCopied.php │   │   │   │   │   │   ├── CanBeDisabled.php │   │   │   │   │   │   ├── CanBeHidden.php │   │   │   │   │   │   ├── CanBeHiddenResponsively.php │   │   │   │   │   │   ├── CanBeInline.php │   │   │   │   │   │   ├── CanBeSearchable.php │   │   │   │   │   │   ├── CanBeSortable.php │   │   │   │   │   │   ├── CanBeSummarized.php │   │   │   │   │   │   ├── CanBeToggled.php │   │   │   │   │   │   ├── CanBeValidated.php │   │   │   │   │   │   ├── CanCallAction.php │   │   │   │   │   │   ├── CanFormatState.php │   │   │   │   │   │   ├── CanOpenUrl.php │   │   │   │   │   │   ├── CanSpanColumns.php │   │   │   │   │   │   ├── CanUpdateState.php │   │   │   │   │   │   ├── CanWrap.php │   │   │   │   │   │   ├── CanWrapHeader.php │   │   │   │   │   │   ├── HasColor.php │   │   │   │   │   │   ├── HasDescription.php │   │   │   │   │   │   ├── HasExtraAttributes.php │   │   │   │   │   │   ├── HasExtraCellAttributes.php │   │   │   │   │   │   ├── HasExtraHeaderAttributes.php │   │   │   │   │   │   ├── HasFontFamily.php │   │   │   │   │   │   ├── HasIcon.php │   │   │   │   │   │   ├── HasIconColor.php │   │   │   │   │   │   ├── HasLabel.php │   │   │   │   │   │   ├── HasName.php │   │   │   │   │   │   ├── HasRecord.php │   │   │   │   │   │   ├── HasRowLoopObject.php │   │   │   │   │   │   ├── HasSpace.php │   │   │   │   │   │   ├── HasTooltip.php │   │   │   │   │   │   ├── HasWeight.php │   │   │   │   │   │   ├── HasWidth.php │   │   │   │   │   │   └── InteractsWithTableQuery.php │   │   │   │   │   ├── Contracts │   │   │   │   │   │   └── Editable.php │   │   │   │   │   ├── IconColumn │   │   │   │   │   │   └── IconColumnSize.php │   │   │   │   │   ├── IconColumn.php │   │   │   │   │   ├── ImageColumn.php │   │   │   │   │   ├── Layout │   │   │   │   │   │   ├── Component.php │   │   │   │   │   │   ├── Grid.php │   │   │   │   │   │   ├── Panel.php │   │   │   │   │   │   ├── Split.php │   │   │   │   │   │   ├── Stack.php │   │   │   │   │   │   └── View.php │   │   │   │   │   ├── SelectColumn.php │   │   │   │   │   ├── Summarizers │   │   │   │   │   │   ├── Average.php │   │   │   │   │   │   ├── Concerns │   │   │   │   │   │   │   ├── BelongsToColumn.php │   │   │   │   │   │   │   ├── CanBeHidden.php │   │   │   │   │   │   │   ├── CanFormatState.php │   │   │   │   │   │   │   ├── HasLabel.php │   │   │   │   │   │   │   └── InteractsWithTableQuery.php │   │   │   │   │   │   ├── Count.php │   │   │   │   │   │   ├── Range.php │   │   │   │   │   │   ├── Sum.php │   │   │   │   │   │   ├── Summarizer.php │   │   │   │   │   │   └── Values.php │   │   │   │   │   ├── TagsColumn.php │   │   │   │   │   ├── TextColumn │   │   │   │   │   │   └── TextColumnSize.php │   │   │   │   │   ├── TextColumn.php │   │   │   │   │   ├── TextInputColumn.php │   │   │   │   │   ├── ToggleColumn.php │   │   │   │   │   └── ViewColumn.php │   │   │   │   ├── Commands │   │   │   │   │   ├── Aliases │   │   │   │   │   │   └── MakeColumnCommand.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   └── CanGenerateTables.php │   │   │   │   │   ├── MakeColumnCommand.php │   │   │   │   │   └── MakeTableCommand.php │   │   │   │   ├── Concerns │   │   │   │   │   ├── CanBeStriped.php │   │   │   │   │   ├── CanDeferLoading.php │   │   │   │   │   ├── CanGroupRecords.php │   │   │   │   │   ├── CanPaginateRecords.php │   │   │   │   │   ├── CanPollRecords.php │   │   │   │   │   ├── CanReorderRecords.php │   │   │   │   │   ├── CanSearchRecords.php │   │   │   │   │   ├── CanSortRecords.php │   │   │   │   │   ├── CanSummarizeRecords.php │   │   │   │   │   ├── CanToggleColumns.php │   │   │   │   │   ├── HasActions.php │   │   │   │   │   ├── HasBulkActions.php │   │   │   │   │   ├── HasColumns.php │   │   │   │   │   ├── HasContent.php │   │   │   │   │   ├── HasEmptyState.php │   │   │   │   │   ├── HasFilters.php │   │   │   │   │   ├── HasHeader.php │   │   │   │   │   ├── HasRecordAction.php │   │   │   │   │   ├── HasRecordClasses.php │   │   │   │   │   ├── HasRecordUrl.php │   │   │   │   │   ├── HasRecords.php │   │   │   │   │   └── InteractsWithTable.php │   │   │   │   ├── Contracts │   │   │   │   │   └── HasTable.php │   │   │   │   ├── Enums │   │   │   │   │   ├── ActionsPosition.php │   │   │   │   │   ├── FiltersLayout.php │   │   │   │   │   └── RecordCheckboxPosition.php │   │   │   │   ├── Filters │   │   │   │   │   ├── BaseFilter.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   ├── BelongsToTable.php │   │   │   │   │   │   ├── CanBeHidden.php │   │   │   │   │   │   ├── CanResetState.php │   │   │   │   │   │   ├── CanSpanColumns.php │   │   │   │   │   │   ├── HasColumns.php │   │   │   │   │   │   ├── HasDefaultState.php │   │   │   │   │   │   ├── HasFormSchema.php │   │   │   │   │   │   ├── HasIndicators.php │   │   │   │   │   │   ├── HasLabel.php │   │   │   │   │   │   ├── HasName.php │   │   │   │   │   │   ├── HasOptions.php │   │   │   │   │   │   ├── HasPlaceholder.php │   │   │   │   │   │   ├── HasRelationship.php │   │   │   │   │   │   └── InteractsWithTableQuery.php │   │   │   │   │   ├── Filter.php │   │   │   │   │   ├── Indicator.php │   │   │   │   │   ├── MultiSelectFilter.php │   │   │   │   │   ├── QueryBuilder │   │   │   │   │   │   ├── Concerns │   │   │   │   │   │   │   └── HasConstraints.php │   │   │   │   │   │   ├── Constraints │   │   │   │   │   │   │   ├── BooleanConstraint │   │   │   │   │   │   │   │   └── Operators │   │   │   │   │   │   │   │   └── IsTrueOperator.php │   │   │   │   │   │   │   ├── BooleanConstraint.php │   │   │   │   │   │   │   ├── Concerns │   │   │   │   │   │   │   │   ├── CanBeNullable.php │   │   │   │   │   │   │   │   ├── HasLabel.php │   │   │   │   │   │   │   │   ├── HasName.php │   │   │   │   │   │   │   │   └── HasOperators.php │   │   │   │   │   │   │   ├── Constraint.php │   │   │   │   │   │   │   ├── DateConstraint │   │   │   │   │   │   │   │   └── Operators │   │   │   │   │   │   │   │   ├── IsAfterOperator.php │   │   │   │   │   │   │   │   ├── IsBeforeOperator.php │   │   │   │   │   │   │   │   ├── IsDateOperator.php │   │   │   │   │   │   │   │   ├── IsMonthOperator.php │   │   │   │   │   │   │   │   └── IsYearOperator.php │   │   │   │   │   │   │   ├── DateConstraint.php │   │   │   │   │   │   │   ├── NumberConstraint │   │   │   │   │   │   │   │   └── Operators │   │   │   │   │   │   │   │   ├── Concerns │   │   │   │   │   │   │   │   │   └── CanAggregateRelationships.php │   │   │   │   │   │   │   │   ├── EqualsOperator.php │   │   │   │   │   │   │   │   ├── IsMaxOperator.php │   │   │   │   │   │   │   │   └── IsMinOperator.php │   │   │   │   │   │   │   ├── NumberConstraint.php │   │   │   │   │   │   │   ├── Operators │   │   │   │   │   │   │   │   ├── Concerns │   │   │   │   │   │   │   │   │   └── CanBeHidden.php │   │   │   │   │   │   │   │   ├── IsFilledOperator.php │   │   │   │   │   │   │   │   └── Operator.php │   │   │   │   │   │   │   ├── RelationshipConstraint │   │   │   │   │   │   │   │   └── Operators │   │   │   │   │   │   │   │   ├── EqualsOperator.php │   │   │   │   │   │   │   │   ├── HasMaxOperator.php │   │   │   │   │   │   │   │   ├── HasMinOperator.php │   │   │   │   │   │   │   │   ├── IsEmptyOperator.php │   │   │   │   │   │   │   │   └── IsRelatedToOperator.php │   │   │   │   │   │   │   ├── RelationshipConstraint.php │   │   │   │   │   │   │   ├── SelectConstraint │   │   │   │   │   │   │   │   └── Operators │   │   │   │   │   │   │   │   └── IsOperator.php │   │   │   │   │   │   │   ├── SelectConstraint.php │   │   │   │   │   │   │   ├── TextConstraint │   │   │   │   │   │   │   │   └── Operators │   │   │   │   │   │   │   │   ├── ContainsOperator.php │   │   │   │   │   │   │   │   ├── EndsWithOperator.php │   │   │   │   │   │   │   │   ├── EqualsOperator.php │   │   │   │   │   │   │   │   └── StartsWithOperator.php │   │   │   │   │   │   │   └── TextConstraint.php │   │   │   │   │   │   └── Forms │   │   │   │   │   │   └── Components │   │   │   │   │   │   └── RuleBuilder.php │   │   │   │   │   ├── QueryBuilder.php │   │   │   │   │   ├── SelectFilter.php │   │   │   │   │   ├── TernaryFilter.php │   │   │   │   │   └── TrashedFilter.php │   │   │   │   ├── Grouping │   │   │   │   │   ├── Concerns │   │   │   │   │   │   └── BelongsToTable.php │   │   │   │   │   └── Group.php │   │   │   │   ├── Table │   │   │   │   │   └── Concerns │   │   │   │   │   ├── BelongsToLivewire.php │   │   │   │   │   ├── CanBeStriped.php │   │   │   │   │   ├── CanDeferLoading.php │   │   │   │   │   ├── CanGroupRecords.php │   │   │   │   │   ├── CanPaginateRecords.php │   │   │   │   │   ├── CanPollRecords.php │   │   │   │   │   ├── CanReorderRecords.php │   │   │   │   │   ├── CanSearchRecords.php │   │   │   │   │   ├── CanSortRecords.php │   │   │   │   │   ├── CanSummarizeRecords.php │   │   │   │   │   ├── CanToggleColumns.php │   │   │   │   │   ├── HasActions.php │   │   │   │   │   ├── HasBulkActions.php │   │   │   │   │   ├── HasColumns.php │   │   │   │   │   ├── HasContent.php │   │   │   │   │   ├── HasEmptyState.php │   │   │   │   │   ├── HasFilterIndicators.php │   │   │   │   │   ├── HasFilters.php │   │   │   │   │   ├── HasHeader.php │   │   │   │   │   ├── HasHeaderActions.php │   │   │   │   │   ├── HasQuery.php │   │   │   │   │   ├── HasQueryStringIdentifier.php │   │   │   │   │   ├── HasRecordAction.php │   │   │   │   │   ├── HasRecordClasses.php │   │   │   │   │   ├── HasRecordUrl.php │   │   │   │   │   └── HasRecords.php │   │   │   │   ├── Table.php │   │   │   │   ├── TableComponent.php │   │   │   │   ├── TablesServiceProvider.php │   │   │   │   ├── Testing │   │   │   │   │   ├── TestsActions.php │   │   │   │   │   ├── TestsBulkActions.php │   │   │   │   │   ├── TestsColumns.php │   │   │   │   │   ├── TestsFilters.php │   │   │   │   │   ├── TestsRecords.php │   │   │   │   │   └── TestsSummaries.php │   │   │   │   └── View │   │   │   │   └── TablesRenderHook.php │   │   │   └── stubs │   │   │   ├── Column.stub │   │   │   ├── ColumnView.stub │   │   │   ├── Table.stub │   │   │   └── TableView.stub │   │   └── widgets │   │   ├── composer.json │   │   ├── dist │   │   │   └── components │   │   │   ├── chart.js │   │   │   └── stats-overview │   │   │   └── stat │   │   │   └── chart.js │   │   ├── docs │   │   │   ├── 01-installation.md │   │   │   ├── 02-stats-overview.md │   │   │   ├── 03-charts.md │   │   │   ├── 04-tables.md │   │   │   └── 05-adding-a-widget-to-a-blade-view.md │   │   ├── resources │   │   │   ├── js │   │   │   │   └── components │   │   │   │   ├── chart.js │   │   │   │   └── stats-overview │   │   │   │   └── stat │   │   │   │   └── chart.js │   │   │   └── views │   │   │   ├── chart-widget.blade.php │   │   │   ├── components │   │   │   │   ├── widget.blade.php │   │   │   │   └── widgets.blade.php │   │   │   ├── stats-overview-widget │   │   │   │   └── stat.blade.php │   │   │   ├── stats-overview-widget.blade.php │   │   │   └── table-widget.blade.php │   │   ├── src │   │   │   ├── BarChartWidget.php │   │   │   ├── BubbleChartWidget.php │   │   │   ├── ChartWidget.php │   │   │   ├── Commands │   │   │   │   ├── Aliases │   │   │   │   │   └── MakeWidgetCommand.php │   │   │   │   └── MakeWidgetCommand.php │   │   │   ├── Concerns │   │   │   │   └── CanPoll.php │   │   │   ├── DoughnutChartWidget.php │   │   │   ├── LineChartWidget.php │   │   │   ├── PieChartWidget.php │   │   │   ├── PolarAreaChartWidget.php │   │   │   ├── RadarChartWidget.php │   │   │   ├── ScatterChartWidget.php │   │   │   ├── StatsOverviewWidget │   │   │   │   ├── Card.php │   │   │   │   └── Stat.php │   │   │   ├── StatsOverviewWidget.php │   │   │   ├── TableWidget.php │   │   │   ├── View │   │   │   │   └── WidgetsRenderHook.php │   │   │   ├── Widget.php │   │   │   ├── WidgetConfiguration.php │   │   │   └── WidgetsServiceProvider.php │   │   └── stubs │   │   ├── ChartWidget.stub │   │   ├── StatsOverviewWidget.stub │   │   ├── TableWidget.stub │   │   ├── Widget.stub │   │   └── WidgetView.stub │   ├── filp │   │   └── whoops │   │   ├── CHANGELOG.md │   │   ├── LICENSE.md │   │   ├── SECURITY.md │   │   ├── composer.json │   │   └── src │   │   └── Whoops │   │   ├── Exception │   │   │   ├── ErrorException.php │   │   │   ├── Formatter.php │   │   │   ├── Frame.php │   │   │   ├── FrameCollection.php │   │   │   └── Inspector.php │   │   ├── Handler │   │   │   ├── CallbackHandler.php │   │   │   ├── Handler.php │   │   │   ├── HandlerInterface.php │   │   │   ├── JsonResponseHandler.php │   │   │   ├── PlainTextHandler.php │   │   │   ├── PrettyPageHandler.php │   │   │   └── XmlResponseHandler.php │   │   ├── Inspector │   │   │   ├── InspectorFactory.php │   │   │   ├── InspectorFactoryInterface.php │   │   │   └── InspectorInterface.php │   │   ├── Resources │   │   │   ├── css │   │   │   │   ├── prism.css │   │   │   │   └── whoops.base.css │   │   │   ├── js │   │   │   │   ├── clipboard.min.js │   │   │   │   ├── prism.js │   │   │   │   ├── whoops.base.js │   │   │   │   └── zepto.min.js │   │   │   └── views │   │   │   ├── env_details.html.php │   │   │   ├── frame_code.html.php │   │   │   ├── frame_list.html.php │   │   │   ├── frames_container.html.php │   │   │   ├── frames_description.html.php │   │   │   ├── header.html.php │   │   │   ├── header_outer.html.php │   │   │   ├── layout.html.php │   │   │   ├── panel_details.html.php │   │   │   ├── panel_details_outer.html.php │   │   │   ├── panel_left.html.php │   │   │   └── panel_left_outer.html.php │   │   ├── Run.php │   │   ├── RunInterface.php │   │   └── Util │   │   ├── HtmlDumperOutput.php │   │   ├── Misc.php │   │   ├── SystemFacade.php │   │   └── TemplateHelper.php │   ├── fruitcake │   │   └── php-cors │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   ├── CorsService.php │   │   └── Exceptions │   │   └── InvalidOptionException.php │   ├── graham-campbell │   │   └── result-type │   │   ├── LICENSE │   │   ├── composer.json │   │   └── src │   │   ├── Error.php │   │   ├── Result.php │   │   └── Success.php │   ├── guzzlehttp │   │   ├── guzzle │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── UPGRADING.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── BodySummarizer.php │   │   │   ├── BodySummarizerInterface.php │   │   │   ├── Client.php │   │   │   ├── ClientInterface.php │   │   │   ├── ClientTrait.php │   │   │   ├── Cookie │   │   │   │   ├── CookieJar.php │   │   │   │   ├── CookieJarInterface.php │   │   │   │   ├── FileCookieJar.php │   │   │   │   ├── SessionCookieJar.php │   │   │   │   └── SetCookie.php │   │   │   ├── Exception │   │   │   │   ├── BadResponseException.php │   │   │   │   ├── ClientException.php │   │   │   │   ├── ConnectException.php │   │   │   │   ├── GuzzleException.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── RequestException.php │   │   │   │   ├── ServerException.php │   │   │   │   ├── TooManyRedirectsException.php │   │   │   │   └── TransferException.php │   │   │   ├── Handler │   │   │   │   ├── CurlFactory.php │   │   │   │   ├── CurlFactoryInterface.php │   │   │   │   ├── CurlHandler.php │   │   │   │   ├── CurlMultiHandler.php │   │   │   │   ├── EasyHandle.php │   │   │   │   ├── HeaderProcessor.php │   │   │   │   ├── MockHandler.php │   │   │   │   ├── Proxy.php │   │   │   │   └── StreamHandler.php │   │   │   ├── HandlerStack.php │   │   │   ├── MessageFormatter.php │   │   │   ├── MessageFormatterInterface.php │   │   │   ├── Middleware.php │   │   │   ├── Pool.php │   │   │   ├── PrepareBodyMiddleware.php │   │   │   ├── RedirectMiddleware.php │   │   │   ├── RequestOptions.php │   │   │   ├── RetryMiddleware.php │   │   │   ├── TransferStats.php │   │   │   ├── Utils.php │   │   │   ├── functions.php │   │   │   └── functions_include.php │   │   ├── promises │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── AggregateException.php │   │   │   ├── CancellationException.php │   │   │   ├── Coroutine.php │   │   │   ├── Create.php │   │   │   ├── Each.php │   │   │   ├── EachPromise.php │   │   │   ├── FulfilledPromise.php │   │   │   ├── Is.php │   │   │   ├── Promise.php │   │   │   ├── PromiseInterface.php │   │   │   ├── PromisorInterface.php │   │   │   ├── RejectedPromise.php │   │   │   ├── RejectionException.php │   │   │   ├── TaskQueue.php │   │   │   ├── TaskQueueInterface.php │   │   │   └── Utils.php │   │   ├── psr7 │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── AppendStream.php │   │   │   ├── BufferStream.php │   │   │   ├── CachingStream.php │   │   │   ├── DroppingStream.php │   │   │   ├── Exception │   │   │   │   └── MalformedUriException.php │   │   │   ├── FnStream.php │   │   │   ├── Header.php │   │   │   ├── HttpFactory.php │   │   │   ├── InflateStream.php │   │   │   ├── LazyOpenStream.php │   │   │   ├── LimitStream.php │   │   │   ├── Message.php │   │   │   ├── MessageTrait.php │   │   │   ├── MimeType.php │   │   │   ├── MultipartStream.php │   │   │   ├── NoSeekStream.php │   │   │   ├── PumpStream.php │   │   │   ├── Query.php │   │   │   ├── Request.php │   │   │   ├── Response.php │   │   │   ├── Rfc7230.php │   │   │   ├── ServerRequest.php │   │   │   ├── Stream.php │   │   │   ├── StreamDecoratorTrait.php │   │   │   ├── StreamWrapper.php │   │   │   ├── UploadedFile.php │   │   │   ├── Uri.php │   │   │   ├── UriComparator.php │   │   │   ├── UriNormalizer.php │   │   │   ├── UriResolver.php │   │   │   └── Utils.php │   │   └── uri-template │   │   ├── CHANGELOG.md │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   └── UriTemplate.php │   ├── hamcrest │   │   └── hamcrest-php │   │   ├── CHANGES.txt │   │   ├── CONTRIBUTING.md │   │   ├── LICENSE.txt │   │   ├── README.md │   │   ├── composer.json │   │   ├── generator │   │   │   ├── FactoryCall.php │   │   │   ├── FactoryClass.php │   │   │   ├── FactoryFile.php │   │   │   ├── FactoryGenerator.php │   │   │   ├── FactoryMethod.php │   │   │   ├── FactoryParameter.php │   │   │   ├── GlobalFunctionFile.php │   │   │   ├── StaticMethodFile.php │   │   │   ├── parts │   │   │   │   ├── file_header.txt │   │   │   │   ├── functions_footer.txt │   │   │   │   ├── functions_header.txt │   │   │   │   ├── functions_imports.txt │   │   │   │   ├── matchers_footer.txt │   │   │   │   ├── matchers_header.txt │   │   │   │   └── matchers_imports.txt │   │   │   └── run.php │   │   └── hamcrest │   │   ├── Hamcrest │   │   │   ├── Arrays │   │   │   │   ├── IsArray.php │   │   │   │   ├── IsArrayContaining.php │   │   │   │   ├── IsArrayContainingInAnyOrder.php │   │   │   │   ├── IsArrayContainingInOrder.php │   │   │   │   ├── IsArrayContainingKey.php │   │   │   │   ├── IsArrayContainingKeyValuePair.php │   │   │   │   ├── IsArrayWithSize.php │   │   │   │   ├── MatchingOnce.php │   │   │   │   └── SeriesMatchingOnce.php │   │   │   ├── AssertionError.php │   │   │   ├── BaseDescription.php │   │   │   ├── BaseMatcher.php │   │   │   ├── Collection │   │   │   │   ├── IsEmptyTraversable.php │   │   │   │   └── IsTraversableWithSize.php │   │   │   ├── Core │   │   │   │   ├── AllOf.php │   │   │   │   ├── AnyOf.php │   │   │   │   ├── CombinableMatcher.php │   │   │   │   ├── DescribedAs.php │   │   │   │   ├── Every.php │   │   │   │   ├── HasToString.php │   │   │   │   ├── Is.php │   │   │   │   ├── IsAnything.php │   │   │   │   ├── IsCollectionContaining.php │   │   │   │   ├── IsEqual.php │   │   │   │   ├── IsIdentical.php │   │   │   │   ├── IsInstanceOf.php │   │   │   │   ├── IsNot.php │   │   │   │   ├── IsNull.php │   │   │   │   ├── IsSame.php │   │   │   │   ├── IsTypeOf.php │   │   │   │   ├── Set.php │   │   │   │   └── ShortcutCombination.php │   │   │   ├── Description.php │   │   │   ├── DiagnosingMatcher.php │   │   │   ├── FeatureMatcher.php │   │   │   ├── Internal │   │   │   │   └── SelfDescribingValue.php │   │   │   ├── Matcher.php │   │   │   ├── MatcherAssert.php │   │   │   ├── Matchers.php │   │   │   ├── NullDescription.php │   │   │   ├── Number │   │   │   │   ├── IsCloseTo.php │   │   │   │   └── OrderingComparison.php │   │   │   ├── SelfDescribing.php │   │   │   ├── StringDescription.php │   │   │   ├── Text │   │   │   │   ├── IsEmptyString.php │   │   │   │   ├── IsEqualIgnoringCase.php │   │   │   │   ├── IsEqualIgnoringWhiteSpace.php │   │   │   │   ├── MatchesPattern.php │   │   │   │   ├── StringContains.php │   │   │   │   ├── StringContainsIgnoringCase.php │   │   │   │   ├── StringContainsInOrder.php │   │   │   │   ├── StringEndsWith.php │   │   │   │   ├── StringStartsWith.php │   │   │   │   └── SubstringMatcher.php │   │   │   ├── Type │   │   │   │   ├── IsArray.php │   │   │   │   ├── IsBoolean.php │   │   │   │   ├── IsCallable.php │   │   │   │   ├── IsDouble.php │   │   │   │   ├── IsInteger.php │   │   │   │   ├── IsNumeric.php │   │   │   │   ├── IsObject.php │   │   │   │   ├── IsResource.php │   │   │   │   ├── IsScalar.php │   │   │   │   └── IsString.php │   │   │   ├── TypeSafeDiagnosingMatcher.php │   │   │   ├── TypeSafeMatcher.php │   │   │   ├── Util.php │   │   │   └── Xml │   │   │   └── HasXPath.php │   │   └── Hamcrest.php │   ├── jean85 │   │   └── pretty-package-versions │   │   ├── LICENSE │   │   ├── composer.json │   │   ├── rector.php │   │   └── src │   │   ├── Exception │   │   │   ├── ProvidedPackageException.php │   │   │   ├── ReplacedPackageException.php │   │   │   └── VersionMissingExceptionInterface.php │   │   ├── PrettyVersions.php │   │   └── Version.php │   ├── kirschbaum-development │   │   └── eloquent-power-joins │   │   ├── CHANGELOG.md │   │   ├── CONTRIBUTING.md │   │   ├── LICENSE.md │   │   ├── README.md │   │   ├── composer.json │   │   ├── config │   │   │   └── config.php │   │   ├── screenshots │   │   │   ├── eloquent-power-joins.jpg │   │   │   └── mysql-cpu-graph.png │   │   └── src │   │   ├── EloquentJoins.php │   │   ├── FakeJoinCallback.php │   │   ├── JoinsHelper.php │   │   ├── Mixins │   │   │   ├── JoinRelationship.php │   │   │   ├── QueryBuilderExtraMethods.php │   │   │   ├── QueryRelationshipExistence.php │   │   │   └── RelationshipsExtraMethods.php │   │   ├── PowerJoinClause.php │   │   ├── PowerJoinsServiceProvider.php │   │   └── StaticCache.php │   ├── laravel │   │   ├── framework │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   ├── config │   │   │   │   ├── app.php │   │   │   │   ├── auth.php │   │   │   │   ├── broadcasting.php │   │   │   │   ├── cache.php │   │   │   │   ├── concurrency.php │   │   │   │   ├── cors.php │   │   │   │   ├── database.php │   │   │   │   ├── filesystems.php │   │   │   │   ├── hashing.php │   │   │   │   ├── logging.php │   │   │   │   ├── mail.php │   │   │   │   ├── queue.php │   │   │   │   ├── services.php │   │   │   │   ├── session.php │   │   │   │   └── view.php │   │   │   ├── config-stubs │   │   │   │   └── app.php │   │   │   ├── pint.json │   │   │   └── src │   │   │   └── Illuminate │   │   │   ├── Auth │   │   │   │   ├── Access │   │   │   │   │   ├── AuthorizationException.php │   │   │   │   │   ├── Events │   │   │   │   │   │   └── GateEvaluated.php │   │   │   │   │   ├── Gate.php │   │   │   │   │   ├── HandlesAuthorization.php │   │   │   │   │   └── Response.php │   │   │   │   ├── AuthManager.php │   │   │   │   ├── AuthServiceProvider.php │   │   │   │   ├── Authenticatable.php │   │   │   │   ├── AuthenticationException.php │   │   │   │   ├── Console │   │   │   │   │   ├── ClearResetsCommand.php │   │   │   │   │   └── stubs │   │   │   │   │   └── make │   │   │   │   │   └── views │   │   │   │   │   └── layouts │   │   │   │   │   └── app.stub │   │   │   │   ├── CreatesUserProviders.php │   │   │   │   ├── DatabaseUserProvider.php │   │   │   │   ├── EloquentUserProvider.php │   │   │   │   ├── Events │   │   │   │   │   ├── Attempting.php │   │   │   │   │   ├── Authenticated.php │   │   │   │   │   ├── CurrentDeviceLogout.php │   │   │   │   │   ├── Failed.php │   │   │   │   │   ├── Lockout.php │   │   │   │   │   ├── Login.php │   │   │   │   │   ├── Logout.php │   │   │   │   │   ├── OtherDeviceLogout.php │   │   │   │   │   ├── PasswordReset.php │   │   │   │   │   ├── PasswordResetLinkSent.php │   │   │   │   │   ├── Registered.php │   │   │   │   │   ├── Validated.php │   │   │   │   │   └── Verified.php │   │   │   │   ├── GenericUser.php │   │   │   │   ├── GuardHelpers.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Listeners │   │   │   │   │   └── SendEmailVerificationNotification.php │   │   │   │   ├── Middleware │   │   │   │   │   ├── Authenticate.php │   │   │   │   │   ├── AuthenticateWithBasicAuth.php │   │   │   │   │   ├── Authorize.php │   │   │   │   │   ├── EnsureEmailIsVerified.php │   │   │   │   │   ├── RedirectIfAuthenticated.php │   │   │   │   │   └── RequirePassword.php │   │   │   │   ├── MustVerifyEmail.php │   │   │   │   ├── Notifications │   │   │   │   │   ├── ResetPassword.php │   │   │   │   │   └── VerifyEmail.php │   │   │   │   ├── Passwords │   │   │   │   │   ├── CacheTokenRepository.php │   │   │   │   │   ├── CanResetPassword.php │   │   │   │   │   ├── DatabaseTokenRepository.php │   │   │   │   │   ├── PasswordBroker.php │   │   │   │   │   ├── PasswordBrokerManager.php │   │   │   │   │   ├── PasswordResetServiceProvider.php │   │   │   │   │   └── TokenRepositoryInterface.php │   │   │   │   ├── Recaller.php │   │   │   │   ├── RequestGuard.php │   │   │   │   ├── SessionGuard.php │   │   │   │   ├── TokenGuard.php │   │   │   │   └── composer.json │   │   │   ├── Broadcasting │   │   │   │   ├── AnonymousEvent.php │   │   │   │   ├── BroadcastController.php │   │   │   │   ├── BroadcastEvent.php │   │   │   │   ├── BroadcastException.php │   │   │   │   ├── BroadcastManager.php │   │   │   │   ├── BroadcastServiceProvider.php │   │   │   │   ├── Broadcasters │   │   │   │   │   ├── AblyBroadcaster.php │   │   │   │   │   ├── Broadcaster.php │   │   │   │   │   ├── LogBroadcaster.php │   │   │   │   │   ├── NullBroadcaster.php │   │   │   │   │   ├── PusherBroadcaster.php │   │   │   │   │   ├── RedisBroadcaster.php │   │   │   │   │   └── UsePusherChannelConventions.php │   │   │   │   ├── Channel.php │   │   │   │   ├── EncryptedPrivateChannel.php │   │   │   │   ├── FakePendingBroadcast.php │   │   │   │   ├── InteractsWithBroadcasting.php │   │   │   │   ├── InteractsWithSockets.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── PendingBroadcast.php │   │   │   │   ├── PresenceChannel.php │   │   │   │   ├── PrivateChannel.php │   │   │   │   ├── UniqueBroadcastEvent.php │   │   │   │   └── composer.json │   │   │   ├── Bus │   │   │   │   ├── Batch.php │   │   │   │   ├── BatchFactory.php │   │   │   │   ├── BatchRepository.php │   │   │   │   ├── Batchable.php │   │   │   │   ├── BusServiceProvider.php │   │   │   │   ├── ChainedBatch.php │   │   │   │   ├── DatabaseBatchRepository.php │   │   │   │   ├── Dispatcher.php │   │   │   │   ├── DynamoBatchRepository.php │   │   │   │   ├── Events │   │   │   │   │   └── BatchDispatched.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── PendingBatch.php │   │   │   │   ├── PrunableBatchRepository.php │   │   │   │   ├── Queueable.php │   │   │   │   ├── UniqueLock.php │   │   │   │   ├── UpdatedBatchJobCounts.php │   │   │   │   └── composer.json │   │   │   ├── Cache │   │   │   │   ├── ApcStore.php │   │   │   │   ├── ApcWrapper.php │   │   │   │   ├── ArrayLock.php │   │   │   │   ├── ArrayStore.php │   │   │   │   ├── CacheLock.php │   │   │   │   ├── CacheManager.php │   │   │   │   ├── CacheServiceProvider.php │   │   │   │   ├── Console │   │   │   │   │   ├── CacheTableCommand.php │   │   │   │   │   ├── ClearCommand.php │   │   │   │   │   ├── ForgetCommand.php │   │   │   │   │   ├── PruneStaleTagsCommand.php │   │   │   │   │   └── stubs │   │   │   │   │   └── cache.stub │   │   │   │   ├── DatabaseLock.php │   │   │   │   ├── DatabaseStore.php │   │   │   │   ├── DynamoDbLock.php │   │   │   │   ├── DynamoDbStore.php │   │   │   │   ├── Events │   │   │   │   │   ├── CacheEvent.php │   │   │   │   │   ├── CacheFlushFailed.php │   │   │   │   │   ├── CacheFlushed.php │   │   │   │   │   ├── CacheFlushing.php │   │   │   │   │   ├── CacheHit.php │   │   │   │   │   ├── CacheMissed.php │   │   │   │   │   ├── ForgettingKey.php │   │   │   │   │   ├── KeyForgetFailed.php │   │   │   │   │   ├── KeyForgotten.php │   │   │   │   │   ├── KeyWriteFailed.php │   │   │   │   │   ├── KeyWritten.php │   │   │   │   │   ├── RetrievingKey.php │   │   │   │   │   ├── RetrievingManyKeys.php │   │   │   │   │   ├── WritingKey.php │   │   │   │   │   └── WritingManyKeys.php │   │   │   │   ├── FileLock.php │   │   │   │   ├── FileStore.php │   │   │   │   ├── HasCacheLock.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Lock.php │   │   │   │   ├── LuaScripts.php │   │   │   │   ├── MemcachedConnector.php │   │   │   │   ├── MemcachedLock.php │   │   │   │   ├── MemcachedStore.php │   │   │   │   ├── MemoizedStore.php │   │   │   │   ├── NoLock.php │   │   │   │   ├── NullStore.php │   │   │   │   ├── PhpRedisLock.php │   │   │   │   ├── RateLimiter.php │   │   │   │   ├── RateLimiting │   │   │   │   │   ├── GlobalLimit.php │   │   │   │   │   ├── Limit.php │   │   │   │   │   └── Unlimited.php │   │   │   │   ├── RedisLock.php │   │   │   │   ├── RedisStore.php │   │   │   │   ├── RedisTagSet.php │   │   │   │   ├── RedisTaggedCache.php │   │   │   │   ├── Repository.php │   │   │   │   ├── RetrievesMultipleKeys.php │   │   │   │   ├── TagSet.php │   │   │   │   ├── TaggableStore.php │   │   │   │   ├── TaggedCache.php │   │   │   │   └── composer.json │   │   │   ├── Collections │   │   │   │   ├── Arr.php │   │   │   │   ├── Collection.php │   │   │   │   ├── Enumerable.php │   │   │   │   ├── HigherOrderCollectionProxy.php │   │   │   │   ├── ItemNotFoundException.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── LazyCollection.php │   │   │   │   ├── MultipleItemsFoundException.php │   │   │   │   ├── Traits │   │   │   │   │   ├── EnumeratesValues.php │   │   │   │   │   └── TransformsToResourceCollection.php │   │   │   │   ├── composer.json │   │   │   │   ├── functions.php │   │   │   │   └── helpers.php │   │   │   ├── Concurrency │   │   │   │   ├── ConcurrencyManager.php │   │   │   │   ├── ConcurrencyServiceProvider.php │   │   │   │   ├── Console │   │   │   │   │   └── InvokeSerializedClosureCommand.php │   │   │   │   ├── ForkDriver.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── ProcessDriver.php │   │   │   │   ├── SyncDriver.php │   │   │   │   └── composer.json │   │   │   ├── Conditionable │   │   │   │   ├── HigherOrderWhenProxy.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Traits │   │   │   │   │   └── Conditionable.php │   │   │   │   └── composer.json │   │   │   ├── Config │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Repository.php │   │   │   │   └── composer.json │   │   │   ├── Console │   │   │   │   ├── Application.php │   │   │   │   ├── BufferedConsoleOutput.php │   │   │   │   ├── CacheCommandMutex.php │   │   │   │   ├── Command.php │   │   │   │   ├── CommandMutex.php │   │   │   │   ├── Concerns │   │   │   │   │   ├── CallsCommands.php │   │   │   │   │   ├── ConfiguresPrompts.php │   │   │   │   │   ├── CreatesMatchingTest.php │   │   │   │   │   ├── HasParameters.php │   │   │   │   │   ├── InteractsWithIO.php │   │   │   │   │   ├── InteractsWithSignals.php │   │   │   │   │   └── PromptsForMissingInput.php │   │   │   │   ├── ConfirmableTrait.php │   │   │   │   ├── ContainerCommandLoader.php │   │   │   │   ├── Contracts │   │   │   │   │   └── NewLineAware.php │   │   │   │   ├── Events │   │   │   │   │   ├── ArtisanStarting.php │   │   │   │   │   ├── CommandFinished.php │   │   │   │   │   ├── CommandStarting.php │   │   │   │   │   ├── ScheduledBackgroundTaskFinished.php │   │   │   │   │   ├── ScheduledTaskFailed.php │   │   │   │   │   ├── ScheduledTaskFinished.php │   │   │   │   │   ├── ScheduledTaskSkipped.php │   │   │   │   │   └── ScheduledTaskStarting.php │   │   │   │   ├── GeneratorCommand.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── ManuallyFailedException.php │   │   │   │   ├── MigrationGeneratorCommand.php │   │   │   │   ├── OutputStyle.php │   │   │   │   ├── Parser.php │   │   │   │   ├── Prohibitable.php │   │   │   │   ├── PromptValidationException.php │   │   │   │   ├── QuestionHelper.php │   │   │   │   ├── Scheduling │   │   │   │   │   ├── CacheAware.php │   │   │   │   │   ├── CacheEventMutex.php │   │   │   │   │   ├── CacheSchedulingMutex.php │   │   │   │   │   ├── CallbackEvent.php │   │   │   │   │   ├── CommandBuilder.php │   │   │   │   │   ├── Event.php │   │   │   │   │   ├── EventMutex.php │   │   │   │   │   ├── ManagesAttributes.php │   │   │   │   │   ├── ManagesFrequencies.php │   │   │   │   │   ├── PendingEventAttributes.php │   │   │   │   │   ├── Schedule.php │   │   │   │   │   ├── ScheduleClearCacheCommand.php │   │   │   │   │   ├── ScheduleFinishCommand.php │   │   │   │   │   ├── ScheduleInterruptCommand.php │   │   │   │   │   ├── ScheduleListCommand.php │   │   │   │   │   ├── ScheduleRunCommand.php │   │   │   │   │   ├── ScheduleTestCommand.php │   │   │   │   │   ├── ScheduleWorkCommand.php │   │   │   │   │   └── SchedulingMutex.php │   │   │   │   ├── Signals.php │   │   │   │   ├── View │   │   │   │   │   ├── Components │   │   │   │   │   │   ├── Alert.php │   │   │   │   │   │   ├── Ask.php │   │   │   │   │   │   ├── AskWithCompletion.php │   │   │   │   │   │   ├── BulletList.php │   │   │   │   │   │   ├── Choice.php │   │   │   │   │   │   ├── Component.php │   │   │   │   │   │   ├── Confirm.php │   │   │   │   │   │   ├── Error.php │   │   │   │   │   │   ├── Factory.php │   │   │   │   │   │   ├── Info.php │   │   │   │   │   │   ├── Line.php │   │   │   │   │   │   ├── Mutators │   │   │   │   │   │   │   ├── EnsureDynamicContentIsHighlighted.php │   │   │   │   │   │   │   ├── EnsureNoPunctuation.php │   │   │   │   │   │   │   ├── EnsurePunctuation.php │   │   │   │   │   │   │   └── EnsureRelativePaths.php │   │   │   │   │   │   ├── Secret.php │   │   │   │   │   │   ├── Success.php │   │   │   │   │   │   ├── Task.php │   │   │   │   │   │   ├── TwoColumnDetail.php │   │   │   │   │   │   └── Warn.php │   │   │   │   │   └── TaskResult.php │   │   │   │   ├── composer.json │   │   │   │   └── resources │   │   │   │   └── views │   │   │   │   └── components │   │   │   │   ├── alert.php │   │   │   │   ├── bullet-list.php │   │   │   │   ├── line.php │   │   │   │   └── two-column-detail.php │   │   │   ├── Container │   │   │   │   ├── Attributes │   │   │   │   │   ├── Auth.php │   │   │   │   │   ├── Authenticated.php │   │   │   │   │   ├── Cache.php │   │   │   │   │   ├── Config.php │   │   │   │   │   ├── Context.php │   │   │   │   │   ├── CurrentUser.php │   │   │   │   │   ├── DB.php │   │   │   │   │   ├── Database.php │   │   │   │   │   ├── Give.php │   │   │   │   │   ├── Log.php │   │   │   │   │   ├── RouteParameter.php │   │   │   │   │   ├── Storage.php │   │   │   │   │   └── Tag.php │   │   │   │   ├── BoundMethod.php │   │   │   │   ├── Container.php │   │   │   │   ├── ContextualBindingBuilder.php │   │   │   │   ├── EntryNotFoundException.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── RewindableGenerator.php │   │   │   │   ├── Util.php │   │   │   │   └── composer.json │   │   │   ├── Contracts │   │   │   │   ├── Auth │   │   │   │   │   ├── Access │   │   │   │   │   │   ├── Authorizable.php │   │   │   │   │   │   └── Gate.php │   │   │   │   │   ├── Authenticatable.php │   │   │   │   │   ├── CanResetPassword.php │   │   │   │   │   ├── Factory.php │   │   │   │   │   ├── Guard.php │   │   │   │   │   ├── Middleware │   │   │   │   │   │   └── AuthenticatesRequests.php │   │   │   │   │   ├── MustVerifyEmail.php │   │   │   │   │   ├── PasswordBroker.php │   │   │   │   │   ├── PasswordBrokerFactory.php │   │   │   │   │   ├── StatefulGuard.php │   │   │   │   │   ├── SupportsBasicAuth.php │   │   │   │   │   └── UserProvider.php │   │   │   │   ├── Broadcasting │   │   │   │   │   ├── Broadcaster.php │   │   │   │   │   ├── Factory.php │   │   │   │   │   ├── HasBroadcastChannel.php │   │   │   │   │   ├── ShouldBeUnique.php │   │   │   │   │   ├── ShouldBroadcast.php │   │   │   │   │   ├── ShouldBroadcastNow.php │   │   │   │   │   └── ShouldRescue.php │   │   │   │   ├── Bus │   │   │   │   │   ├── Dispatcher.php │   │   │   │   │   └── QueueingDispatcher.php │   │   │   │   ├── Cache │   │   │   │   │   ├── Factory.php │   │   │   │   │   ├── Lock.php │   │   │   │   │   ├── LockProvider.php │   │   │   │   │   ├── LockTimeoutException.php │   │   │   │   │   ├── Repository.php │   │   │   │   │   └── Store.php │   │   │   │   ├── Concurrency │   │   │   │   │   └── Driver.php │   │   │   │   ├── Config │   │   │   │   │   └── Repository.php │   │   │   │   ├── Console │   │   │   │   │   ├── Application.php │   │   │   │   │   ├── Isolatable.php │   │   │   │   │   ├── Kernel.php │   │   │   │   │   └── PromptsForMissingInput.php │   │   │   │   ├── Container │   │   │   │   │   ├── BindingResolutionException.php │   │   │   │   │   ├── CircularDependencyException.php │   │   │   │   │   ├── Container.php │   │   │   │   │   ├── ContextualAttribute.php │   │   │   │   │   └── ContextualBindingBuilder.php │   │   │   │   ├── Cookie │   │   │   │   │   ├── Factory.php │   │   │   │   │   └── QueueingFactory.php │   │   │   │   ├── Database │   │   │   │   │   ├── Eloquent │   │   │   │   │   │   ├── Builder.php │   │   │   │   │   │   ├── Castable.php │   │   │   │   │   │   ├── CastsAttributes.php │   │   │   │   │   │   ├── CastsInboundAttributes.php │   │   │   │   │   │   ├── ComparesCastableAttributes.php │   │   │   │   │   │   ├── DeviatesCastableAttributes.php │   │   │   │   │   │   ├── SerializesCastableAttributes.php │   │   │   │   │   │   └── SupportsPartialRelations.php │   │   │   │   │   ├── Events │   │   │   │   │   │   └── MigrationEvent.php │   │   │   │   │   ├── ModelIdentifier.php │   │   │   │   │   └── Query │   │   │   │   │   ├── Builder.php │   │   │   │   │   ├── ConditionExpression.php │   │   │   │   │   └── Expression.php │   │   │   │   ├── Debug │   │   │   │   │   ├── ExceptionHandler.php │   │   │   │   │   └── ShouldntReport.php │   │   │   │   ├── Encryption │   │   │   │   │   ├── DecryptException.php │   │   │   │   │   ├── EncryptException.php │   │   │   │   │   ├── Encrypter.php │   │   │   │   │   └── StringEncrypter.php │   │   │   │   ├── Events │   │   │   │   │   ├── Dispatcher.php │   │   │   │   │   ├── ShouldDispatchAfterCommit.php │   │   │   │   │   └── ShouldHandleEventsAfterCommit.php │   │   │   │   ├── Filesystem │   │   │   │   │   ├── Cloud.php │   │   │   │   │   ├── Factory.php │   │   │   │   │   ├── FileNotFoundException.php │   │   │   │   │   ├── Filesystem.php │   │   │   │   │   └── LockTimeoutException.php │   │   │   │   ├── Foundation │   │   │   │   │   ├── Application.php │   │   │   │   │   ├── CachesConfiguration.php │   │   │   │   │   ├── CachesRoutes.php │   │   │   │   │   ├── ExceptionRenderer.php │   │   │   │   │   └── MaintenanceMode.php │   │   │   │   ├── Hashing │   │   │   │   │   └── Hasher.php │   │   │   │   ├── Http │   │   │   │   │   └── Kernel.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Log │   │   │   │   │   └── ContextLogProcessor.php │   │   │   │   ├── Mail │   │   │   │   │   ├── Attachable.php │   │   │   │   │   ├── Factory.php │   │   │   │   │   ├── MailQueue.php │   │   │   │   │   ├── Mailable.php │   │   │   │   │   └── Mailer.php │   │   │   │   ├── Notifications │   │   │   │   │   ├── Dispatcher.php │   │   │   │   │   └── Factory.php │   │   │   │   ├── Pagination │   │   │   │   │   ├── CursorPaginator.php │   │   │   │   │   ├── LengthAwarePaginator.php │   │   │   │   │   └── Paginator.php │   │   │   │   ├── Pipeline │   │   │   │   │   ├── Hub.php │   │   │   │   │   └── Pipeline.php │   │   │   │   ├── Process │   │   │   │   │   ├── InvokedProcess.php │   │   │   │   │   └── ProcessResult.php │   │   │   │   ├── Queue │   │   │   │   │   ├── ClearableQueue.php │   │   │   │   │   ├── EntityNotFoundException.php │   │   │   │   │   ├── EntityResolver.php │   │   │   │   │   ├── Factory.php │   │   │   │   │   ├── Job.php │   │   │   │   │   ├── Monitor.php │   │   │   │   │   ├── Queue.php │   │   │   │   │   ├── QueueableCollection.php │   │   │   │   │   ├── QueueableEntity.php │   │   │   │   │   ├── ShouldBeEncrypted.php │   │   │   │   │   ├── ShouldBeUnique.php │   │   │   │   │   ├── ShouldBeUniqueUntilProcessing.php │   │   │   │   │   ├── ShouldQueue.php │   │   │   │   │   └── ShouldQueueAfterCommit.php │   │   │   │   ├── Redis │   │   │   │   │   ├── Connection.php │   │   │   │   │   ├── Connector.php │   │   │   │   │   ├── Factory.php │   │   │   │   │   └── LimiterTimeoutException.php │   │   │   │   ├── Routing │   │   │   │   │   ├── BindingRegistrar.php │   │   │   │   │   ├── Registrar.php │   │   │   │   │   ├── ResponseFactory.php │   │   │   │   │   ├── UrlGenerator.php │   │   │   │   │   └── UrlRoutable.php │   │   │   │   ├── Session │   │   │   │   │   ├── Middleware │   │   │   │   │   │   └── AuthenticatesSessions.php │   │   │   │   │   └── Session.php │   │   │   │   ├── Support │   │   │   │   │   ├── Arrayable.php │   │   │   │   │   ├── CanBeEscapedWhenCastToString.php │   │   │   │   │   ├── DeferrableProvider.php │   │   │   │   │   ├── DeferringDisplayableValue.php │   │   │   │   │   ├── HasOnceHash.php │   │   │   │   │   ├── Htmlable.php │   │   │   │   │   ├── Jsonable.php │   │   │   │   │   ├── MessageBag.php │   │   │   │   │   ├── MessageProvider.php │   │   │   │   │   ├── Renderable.php │   │   │   │   │   ├── Responsable.php │   │   │   │   │   └── ValidatedData.php │   │   │   │   ├── Translation │   │   │   │   │   ├── HasLocalePreference.php │   │   │   │   │   ├── Loader.php │   │   │   │   │   └── Translator.php │   │   │   │   ├── Validation │   │   │   │   │   ├── CompilableRules.php │   │   │   │   │   ├── DataAwareRule.php │   │   │   │   │   ├── Factory.php │   │   │   │   │   ├── ImplicitRule.php │   │   │   │   │   ├── InvokableRule.php │   │   │   │   │   ├── Rule.php │   │   │   │   │   ├── UncompromisedVerifier.php │   │   │   │   │   ├── ValidatesWhenResolved.php │   │   │   │   │   ├── ValidationRule.php │   │   │   │   │   ├── Validator.php │   │   │   │   │   └── ValidatorAwareRule.php │   │   │   │   ├── View │   │   │   │   │   ├── Engine.php │   │   │   │   │   ├── Factory.php │   │   │   │   │   ├── View.php │   │   │   │   │   └── ViewCompilationException.php │   │   │   │   └── composer.json │   │   │   ├── Cookie │   │   │   │   ├── CookieJar.php │   │   │   │   ├── CookieServiceProvider.php │   │   │   │   ├── CookieValuePrefix.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Middleware │   │   │   │   │   ├── AddQueuedCookiesToResponse.php │   │   │   │   │   └── EncryptCookies.php │   │   │   │   └── composer.json │   │   │   ├── Database │   │   │   │   ├── Capsule │   │   │   │   │   └── Manager.php │   │   │   │   ├── ClassMorphViolationException.php │   │   │   │   ├── Concerns │   │   │   │   │   ├── BuildsQueries.php │   │   │   │   │   ├── BuildsWhereDateClauses.php │   │   │   │   │   ├── CompilesJsonPaths.php │   │   │   │   │   ├── ExplainsQueries.php │   │   │   │   │   ├── ManagesTransactions.php │   │   │   │   │   └── ParsesSearchPath.php │   │   │   │   ├── ConfigurationUrlParser.php │   │   │   │   ├── Connection.php │   │   │   │   ├── ConnectionInterface.php │   │   │   │   ├── ConnectionResolver.php │   │   │   │   ├── ConnectionResolverInterface.php │   │   │   │   ├── Connectors │   │   │   │   │   ├── ConnectionFactory.php │   │   │   │   │   ├── Connector.php │   │   │   │   │   ├── ConnectorInterface.php │   │   │   │   │   ├── MariaDbConnector.php │   │   │   │   │   ├── MySqlConnector.php │   │   │   │   │   ├── PostgresConnector.php │   │   │   │   │   ├── SQLiteConnector.php │   │   │   │   │   └── SqlServerConnector.php │   │   │   │   ├── Console │   │   │   │   │   ├── DatabaseInspectionCommand.php │   │   │   │   │   ├── DbCommand.php │   │   │   │   │   ├── DumpCommand.php │   │   │   │   │   ├── Factories │   │   │   │   │   │   ├── FactoryMakeCommand.php │   │   │   │   │   │   └── stubs │   │   │   │   │   │   └── factory.stub │   │   │   │   │   ├── Migrations │   │   │   │   │   │   ├── BaseCommand.php │   │   │   │   │   │   ├── FreshCommand.php │   │   │   │   │   │   ├── InstallCommand.php │   │   │   │   │   │   ├── MigrateCommand.php │   │   │   │   │   │   ├── MigrateMakeCommand.php │   │   │   │   │   │   ├── RefreshCommand.php │   │   │   │   │   │   ├── ResetCommand.php │   │   │   │   │   │   ├── RollbackCommand.php │   │   │   │   │   │   ├── StatusCommand.php │   │   │   │   │   │   └── TableGuesser.php │   │   │   │   │   ├── MonitorCommand.php │   │   │   │   │   ├── PruneCommand.php │   │   │   │   │   ├── Seeds │   │   │   │   │   │   ├── SeedCommand.php │   │   │   │   │   │   ├── SeederMakeCommand.php │   │   │   │   │   │   ├── WithoutModelEvents.php │   │   │   │   │   │   └── stubs │   │   │   │   │   │   └── seeder.stub │   │   │   │   │   ├── ShowCommand.php │   │   │   │   │   ├── ShowModelCommand.php │   │   │   │   │   ├── TableCommand.php │   │   │   │   │   └── WipeCommand.php │   │   │   │   ├── DatabaseManager.php │   │   │   │   ├── DatabaseServiceProvider.php │   │   │   │   ├── DatabaseTransactionRecord.php │   │   │   │   ├── DatabaseTransactionsManager.php │   │   │   │   ├── DeadlockException.php │   │   │   │   ├── DetectsConcurrencyErrors.php │   │   │   │   ├── DetectsLostConnections.php │   │   │   │   ├── Eloquent │   │   │   │   │   ├── Attributes │   │   │   │   │   │   ├── CollectedBy.php │   │   │   │   │   │   ├── ObservedBy.php │   │   │   │   │   │   ├── Scope.php │   │   │   │   │   │   ├── ScopedBy.php │   │   │   │   │   │   ├── UseEloquentBuilder.php │   │   │   │   │   │   ├── UseFactory.php │   │   │   │   │   │   └── UsePolicy.php │   │   │   │   │   ├── BroadcastableModelEventOccurred.php │   │   │   │   │   ├── BroadcastsEvents.php │   │   │   │   │   ├── BroadcastsEventsAfterCommit.php │   │   │   │   │   ├── Builder.php │   │   │   │   │   ├── Casts │   │   │   │   │   │   ├── ArrayObject.php │   │   │   │   │   │   ├── AsArrayObject.php │   │   │   │   │   │   ├── AsCollection.php │   │   │   │   │   │   ├── AsEncryptedArrayObject.php │   │   │   │   │   │   ├── AsEncryptedCollection.php │   │   │   │   │   │   ├── AsEnumArrayObject.php │   │   │   │   │   │   ├── AsEnumCollection.php │   │   │   │   │   │   ├── AsFluent.php │   │   │   │   │   │   ├── AsHtmlString.php │   │   │   │   │   │   ├── AsStringable.php │   │   │   │   │   │   ├── AsUri.php │   │   │   │   │   │   ├── Attribute.php │   │   │   │   │   │   └── Json.php │   │   │   │   │   ├── Collection.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   ├── GuardsAttributes.php │   │   │   │   │   │   ├── HasAttributes.php │   │   │   │   │   │   ├── HasEvents.php │   │   │   │   │   │   ├── HasGlobalScopes.php │   │   │   │   │   │   ├── HasRelationships.php │   │   │   │   │   │   ├── HasTimestamps.php │   │   │   │   │   │   ├── HasUlids.php │   │   │   │   │   │   ├── HasUniqueIds.php │   │   │   │   │   │   ├── HasUniqueStringIds.php │   │   │   │   │   │   ├── HasUuids.php │   │   │   │   │   │   ├── HasVersion4Uuids.php │   │   │   │   │   │   ├── HidesAttributes.php │   │   │   │   │   │   ├── PreventsCircularRecursion.php │   │   │   │   │   │   ├── QueriesRelationships.php │   │   │   │   │   │   └── TransformsToResource.php │   │   │   │   │   ├── Factories │   │   │   │   │   │   ├── BelongsToManyRelationship.php │   │   │   │   │   │   ├── BelongsToRelationship.php │   │   │   │   │   │   ├── CrossJoinSequence.php │   │   │   │   │   │   ├── Factory.php │   │   │   │   │   │   ├── HasFactory.php │   │   │   │   │   │   ├── Relationship.php │   │   │   │   │   │   └── Sequence.php │   │   │   │   │   ├── HasBuilder.php │   │   │   │   │   ├── HasCollection.php │   │   │   │   │   ├── HigherOrderBuilderProxy.php │   │   │   │   │   ├── InvalidCastException.php │   │   │   │   │   ├── JsonEncodingException.php │   │   │   │   │   ├── MassAssignmentException.php │   │   │   │   │   ├── MassPrunable.php │   │   │   │   │   ├── MissingAttributeException.php │   │   │   │   │   ├── Model.php │   │   │   │   │   ├── ModelInspector.php │   │   │   │   │   ├── ModelNotFoundException.php │   │   │   │   │   ├── PendingHasThroughRelationship.php │   │   │   │   │   ├── Prunable.php │   │   │   │   │   ├── QueueEntityResolver.php │   │   │   │   │   ├── RelationNotFoundException.php │   │   │   │   │   ├── Relations │   │   │   │   │   │   ├── BelongsTo.php │   │   │   │   │   │   ├── BelongsToMany.php │   │   │   │   │   │   ├── Concerns │   │   │   │   │   │   │   ├── AsPivot.php │   │   │   │   │   │   │   ├── CanBeOneOfMany.php │   │   │   │   │   │   │   ├── ComparesRelatedModels.php │   │   │   │   │   │   │   ├── InteractsWithDictionary.php │   │   │   │   │   │   │   ├── InteractsWithPivotTable.php │   │   │   │   │   │   │   ├── SupportsDefaultModels.php │   │   │   │   │   │   │   └── SupportsInverseRelations.php │   │   │   │   │   │   ├── HasMany.php │   │   │   │   │   │   ├── HasManyThrough.php │   │   │   │   │   │   ├── HasOne.php │   │   │   │   │   │   ├── HasOneOrMany.php │   │   │   │   │   │   ├── HasOneOrManyThrough.php │   │   │   │   │   │   ├── HasOneThrough.php │   │   │   │   │   │   ├── MorphMany.php │   │   │   │   │   │   ├── MorphOne.php │   │   │   │   │   │   ├── MorphOneOrMany.php │   │   │   │   │   │   ├── MorphPivot.php │   │   │   │   │   │   ├── MorphTo.php │   │   │   │   │   │   ├── MorphToMany.php │   │   │   │   │   │   ├── Pivot.php │   │   │   │   │   │   └── Relation.php │   │   │   │   │   ├── Scope.php │   │   │   │   │   ├── SoftDeletes.php │   │   │   │   │   └── SoftDeletingScope.php │   │   │   │   ├── Events │   │   │   │   │   ├── ConnectionEstablished.php │   │   │   │   │   ├── ConnectionEvent.php │   │   │   │   │   ├── DatabaseBusy.php │   │   │   │   │   ├── DatabaseRefreshed.php │   │   │   │   │   ├── MigrationEnded.php │   │   │   │   │   ├── MigrationEvent.php │   │   │   │   │   ├── MigrationStarted.php │   │   │   │   │   ├── MigrationsEnded.php │   │   │   │   │   ├── MigrationsEvent.php │   │   │   │   │   ├── MigrationsPruned.php │   │   │   │   │   ├── MigrationsStarted.php │   │   │   │   │   ├── ModelPruningFinished.php │   │   │   │   │   ├── ModelPruningStarting.php │   │   │   │   │   ├── ModelsPruned.php │   │   │   │   │   ├── NoPendingMigrations.php │   │   │   │   │   ├── QueryExecuted.php │   │   │   │   │   ├── SchemaDumped.php │   │   │   │   │   ├── SchemaLoaded.php │   │   │   │   │   ├── StatementPrepared.php │   │   │   │   │   ├── TransactionBeginning.php │   │   │   │   │   ├── TransactionCommitted.php │   │   │   │   │   ├── TransactionCommitting.php │   │   │   │   │   └── TransactionRolledBack.php │   │   │   │   ├── Grammar.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── LazyLoadingViolationException.php │   │   │   │   ├── LostConnectionException.php │   │   │   │   ├── MariaDbConnection.php │   │   │   │   ├── MigrationServiceProvider.php │   │   │   │   ├── Migrations │   │   │   │   │   ├── DatabaseMigrationRepository.php │   │   │   │   │   ├── Migration.php │   │   │   │   │   ├── MigrationCreator.php │   │   │   │   │   ├── MigrationRepositoryInterface.php │   │   │   │   │   ├── MigrationResult.php │   │   │   │   │   ├── Migrator.php │   │   │   │   │   └── stubs │   │   │   │   │   ├── migration.create.stub │   │   │   │   │   ├── migration.stub │   │   │   │   │   └── migration.update.stub │   │   │   │   ├── MultipleColumnsSelectedException.php │   │   │   │   ├── MultipleRecordsFoundException.php │   │   │   │   ├── MySqlConnection.php │   │   │   │   ├── PostgresConnection.php │   │   │   │   ├── Query │   │   │   │   │   ├── Builder.php │   │   │   │   │   ├── Expression.php │   │   │   │   │   ├── Grammars │   │   │   │   │   │   ├── Grammar.php │   │   │   │   │   │   ├── MariaDbGrammar.php │   │   │   │   │   │   ├── MySqlGrammar.php │   │   │   │   │   │   ├── PostgresGrammar.php │   │   │   │   │   │   ├── SQLiteGrammar.php │   │   │   │   │   │   └── SqlServerGrammar.php │   │   │   │   │   ├── IndexHint.php │   │   │   │   │   ├── JoinClause.php │   │   │   │   │   ├── JoinLateralClause.php │   │   │   │   │   └── Processors │   │   │   │   │   ├── MariaDbProcessor.php │   │   │   │   │   ├── MySqlProcessor.php │   │   │   │   │   ├── PostgresProcessor.php │   │   │   │   │   ├── Processor.php │   │   │   │   │   ├── SQLiteProcessor.php │   │   │   │   │   └── SqlServerProcessor.php │   │   │   │   ├── QueryException.php │   │   │   │   ├── README.md │   │   │   │   ├── RecordNotFoundException.php │   │   │   │   ├── RecordsNotFoundException.php │   │   │   │   ├── SQLiteConnection.php │   │   │   │   ├── SQLiteDatabaseDoesNotExistException.php │   │   │   │   ├── Schema │   │   │   │   │   ├── Blueprint.php │   │   │   │   │   ├── BlueprintState.php │   │   │   │   │   ├── Builder.php │   │   │   │   │   ├── ColumnDefinition.php │   │   │   │   │   ├── ForeignIdColumnDefinition.php │   │   │   │   │   ├── ForeignKeyDefinition.php │   │   │   │   │   ├── Grammars │   │   │   │   │   │   ├── Grammar.php │   │   │   │   │   │   ├── MariaDbGrammar.php │   │   │   │   │   │   ├── MySqlGrammar.php │   │   │   │   │   │   ├── PostgresGrammar.php │   │   │   │   │   │   ├── SQLiteGrammar.php │   │   │   │   │   │   └── SqlServerGrammar.php │   │   │   │   │   ├── IndexDefinition.php │   │   │   │   │   ├── MariaDbBuilder.php │   │   │   │   │   ├── MariaDbSchemaState.php │   │   │   │   │   ├── MySqlBuilder.php │   │   │   │   │   ├── MySqlSchemaState.php │   │   │   │   │   ├── PostgresBuilder.php │   │   │   │   │   ├── PostgresSchemaState.php │   │   │   │   │   ├── SQLiteBuilder.php │   │   │   │   │   ├── SchemaState.php │   │   │   │   │   ├── SqlServerBuilder.php │   │   │   │   │   └── SqliteSchemaState.php │   │   │   │   ├── Seeder.php │   │   │   │   ├── SqlServerConnection.php │   │   │   │   ├── UniqueConstraintViolationException.php │   │   │   │   └── composer.json │   │   │   ├── Encryption │   │   │   │   ├── Encrypter.php │   │   │   │   ├── EncryptionServiceProvider.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── MissingAppKeyException.php │   │   │   │   └── composer.json │   │   │   ├── Events │   │   │   │   ├── CallQueuedListener.php │   │   │   │   ├── Dispatcher.php │   │   │   │   ├── EventServiceProvider.php │   │   │   │   ├── InvokeQueuedClosure.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── NullDispatcher.php │   │   │   │   ├── QueuedClosure.php │   │   │   │   ├── composer.json │   │   │   │   └── functions.php │   │   │   ├── Filesystem │   │   │   │   ├── AwsS3V3Adapter.php │   │   │   │   ├── Filesystem.php │   │   │   │   ├── FilesystemAdapter.php │   │   │   │   ├── FilesystemManager.php │   │   │   │   ├── FilesystemServiceProvider.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── LocalFilesystemAdapter.php │   │   │   │   ├── LockableFile.php │   │   │   │   ├── ServeFile.php │   │   │   │   ├── composer.json │   │   │   │   └── functions.php │   │   │   ├── Foundation │   │   │   │   ├── AliasLoader.php │   │   │   │   ├── Application.php │   │   │   │   ├── Auth │   │   │   │   │   ├── Access │   │   │   │   │   │   ├── Authorizable.php │   │   │   │   │   │   └── AuthorizesRequests.php │   │   │   │   │   ├── EmailVerificationRequest.php │   │   │   │   │   └── User.php │   │   │   │   ├── Bootstrap │   │   │   │   │   ├── BootProviders.php │   │   │   │   │   ├── HandleExceptions.php │   │   │   │   │   ├── LoadConfiguration.php │   │   │   │   │   ├── LoadEnvironmentVariables.php │   │   │   │   │   ├── RegisterFacades.php │   │   │   │   │   ├── RegisterProviders.php │   │   │   │   │   └── SetRequestForConsole.php │   │   │   │   ├── Bus │   │   │   │   │   ├── Dispatchable.php │   │   │   │   │   ├── DispatchesJobs.php │   │   │   │   │   ├── PendingChain.php │   │   │   │   │   ├── PendingClosureDispatch.php │   │   │   │   │   └── PendingDispatch.php │   │   │   │   ├── CacheBasedMaintenanceMode.php │   │   │   │   ├── Cloud.php │   │   │   │   ├── ComposerScripts.php │   │   │   │   ├── Concerns │   │   │   │   │   └── ResolvesDumpSource.php │   │   │   │   ├── Configuration │   │   │   │   │   ├── ApplicationBuilder.php │   │   │   │   │   ├── Exceptions.php │   │   │   │   │   └── Middleware.php │   │   │   │   ├── Console │   │   │   │   │   ├── AboutCommand.php │   │   │   │   │   ├── ApiInstallCommand.php │   │   │   │   │   ├── BroadcastingInstallCommand.php │   │   │   │   │   ├── CastMakeCommand.php │   │   │   │   │   ├── ChannelListCommand.php │   │   │   │   │   ├── ChannelMakeCommand.php │   │   │   │   │   ├── ClassMakeCommand.php │   │   │   │   │   ├── ClearCompiledCommand.php │   │   │   │   │   ├── CliDumper.php │   │   │   │   │   ├── ClosureCommand.php │   │   │   │   │   ├── ComponentMakeCommand.php │   │   │   │   │   ├── ConfigCacheCommand.php │   │   │   │   │   ├── ConfigClearCommand.php │   │   │   │   │   ├── ConfigPublishCommand.php │   │   │   │   │   ├── ConfigShowCommand.php │   │   │   │   │   ├── ConsoleMakeCommand.php │   │   │   │   │   ├── DocsCommand.php │   │   │   │   │   ├── DownCommand.php │   │   │   │   │   ├── EnumMakeCommand.php │   │   │   │   │   ├── EnvironmentCommand.php │   │   │   │   │   ├── EnvironmentDecryptCommand.php │   │   │   │   │   ├── EnvironmentEncryptCommand.php │   │   │   │   │   ├── EventCacheCommand.php │   │   │   │   │   ├── EventClearCommand.php │   │   │   │   │   ├── EventGenerateCommand.php │   │   │   │   │   ├── EventListCommand.php │   │   │   │   │   ├── EventMakeCommand.php │   │   │   │   │   ├── ExceptionMakeCommand.php │   │   │   │   │   ├── InteractsWithComposerPackages.php │   │   │   │   │   ├── InterfaceMakeCommand.php │   │   │   │   │   ├── JobMakeCommand.php │   │   │   │   │   ├── JobMiddlewareMakeCommand.php │   │   │   │   │   ├── Kernel.php │   │   │   │   │   ├── KeyGenerateCommand.php │   │   │   │   │   ├── LangPublishCommand.php │   │   │   │   │   ├── ListenerMakeCommand.php │   │   │   │   │   ├── MailMakeCommand.php │   │   │   │   │   ├── ModelMakeCommand.php │   │   │   │   │   ├── NotificationMakeCommand.php │   │   │   │   │   ├── ObserverMakeCommand.php │   │   │   │   │   ├── OptimizeClearCommand.php │   │   │   │   │   ├── OptimizeCommand.php │   │   │   │   │   ├── PackageDiscoverCommand.php │   │   │   │   │   ├── PolicyMakeCommand.php │   │   │   │   │   ├── ProviderMakeCommand.php │   │   │   │   │   ├── QueuedCommand.php │   │   │   │   │   ├── RequestMakeCommand.php │   │   │   │   │   ├── ResourceMakeCommand.php │   │   │   │   │   ├── RouteCacheCommand.php │   │   │   │   │   ├── RouteClearCommand.php │   │   │   │   │   ├── RouteListCommand.php │   │   │   │   │   ├── RuleMakeCommand.php │   │   │   │   │   ├── ScopeMakeCommand.php │   │   │   │   │   ├── ServeCommand.php │   │   │   │   │   ├── StorageLinkCommand.php │   │   │   │   │   ├── StorageUnlinkCommand.php │   │   │   │   │   ├── StubPublishCommand.php │   │   │   │   │   ├── TestMakeCommand.php │   │   │   │   │   ├── TraitMakeCommand.php │   │   │   │   │   ├── UpCommand.php │   │   │   │   │   ├── VendorPublishCommand.php │   │   │   │   │   ├── ViewCacheCommand.php │   │   │   │   │   ├── ViewClearCommand.php │   │   │   │   │   ├── ViewMakeCommand.php │   │   │   │   │   └── stubs │   │   │   │   │   ├── api-routes.stub │   │   │   │   │   ├── broadcasting-routes.stub │   │   │   │   │   ├── cast.inbound.stub │   │   │   │   │   ├── cast.stub │   │   │   │   │   ├── channel.stub │   │   │   │   │   ├── class.invokable.stub │   │   │   │   │   ├── class.stub │   │   │   │   │   ├── console.stub │   │   │   │   │   ├── echo-bootstrap-js.stub │   │   │   │   │   ├── echo-js-ably.stub │   │   │   │   │   ├── echo-js-pusher.stub │   │   │   │   │   ├── echo-js-reverb.stub │   │   │   │   │   ├── enum.backed.stub │   │   │   │   │   ├── enum.stub │   │   │   │   │   ├── event.stub │   │   │   │   │   ├── exception-render-report.stub │   │   │   │   │   ├── exception-render.stub │   │   │   │   │   ├── exception-report.stub │   │   │   │   │   ├── exception.stub │   │   │   │   │   ├── interface.stub │   │   │   │   │   ├── job.batched.queued.stub │   │   │   │   │   ├── job.middleware.stub │   │   │   │   │   ├── job.queued.stub │   │   │   │   │   ├── job.stub │   │   │   │   │   ├── listener.queued.stub │   │   │   │   │   ├── listener.stub │   │   │   │   │   ├── listener.typed.queued.stub │   │   │   │   │   ├── listener.typed.stub │   │   │   │   │   ├── mail.stub │   │   │   │   │   ├── maintenance-mode.stub │   │   │   │   │   ├── markdown-mail.stub │   │   │   │   │   ├── markdown-notification.stub │   │   │   │   │   ├── markdown.stub │   │   │   │   │   ├── model.morph-pivot.stub │   │   │   │   │   ├── model.pivot.stub │   │   │   │   │   ├── model.stub │   │   │   │   │   ├── notification.stub │   │   │   │   │   ├── observer.plain.stub │   │   │   │   │   ├── observer.stub │   │   │   │   │   ├── pest.stub │   │   │   │   │   ├── pest.unit.stub │   │   │   │   │   ├── policy.plain.stub │   │   │   │   │   ├── policy.stub │   │   │   │   │   ├── provider.stub │   │   │   │   │   ├── request.stub │   │   │   │   │   ├── resource-collection.stub │   │   │   │   │   ├── resource.stub │   │   │   │   │   ├── routes.stub │   │   │   │   │   ├── rule.implicit.stub │   │   │   │   │   ├── rule.stub │   │   │   │   │   ├── scope.stub │   │   │   │   │   ├── test.stub │   │   │   │   │   ├── test.unit.stub │   │   │   │   │   ├── trait.stub │   │   │   │   │   ├── view-component.stub │   │   │   │   │   ├── view-mail.stub │   │   │   │   │   ├── view.pest.stub │   │   │   │   │   ├── view.stub │   │   │   │   │   └── view.test.stub │   │   │   │   ├── EnvironmentDetector.php │   │   │   │   ├── Events │   │   │   │   │   ├── DiagnosingHealth.php │   │   │   │   │   ├── DiscoverEvents.php │   │   │   │   │   ├── Dispatchable.php │   │   │   │   │   ├── LocaleUpdated.php │   │   │   │   │   ├── MaintenanceModeDisabled.php │   │   │   │   │   ├── MaintenanceModeEnabled.php │   │   │   │   │   ├── PublishingStubs.php │   │   │   │   │   ├── Terminating.php │   │   │   │   │   └── VendorTagPublished.php │   │   │   │   ├── Exceptions │   │   │   │   │   ├── Handler.php │   │   │   │   │   ├── RegisterErrorViewPaths.php │   │   │   │   │   ├── Renderer │   │   │   │   │   │   ├── Exception.php │   │   │   │   │   │   ├── Frame.php │   │   │   │   │   │   ├── Listener.php │   │   │   │   │   │   ├── Mappers │   │   │   │   │   │   │   └── BladeMapper.php │   │   │   │   │   │   └── Renderer.php │   │   │   │   │   ├── ReportableHandler.php │   │   │   │   │   ├── Whoops │   │   │   │   │   │   ├── WhoopsExceptionRenderer.php │   │   │   │   │   │   └── WhoopsHandler.php │   │   │   │   │   └── views │   │   │   │   │   ├── 401.blade.php │   │   │   │   │   ├── 402.blade.php │   │   │   │   │   ├── 403.blade.php │   │   │   │   │   ├── 404.blade.php │   │   │   │   │   ├── 419.blade.php │   │   │   │   │   ├── 429.blade.php │   │   │   │   │   ├── 500.blade.php │   │   │   │   │   ├── 503.blade.php │   │   │   │   │   ├── layout.blade.php │   │   │   │   │   └── minimal.blade.php │   │   │   │   ├── FileBasedMaintenanceMode.php │   │   │   │   ├── Http │   │   │   │   │   ├── Events │   │   │   │   │   │   └── RequestHandled.php │   │   │   │   │   ├── FormRequest.php │   │   │   │   │   ├── HtmlDumper.php │   │   │   │   │   ├── Kernel.php │   │   │   │   │   ├── MaintenanceModeBypassCookie.php │   │   │   │   │   └── Middleware │   │   │   │   │   ├── CheckForMaintenanceMode.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   └── ExcludesPaths.php │   │   │   │   │   ├── ConvertEmptyStringsToNull.php │   │   │   │   │   ├── HandlePrecognitiveRequests.php │   │   │   │   │   ├── InvokeDeferredCallbacks.php │   │   │   │   │   ├── PreventRequestsDuringMaintenance.php │   │   │   │   │   ├── TransformsRequest.php │   │   │   │   │   ├── TrimStrings.php │   │   │   │   │   ├── ValidateCsrfToken.php │   │   │   │   │   ├── ValidatePostSize.php │   │   │   │   │   └── VerifyCsrfToken.php │   │   │   │   ├── Inspiring.php │   │   │   │   ├── MaintenanceModeManager.php │   │   │   │   ├── Mix.php │   │   │   │   ├── MixFileNotFoundException.php │   │   │   │   ├── MixManifestNotFoundException.php │   │   │   │   ├── PackageManifest.php │   │   │   │   ├── Precognition.php │   │   │   │   ├── ProviderRepository.php │   │   │   │   ├── Providers │   │   │   │   │   ├── ArtisanServiceProvider.php │   │   │   │   │   ├── ComposerServiceProvider.php │   │   │   │   │   ├── ConsoleSupportServiceProvider.php │   │   │   │   │   ├── FormRequestServiceProvider.php │   │   │   │   │   └── FoundationServiceProvider.php │   │   │   │   ├── Queue │   │   │   │   │   ├── InteractsWithUniqueJobs.php │   │   │   │   │   └── Queueable.php │   │   │   │   ├── Routing │   │   │   │   │   ├── PrecognitionCallableDispatcher.php │   │   │   │   │   └── PrecognitionControllerDispatcher.php │   │   │   │   ├── Support │   │   │   │   │   └── Providers │   │   │   │   │   ├── AuthServiceProvider.php │   │   │   │   │   ├── EventServiceProvider.php │   │   │   │   │   └── RouteServiceProvider.php │   │   │   │   ├── Testing │   │   │   │   │   ├── Concerns │   │   │   │   │   │   ├── InteractsWithAuthentication.php │   │   │   │   │   │   ├── InteractsWithConsole.php │   │   │   │   │   │   ├── InteractsWithContainer.php │   │   │   │   │   │   ├── InteractsWithDatabase.php │   │   │   │   │   │   ├── InteractsWithDeprecationHandling.php │   │   │   │   │   │   ├── InteractsWithExceptionHandling.php │   │   │   │   │   │   ├── InteractsWithRedis.php │   │   │   │   │   │   ├── InteractsWithSession.php │   │   │   │   │   │   ├── InteractsWithTestCaseLifecycle.php │   │   │   │   │   │   ├── InteractsWithTime.php │   │   │   │   │   │   ├── InteractsWithViews.php │   │   │   │   │   │   ├── MakesHttpRequests.php │   │   │   │   │   │   └── WithoutExceptionHandlingHandler.php │   │   │   │   │   ├── DatabaseMigrations.php │   │   │   │   │   ├── DatabaseTransactions.php │   │   │   │   │   ├── DatabaseTransactionsManager.php │   │   │   │   │   ├── DatabaseTruncation.php │   │   │   │   │   ├── LazilyRefreshDatabase.php │   │   │   │   │   ├── RefreshDatabase.php │   │   │   │   │   ├── RefreshDatabaseState.php │   │   │   │   │   ├── TestCase.php │   │   │   │   │   ├── Traits │   │   │   │   │   │   └── CanConfigureMigrationCommands.php │   │   │   │   │   ├── WithConsoleEvents.php │   │   │   │   │   ├── WithFaker.php │   │   │   │   │   ├── WithoutMiddleware.php │   │   │   │   │   └── Wormhole.php │   │   │   │   ├── Validation │   │   │   │   │   └── ValidatesRequests.php │   │   │   │   ├── Vite.php │   │   │   │   ├── ViteException.php │   │   │   │   ├── ViteManifestNotFoundException.php │   │   │   │   ├── helpers.php │   │   │   │   ├── resources │   │   │   │   │   ├── exceptions │   │   │   │   │   │   └── renderer │   │   │   │   │   │   ├── components │   │   │   │   │   │   │   ├── card.blade.php │   │   │   │   │   │   │   ├── context.blade.php │   │   │   │   │   │   │   ├── editor.blade.php │   │   │   │   │   │   │   ├── header.blade.php │   │   │   │   │   │   │   ├── icons │   │   │   │   │   │   │   │   ├── chevron-down.blade.php │   │   │   │   │   │   │   │   ├── chevron-up.blade.php │   │   │   │   │   │   │   │   ├── computer-desktop.blade.php │   │   │   │   │   │   │   │   ├── moon.blade.php │   │   │   │   │   │   │   │   └── sun.blade.php │   │   │   │   │   │   │   ├── layout.blade.php │   │   │   │   │   │   │   ├── navigation.blade.php │   │   │   │   │   │   │   ├── theme-switcher.blade.php │   │   │   │   │   │   │   ├── trace-and-editor.blade.php │   │   │   │   │   │   │   └── trace.blade.php │   │   │   │   │   │   ├── dark-mode.css │   │   │   │   │   │   ├── dist │   │   │   │   │   │   │   ├── dark-mode.css │   │   │   │   │   │   │   ├── light-mode.css │   │   │   │   │   │   │   ├── scripts.js │   │   │   │   │   │   │   └── styles.css │   │   │   │   │   │   ├── light-mode.css │   │   │   │   │   │   ├── package-lock.json │   │   │   │   │   │   ├── package.json │   │   │   │   │   │   ├── postcss.config.js │   │   │   │   │   │   ├── scripts.js │   │   │   │   │   │   ├── show.blade.php │   │   │   │   │   │   ├── styles.css │   │   │   │   │   │   ├── tailwind.config.js │   │   │   │   │   │   └── vite.config.js │   │   │   │   │   ├── health-up.blade.php │   │   │   │   │   └── server.php │   │   │   │   └── stubs │   │   │   │   └── facade.stub │   │   │   ├── Hashing │   │   │   │   ├── AbstractHasher.php │   │   │   │   ├── Argon2IdHasher.php │   │   │   │   ├── ArgonHasher.php │   │   │   │   ├── BcryptHasher.php │   │   │   │   ├── HashManager.php │   │   │   │   ├── HashServiceProvider.php │   │   │   │   ├── LICENSE.md │   │   │   │   └── composer.json │   │   │   ├── Http │   │   │   │   ├── Client │   │   │   │   │   ├── Concerns │   │   │   │   │   │   └── DeterminesStatusCode.php │   │   │   │   │   ├── ConnectionException.php │   │   │   │   │   ├── Events │   │   │   │   │   │   ├── ConnectionFailed.php │   │   │   │   │   │   ├── RequestSending.php │   │   │   │   │   │   └── ResponseReceived.php │   │   │   │   │   ├── Factory.php │   │   │   │   │   ├── HttpClientException.php │   │   │   │   │   ├── PendingRequest.php │   │   │   │   │   ├── Pool.php │   │   │   │   │   ├── Request.php │   │   │   │   │   ├── RequestException.php │   │   │   │   │   ├── Response.php │   │   │   │   │   ├── ResponseSequence.php │   │   │   │   │   └── StrayRequestException.php │   │   │   │   ├── Concerns │   │   │   │   │   ├── CanBePrecognitive.php │   │   │   │   │   ├── InteractsWithContentTypes.php │   │   │   │   │   ├── InteractsWithFlashData.php │   │   │   │   │   └── InteractsWithInput.php │   │   │   │   ├── Exceptions │   │   │   │   │   ├── HttpResponseException.php │   │   │   │   │   ├── MalformedUrlException.php │   │   │   │   │   ├── PostTooLargeException.php │   │   │   │   │   └── ThrottleRequestsException.php │   │   │   │   ├── File.php │   │   │   │   ├── FileHelpers.php │   │   │   │   ├── JsonResponse.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Middleware │   │   │   │   │   ├── AddLinkHeadersForPreloadedAssets.php │   │   │   │   │   ├── CheckResponseForModifications.php │   │   │   │   │   ├── FrameGuard.php │   │   │   │   │   ├── HandleCors.php │   │   │   │   │   ├── SetCacheHeaders.php │   │   │   │   │   ├── TrustHosts.php │   │   │   │   │   ├── TrustProxies.php │   │   │   │   │   ├── ValidatePathEncoding.php │   │   │   │   │   └── ValidatePostSize.php │   │   │   │   ├── RedirectResponse.php │   │   │   │   ├── Request.php │   │   │   │   ├── Resources │   │   │   │   │   ├── CollectsResources.php │   │   │   │   │   ├── ConditionallyLoadsAttributes.php │   │   │   │   │   ├── DelegatesToResource.php │   │   │   │   │   ├── Json │   │   │   │   │   │   ├── AnonymousResourceCollection.php │   │   │   │   │   │   ├── JsonResource.php │   │   │   │   │   │   ├── PaginatedResourceResponse.php │   │   │   │   │   │   ├── ResourceCollection.php │   │   │   │   │   │   └── ResourceResponse.php │   │   │   │   │   ├── MergeValue.php │   │   │   │   │   ├── MissingValue.php │   │   │   │   │   └── PotentiallyMissing.php │   │   │   │   ├── Response.php │   │   │   │   ├── ResponseTrait.php │   │   │   │   ├── StreamedEvent.php │   │   │   │   ├── Testing │   │   │   │   │   ├── File.php │   │   │   │   │   ├── FileFactory.php │   │   │   │   │   └── MimeType.php │   │   │   │   ├── UploadedFile.php │   │   │   │   └── composer.json │   │   │   ├── Log │   │   │   │   ├── Context │   │   │   │   │   ├── ContextLogProcessor.php │   │   │   │   │   ├── ContextServiceProvider.php │   │   │   │   │   ├── Events │   │   │   │   │   │   ├── ContextDehydrating.php │   │   │   │   │   │   └── ContextHydrated.php │   │   │   │   │   └── Repository.php │   │   │   │   ├── Events │   │   │   │   │   └── MessageLogged.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── LogManager.php │   │   │   │   ├── LogServiceProvider.php │   │   │   │   ├── Logger.php │   │   │   │   ├── ParsesLogConfiguration.php │   │   │   │   ├── composer.json │   │   │   │   └── functions.php │   │   │   ├── Macroable │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Traits │   │   │   │   │   └── Macroable.php │   │   │   │   └── composer.json │   │   │   ├── Mail │   │   │   │   ├── Attachment.php │   │   │   │   ├── Events │   │   │   │   │   ├── MessageSending.php │   │   │   │   │   └── MessageSent.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── MailManager.php │   │   │   │   ├── MailServiceProvider.php │   │   │   │   ├── Mailable.php │   │   │   │   ├── Mailables │   │   │   │   │   ├── Address.php │   │   │   │   │   ├── Attachment.php │   │   │   │   │   ├── Content.php │   │   │   │   │   ├── Envelope.php │   │   │   │   │   └── Headers.php │   │   │   │   ├── Mailer.php │   │   │   │   ├── Markdown.php │   │   │   │   ├── Message.php │   │   │   │   ├── PendingMail.php │   │   │   │   ├── SendQueuedMailable.php │   │   │   │   ├── SentMessage.php │   │   │   │   ├── TextMessage.php │   │   │   │   ├── Transport │   │   │   │   │   ├── ArrayTransport.php │   │   │   │   │   ├── LogTransport.php │   │   │   │   │   ├── ResendTransport.php │   │   │   │   │   ├── SesTransport.php │   │   │   │   │   └── SesV2Transport.php │   │   │   │   ├── composer.json │   │   │   │   └── resources │   │   │   │   └── views │   │   │   │   ├── html │   │   │   │   │   ├── button.blade.php │   │   │   │   │   ├── footer.blade.php │   │   │   │   │   ├── header.blade.php │   │   │   │   │   ├── layout.blade.php │   │   │   │   │   ├── message.blade.php │   │   │   │   │   ├── panel.blade.php │   │   │   │   │   ├── subcopy.blade.php │   │   │   │   │   ├── table.blade.php │   │   │   │   │   └── themes │   │   │   │   │   └── default.css │   │   │   │   └── text │   │   │   │   ├── button.blade.php │   │   │   │   ├── footer.blade.php │   │   │   │   ├── header.blade.php │   │   │   │   ├── layout.blade.php │   │   │   │   ├── message.blade.php │   │   │   │   ├── panel.blade.php │   │   │   │   ├── subcopy.blade.php │   │   │   │   └── table.blade.php │   │   │   ├── Notifications │   │   │   │   ├── Action.php │   │   │   │   ├── AnonymousNotifiable.php │   │   │   │   ├── ChannelManager.php │   │   │   │   ├── Channels │   │   │   │   │   ├── BroadcastChannel.php │   │   │   │   │   ├── DatabaseChannel.php │   │   │   │   │   └── MailChannel.php │   │   │   │   ├── Console │   │   │   │   │   ├── NotificationTableCommand.php │   │   │   │   │   └── stubs │   │   │   │   │   └── notifications.stub │   │   │   │   ├── DatabaseNotification.php │   │   │   │   ├── DatabaseNotificationCollection.php │   │   │   │   ├── Events │   │   │   │   │   ├── BroadcastNotificationCreated.php │   │   │   │   │   ├── NotificationFailed.php │   │   │   │   │   ├── NotificationSending.php │   │   │   │   │   └── NotificationSent.php │   │   │   │   ├── HasDatabaseNotifications.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Messages │   │   │   │   │   ├── BroadcastMessage.php │   │   │   │   │   ├── DatabaseMessage.php │   │   │   │   │   ├── MailMessage.php │   │   │   │   │   └── SimpleMessage.php │   │   │   │   ├── Notifiable.php │   │   │   │   ├── Notification.php │   │   │   │   ├── NotificationSender.php │   │   │   │   ├── NotificationServiceProvider.php │   │   │   │   ├── RoutesNotifications.php │   │   │   │   ├── SendQueuedNotifications.php │   │   │   │   ├── composer.json │   │   │   │   └── resources │   │   │   │   └── views │   │   │   │   └── email.blade.php │   │   │   ├── Pagination │   │   │   │   ├── AbstractCursorPaginator.php │   │   │   │   ├── AbstractPaginator.php │   │   │   │   ├── Cursor.php │   │   │   │   ├── CursorPaginator.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── LengthAwarePaginator.php │   │   │   │   ├── PaginationServiceProvider.php │   │   │   │   ├── PaginationState.php │   │   │   │   ├── Paginator.php │   │   │   │   ├── UrlWindow.php │   │   │   │   ├── composer.json │   │   │   │   └── resources │   │   │   │   └── views │   │   │   │   ├── bootstrap-4.blade.php │   │   │   │   ├── bootstrap-5.blade.php │   │   │   │   ├── default.blade.php │   │   │   │   ├── semantic-ui.blade.php │   │   │   │   ├── simple-bootstrap-4.blade.php │   │   │   │   ├── simple-bootstrap-5.blade.php │   │   │   │   ├── simple-default.blade.php │   │   │   │   ├── simple-tailwind.blade.php │   │   │   │   └── tailwind.blade.php │   │   │   ├── Pipeline │   │   │   │   ├── Hub.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Pipeline.php │   │   │   │   ├── PipelineServiceProvider.php │   │   │   │   └── composer.json │   │   │   ├── Process │   │   │   │   ├── Exceptions │   │   │   │   │   ├── ProcessFailedException.php │   │   │   │   │   └── ProcessTimedOutException.php │   │   │   │   ├── Factory.php │   │   │   │   ├── FakeInvokedProcess.php │   │   │   │   ├── FakeProcessDescription.php │   │   │   │   ├── FakeProcessResult.php │   │   │   │   ├── FakeProcessSequence.php │   │   │   │   ├── InvokedProcess.php │   │   │   │   ├── InvokedProcessPool.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── PendingProcess.php │   │   │   │   ├── Pipe.php │   │   │   │   ├── Pool.php │   │   │   │   ├── ProcessPoolResults.php │   │   │   │   ├── ProcessResult.php │   │   │   │   └── composer.json │   │   │   ├── Queue │   │   │   │   ├── Attributes │   │   │   │   │   ├── DeleteWhenMissingModels.php │   │   │   │   │   └── WithoutRelations.php │   │   │   │   ├── BeanstalkdQueue.php │   │   │   │   ├── CallQueuedClosure.php │   │   │   │   ├── CallQueuedHandler.php │   │   │   │   ├── Capsule │   │   │   │   │   └── Manager.php │   │   │   │   ├── Connectors │   │   │   │   │   ├── BeanstalkdConnector.php │   │   │   │   │   ├── ConnectorInterface.php │   │   │   │   │   ├── DatabaseConnector.php │   │   │   │   │   ├── NullConnector.php │   │   │   │   │   ├── RedisConnector.php │   │   │   │   │   ├── SqsConnector.php │   │   │   │   │   └── SyncConnector.php │   │   │   │   ├── Console │   │   │   │   │   ├── BatchesTableCommand.php │   │   │   │   │   ├── ClearCommand.php │   │   │   │   │   ├── FailedTableCommand.php │   │   │   │   │   ├── FlushFailedCommand.php │   │   │   │   │   ├── ForgetFailedCommand.php │   │   │   │   │   ├── ListFailedCommand.php │   │   │   │   │   ├── ListenCommand.php │   │   │   │   │   ├── MonitorCommand.php │   │   │   │   │   ├── PruneBatchesCommand.php │   │   │   │   │   ├── PruneFailedJobsCommand.php │   │   │   │   │   ├── RestartCommand.php │   │   │   │   │   ├── RetryBatchCommand.php │   │   │   │   │   ├── RetryCommand.php │   │   │   │   │   ├── TableCommand.php │   │   │   │   │   ├── WorkCommand.php │   │   │   │   │   └── stubs │   │   │   │   │   ├── batches.stub │   │   │   │   │   ├── failed_jobs.stub │   │   │   │   │   └── jobs.stub │   │   │   │   ├── DatabaseQueue.php │   │   │   │   ├── Events │   │   │   │   │   ├── JobAttempted.php │   │   │   │   │   ├── JobExceptionOccurred.php │   │   │   │   │   ├── JobFailed.php │   │   │   │   │   ├── JobPopped.php │   │   │   │   │   ├── JobPopping.php │   │   │   │   │   ├── JobProcessed.php │   │   │   │   │   ├── JobProcessing.php │   │   │   │   │   ├── JobQueued.php │   │   │   │   │   ├── JobQueueing.php │   │   │   │   │   ├── JobReleasedAfterException.php │   │   │   │   │   ├── JobRetryRequested.php │   │   │   │   │   ├── JobTimedOut.php │   │   │   │   │   ├── Looping.php │   │   │   │   │   ├── QueueBusy.php │   │   │   │   │   ├── WorkerStarting.php │   │   │   │   │   └── WorkerStopping.php │   │   │   │   ├── Failed │   │   │   │   │   ├── CountableFailedJobProvider.php │   │   │   │   │   ├── DatabaseFailedJobProvider.php │   │   │   │   │   ├── DatabaseUuidFailedJobProvider.php │   │   │   │   │   ├── DynamoDbFailedJobProvider.php │   │   │   │   │   ├── FailedJobProviderInterface.php │   │   │   │   │   ├── FileFailedJobProvider.php │   │   │   │   │   ├── NullFailedJobProvider.php │   │   │   │   │   └── PrunableFailedJobProvider.php │   │   │   │   ├── InteractsWithQueue.php │   │   │   │   ├── InvalidPayloadException.php │   │   │   │   ├── Jobs │   │   │   │   │   ├── BeanstalkdJob.php │   │   │   │   │   ├── DatabaseJob.php │   │   │   │   │   ├── DatabaseJobRecord.php │   │   │   │   │   ├── FakeJob.php │   │   │   │   │   ├── Job.php │   │   │   │   │   ├── JobName.php │   │   │   │   │   ├── RedisJob.php │   │   │   │   │   ├── SqsJob.php │   │   │   │   │   └── SyncJob.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Listener.php │   │   │   │   ├── ListenerOptions.php │   │   │   │   ├── LuaScripts.php │   │   │   │   ├── ManuallyFailedException.php │   │   │   │   ├── MaxAttemptsExceededException.php │   │   │   │   ├── Middleware │   │   │   │   │   ├── FailOnException.php │   │   │   │   │   ├── RateLimited.php │   │   │   │   │   ├── RateLimitedWithRedis.php │   │   │   │   │   ├── Skip.php │   │   │   │   │   ├── SkipIfBatchCancelled.php │   │   │   │   │   ├── ThrottlesExceptions.php │   │   │   │   │   ├── ThrottlesExceptionsWithRedis.php │   │   │   │   │   └── WithoutOverlapping.php │   │   │   │   ├── NullQueue.php │   │   │   │   ├── Queue.php │   │   │   │   ├── QueueManager.php │   │   │   │   ├── QueueServiceProvider.php │   │   │   │   ├── README.md │   │   │   │   ├── RedisQueue.php │   │   │   │   ├── SerializesAndRestoresModelIdentifiers.php │   │   │   │   ├── SerializesModels.php │   │   │   │   ├── SqsQueue.php │   │   │   │   ├── SyncQueue.php │   │   │   │   ├── TimeoutExceededException.php │   │   │   │   ├── Worker.php │   │   │   │   ├── WorkerOptions.php │   │   │   │   └── composer.json │   │   │   ├── Redis │   │   │   │   ├── Connections │   │   │   │   │   ├── Connection.php │   │   │   │   │   ├── PacksPhpRedisValues.php │   │   │   │   │   ├── PhpRedisClusterConnection.php │   │   │   │   │   ├── PhpRedisConnection.php │   │   │   │   │   ├── PredisClusterConnection.php │   │   │   │   │   └── PredisConnection.php │   │   │   │   ├── Connectors │   │   │   │   │   ├── PhpRedisConnector.php │   │   │   │   │   └── PredisConnector.php │   │   │   │   ├── Events │   │   │   │   │   └── CommandExecuted.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Limiters │   │   │   │   │   ├── ConcurrencyLimiter.php │   │   │   │   │   ├── ConcurrencyLimiterBuilder.php │   │   │   │   │   ├── DurationLimiter.php │   │   │   │   │   └── DurationLimiterBuilder.php │   │   │   │   ├── RedisManager.php │   │   │   │   ├── RedisServiceProvider.php │   │   │   │   └── composer.json │   │   │   ├── Routing │   │   │   │   ├── AbstractRouteCollection.php │   │   │   │   ├── CallableDispatcher.php │   │   │   │   ├── CompiledRouteCollection.php │   │   │   │   ├── Console │   │   │   │   │   ├── ControllerMakeCommand.php │   │   │   │   │   ├── MiddlewareMakeCommand.php │   │   │   │   │   └── stubs │   │   │   │   │   ├── controller.api.stub │   │   │   │   │   ├── controller.invokable.stub │   │   │   │   │   ├── controller.model.api.stub │   │   │   │   │   ├── controller.model.stub │   │   │   │   │   ├── controller.nested.api.stub │   │   │   │   │   ├── controller.nested.singleton.api.stub │   │   │   │   │   ├── controller.nested.singleton.stub │   │   │   │   │   ├── controller.nested.stub │   │   │   │   │   ├── controller.plain.stub │   │   │   │   │   ├── controller.singleton.api.stub │   │   │   │   │   ├── controller.singleton.stub │   │   │   │   │   ├── controller.stub │   │   │   │   │   └── middleware.stub │   │   │   │   ├── Contracts │   │   │   │   │   ├── CallableDispatcher.php │   │   │   │   │   └── ControllerDispatcher.php │   │   │   │   ├── Controller.php │   │   │   │   ├── ControllerDispatcher.php │   │   │   │   ├── ControllerMiddlewareOptions.php │   │   │   │   ├── Controllers │   │   │   │   │   ├── HasMiddleware.php │   │   │   │   │   └── Middleware.php │   │   │   │   ├── CreatesRegularExpressionRouteConstraints.php │   │   │   │   ├── Events │   │   │   │   │   ├── PreparingResponse.php │   │   │   │   │   ├── ResponsePrepared.php │   │   │   │   │   ├── RouteMatched.php │   │   │   │   │   └── Routing.php │   │   │   │   ├── Exceptions │   │   │   │   │   ├── BackedEnumCaseNotFoundException.php │   │   │   │   │   ├── InvalidSignatureException.php │   │   │   │   │   ├── MissingRateLimiterException.php │   │   │   │   │   ├── StreamedResponseException.php │   │   │   │   │   └── UrlGenerationException.php │   │   │   │   ├── FiltersControllerMiddleware.php │   │   │   │   ├── ImplicitRouteBinding.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Matching │   │   │   │   │   ├── HostValidator.php │   │   │   │   │   ├── MethodValidator.php │   │   │   │   │   ├── SchemeValidator.php │   │   │   │   │   ├── UriValidator.php │   │   │   │   │   └── ValidatorInterface.php │   │   │   │   ├── Middleware │   │   │   │   │   ├── SubstituteBindings.php │   │   │   │   │   ├── ThrottleRequests.php │   │   │   │   │   ├── ThrottleRequestsWithRedis.php │   │   │   │   │   └── ValidateSignature.php │   │   │   │   ├── MiddlewareNameResolver.php │   │   │   │   ├── PendingResourceRegistration.php │   │   │   │   ├── PendingSingletonResourceRegistration.php │   │   │   │   ├── Pipeline.php │   │   │   │   ├── RedirectController.php │   │   │   │   ├── Redirector.php │   │   │   │   ├── ResolvesRouteDependencies.php │   │   │   │   ├── ResourceRegistrar.php │   │   │   │   ├── ResponseFactory.php │   │   │   │   ├── Route.php │   │   │   │   ├── RouteAction.php │   │   │   │   ├── RouteBinding.php │   │   │   │   ├── RouteCollection.php │   │   │   │   ├── RouteCollectionInterface.php │   │   │   │   ├── RouteDependencyResolverTrait.php │   │   │   │   ├── RouteFileRegistrar.php │   │   │   │   ├── RouteGroup.php │   │   │   │   ├── RouteParameterBinder.php │   │   │   │   ├── RouteRegistrar.php │   │   │   │   ├── RouteSignatureParameters.php │   │   │   │   ├── RouteUri.php │   │   │   │   ├── RouteUrlGenerator.php │   │   │   │   ├── Router.php │   │   │   │   ├── RoutingServiceProvider.php │   │   │   │   ├── SortedMiddleware.php │   │   │   │   ├── UrlGenerator.php │   │   │   │   ├── ViewController.php │   │   │   │   └── composer.json │   │   │   ├── Session │   │   │   │   ├── ArraySessionHandler.php │   │   │   │   ├── CacheBasedSessionHandler.php │   │   │   │   ├── Console │   │   │   │   │   ├── SessionTableCommand.php │   │   │   │   │   └── stubs │   │   │   │   │   └── database.stub │   │   │   │   ├── CookieSessionHandler.php │   │   │   │   ├── DatabaseSessionHandler.php │   │   │   │   ├── EncryptedStore.php │   │   │   │   ├── ExistenceAwareInterface.php │   │   │   │   ├── FileSessionHandler.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Middleware │   │   │   │   │   ├── AuthenticateSession.php │   │   │   │   │   └── StartSession.php │   │   │   │   ├── NullSessionHandler.php │   │   │   │   ├── SessionManager.php │   │   │   │   ├── SessionServiceProvider.php │   │   │   │   ├── Store.php │   │   │   │   ├── SymfonySessionDecorator.php │   │   │   │   ├── TokenMismatchException.php │   │   │   │   └── composer.json │   │   │   ├── Support │   │   │   │   ├── AggregateServiceProvider.php │   │   │   │   ├── Benchmark.php │   │   │   │   ├── Carbon.php │   │   │   │   ├── Composer.php │   │   │   │   ├── ConfigurationUrlParser.php │   │   │   │   ├── DateFactory.php │   │   │   │   ├── DefaultProviders.php │   │   │   │   ├── Defer │   │   │   │   │   ├── DeferredCallback.php │   │   │   │   │   └── DeferredCallbackCollection.php │   │   │   │   ├── EncodedHtmlString.php │   │   │   │   ├── Env.php │   │   │   │   ├── Exceptions │   │   │   │   │   └── MathException.php │   │   │   │   ├── Facades │   │   │   │   │   ├── App.php │   │   │   │   │   ├── Artisan.php │   │   │   │   │   ├── Auth.php │   │   │   │   │   ├── Blade.php │   │   │   │   │   ├── Broadcast.php │   │   │   │   │   ├── Bus.php │   │   │   │   │   ├── Cache.php │   │   │   │   │   ├── Concurrency.php │   │   │   │   │   ├── Config.php │   │   │   │   │   ├── Context.php │   │   │   │   │   ├── Cookie.php │   │   │   │   │   ├── Crypt.php │   │   │   │   │   ├── DB.php │   │   │   │   │   ├── Date.php │   │   │   │   │   ├── Event.php │   │   │   │   │   ├── Exceptions.php │   │   │   │   │   ├── Facade.php │   │   │   │   │   ├── File.php │   │   │   │   │   ├── Gate.php │   │   │   │   │   ├── Hash.php │   │   │   │   │   ├── Http.php │   │   │   │   │   ├── Lang.php │   │   │   │   │   ├── Log.php │   │   │   │   │   ├── Mail.php │   │   │   │   │   ├── MaintenanceMode.php │   │   │   │   │   ├── Notification.php │   │   │   │   │   ├── ParallelTesting.php │   │   │   │   │   ├── Password.php │   │   │   │   │   ├── Pipeline.php │   │   │   │   │   ├── Process.php │   │   │   │   │   ├── Queue.php │   │   │   │   │   ├── RateLimiter.php │   │   │   │   │   ├── Redirect.php │   │   │   │   │   ├── Redis.php │   │   │   │   │   ├── Request.php │   │   │   │   │   ├── Response.php │   │   │   │   │   ├── Route.php │   │   │   │   │   ├── Schedule.php │   │   │   │   │   ├── Schema.php │   │   │   │   │   ├── Session.php │   │   │   │   │   ├── Storage.php │   │   │   │   │   ├── URL.php │   │   │   │   │   ├── Validator.php │   │   │   │   │   ├── View.php │   │   │   │   │   └── Vite.php │   │   │   │   ├── Fluent.php │   │   │   │   ├── HigherOrderTapProxy.php │   │   │   │   ├── HtmlString.php │   │   │   │   ├── InteractsWithTime.php │   │   │   │   ├── Js.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── Lottery.php │   │   │   │   ├── Manager.php │   │   │   │   ├── MessageBag.php │   │   │   │   ├── MultipleInstanceManager.php │   │   │   │   ├── NamespacedItemResolver.php │   │   │   │   ├── Number.php │   │   │   │   ├── Once.php │   │   │   │   ├── Onceable.php │   │   │   │   ├── Optional.php │   │   │   │   ├── Pluralizer.php │   │   │   │   ├── ProcessUtils.php │   │   │   │   ├── Reflector.php │   │   │   │   ├── ServiceProvider.php │   │   │   │   ├── Sleep.php │   │   │   │   ├── Str.php │   │   │   │   ├── Stringable.php │   │   │   │   ├── Testing │   │   │   │   │   └── Fakes │   │   │   │   │   ├── BatchFake.php │   │   │   │   │   ├── BatchRepositoryFake.php │   │   │   │   │   ├── BusFake.php │   │   │   │   │   ├── ChainedBatchTruthTest.php │   │   │   │   │   ├── EventFake.php │   │   │   │   │   ├── ExceptionHandlerFake.php │   │   │   │   │   ├── Fake.php │   │   │   │   │   ├── MailFake.php │   │   │   │   │   ├── NotificationFake.php │   │   │   │   │   ├── PendingBatchFake.php │   │   │   │   │   ├── PendingChainFake.php │   │   │   │   │   ├── PendingMailFake.php │   │   │   │   │   └── QueueFake.php │   │   │   │   ├── Timebox.php │   │   │   │   ├── Traits │   │   │   │   │   ├── CapsuleManagerTrait.php │   │   │   │   │   ├── Dumpable.php │   │   │   │   │   ├── ForwardsCalls.php │   │   │   │   │   ├── InteractsWithData.php │   │   │   │   │   ├── Localizable.php │   │   │   │   │   ├── ReflectsClosures.php │   │   │   │   │   └── Tappable.php │   │   │   │   ├── Uri.php │   │   │   │   ├── UriQueryString.php │   │   │   │   ├── ValidatedInput.php │   │   │   │   ├── ViewErrorBag.php │   │   │   │   ├── composer.json │   │   │   │   ├── functions.php │   │   │   │   └── helpers.php │   │   │   ├── Testing │   │   │   │   ├── Assert.php │   │   │   │   ├── AssertableJsonString.php │   │   │   │   ├── Concerns │   │   │   │   │   ├── AssertsStatusCodes.php │   │   │   │   │   ├── RunsInParallel.php │   │   │   │   │   └── TestDatabases.php │   │   │   │   ├── Constraints │   │   │   │   │   ├── ArraySubset.php │   │   │   │   │   ├── CountInDatabase.php │   │   │   │   │   ├── HasInDatabase.php │   │   │   │   │   ├── NotSoftDeletedInDatabase.php │   │   │   │   │   ├── SeeInOrder.php │   │   │   │   │   └── SoftDeletedInDatabase.php │   │   │   │   ├── Exceptions │   │   │   │   │   └── InvalidArgumentException.php │   │   │   │   ├── Fluent │   │   │   │   │   ├── AssertableJson.php │   │   │   │   │   └── Concerns │   │   │   │   │   ├── Debugging.php │   │   │   │   │   ├── Has.php │   │   │   │   │   ├── Interaction.php │   │   │   │   │   └── Matching.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── LoggedExceptionCollection.php │   │   │   │   ├── ParallelConsoleOutput.php │   │   │   │   ├── ParallelRunner.php │   │   │   │   ├── ParallelTesting.php │   │   │   │   ├── ParallelTestingServiceProvider.php │   │   │   │   ├── PendingCommand.php │   │   │   │   ├── TestComponent.php │   │   │   │   ├── TestResponse.php │   │   │   │   ├── TestResponseAssert.php │   │   │   │   ├── TestView.php │   │   │   │   └── composer.json │   │   │   ├── Translation │   │   │   │   ├── ArrayLoader.php │   │   │   │   ├── CreatesPotentiallyTranslatedStrings.php │   │   │   │   ├── FileLoader.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── MessageSelector.php │   │   │   │   ├── PotentiallyTranslatedString.php │   │   │   │   ├── TranslationServiceProvider.php │   │   │   │   ├── Translator.php │   │   │   │   ├── composer.json │   │   │   │   └── lang │   │   │   │   └── en │   │   │   │   ├── auth.php │   │   │   │   ├── pagination.php │   │   │   │   ├── passwords.php │   │   │   │   └── validation.php │   │   │   ├── Validation │   │   │   │   ├── ClosureValidationRule.php │   │   │   │   ├── Concerns │   │   │   │   │   ├── FilterEmailValidation.php │   │   │   │   │   ├── FormatsMessages.php │   │   │   │   │   ├── ReplacesAttributes.php │   │   │   │   │   └── ValidatesAttributes.php │   │   │   │   ├── ConditionalRules.php │   │   │   │   ├── DatabasePresenceVerifier.php │   │   │   │   ├── DatabasePresenceVerifierInterface.php │   │   │   │   ├── Factory.php │   │   │   │   ├── InvokableValidationRule.php │   │   │   │   ├── LICENSE.md │   │   │   │   ├── NestedRules.php │   │   │   │   ├── NotPwnedVerifier.php │   │   │   │   ├── PresenceVerifierInterface.php │   │   │   │   ├── Rule.php │   │   │   │   ├── Rules │   │   │   │   │   ├── AnyOf.php │   │   │   │   │   ├── ArrayRule.php │   │   │   │   │   ├── Can.php │   │   │   │   │   ├── Contains.php │   │   │   │   │   ├── DatabaseRule.php │   │   │   │   │   ├── Date.php │   │   │   │   │   ├── Dimensions.php │   │   │   │   │   ├── Email.php │   │   │   │   │   ├── Enum.php │   │   │   │   │   ├── ExcludeIf.php │   │   │   │   │   ├── Exists.php │   │   │   │   │   ├── File.php │   │   │   │   │   ├── ImageFile.php │   │   │   │   │   ├── In.php │   │   │   │   │   ├── NotIn.php │   │   │   │   │   ├── Numeric.php │   │   │   │   │   ├── Password.php │   │   │   │   │   ├── ProhibitedIf.php │   │   │   │   │   ├── RequiredIf.php │   │   │   │   │   └── Unique.php │   │   │   │   ├── UnauthorizedException.php │   │   │   │   ├── ValidatesWhenResolvedTrait.php │   │   │   │   ├── ValidationData.php │   │   │   │   ├── ValidationException.php │   │   │   │   ├── ValidationRuleParser.php │   │   │   │   ├── ValidationServiceProvider.php │   │   │   │   ├── Validator.php │   │   │   │   └── composer.json │   │   │   └── View │   │   │   ├── AnonymousComponent.php │   │   │   ├── AppendableAttributeValue.php │   │   │   ├── Compilers │   │   │   │   ├── BladeCompiler.php │   │   │   │   ├── Compiler.php │   │   │   │   ├── CompilerInterface.php │   │   │   │   ├── ComponentTagCompiler.php │   │   │   │   └── Concerns │   │   │   │   ├── CompilesAuthorizations.php │   │   │   │   ├── CompilesClasses.php │   │   │   │   ├── CompilesComments.php │   │   │   │   ├── CompilesComponents.php │   │   │   │   ├── CompilesConditionals.php │   │   │   │   ├── CompilesContexts.php │   │   │   │   ├── CompilesEchos.php │   │   │   │   ├── CompilesErrors.php │   │   │   │   ├── CompilesFragments.php │   │   │   │   ├── CompilesHelpers.php │   │   │   │   ├── CompilesIncludes.php │   │   │   │   ├── CompilesInjections.php │   │   │   │   ├── CompilesJs.php │   │   │   │   ├── CompilesJson.php │   │   │   │   ├── CompilesLayouts.php │   │   │   │   ├── CompilesLoops.php │   │   │   │   ├── CompilesRawPhp.php │   │   │   │   ├── CompilesSessions.php │   │   │   │   ├── CompilesStacks.php │   │   │   │   ├── CompilesStyles.php │   │   │   │   ├── CompilesTranslations.php │   │   │   │   └── CompilesUseStatements.php │   │   │   ├── Component.php │   │   │   ├── ComponentAttributeBag.php │   │   │   ├── ComponentSlot.php │   │   │   ├── Concerns │   │   │   │   ├── ManagesComponents.php │   │   │   │   ├── ManagesEvents.php │   │   │   │   ├── ManagesFragments.php │   │   │   │   ├── ManagesLayouts.php │   │   │   │   ├── ManagesLoops.php │   │   │   │   ├── ManagesStacks.php │   │   │   │   └── ManagesTranslations.php │   │   │   ├── DynamicComponent.php │   │   │   ├── Engines │   │   │   │   ├── CompilerEngine.php │   │   │   │   ├── Engine.php │   │   │   │   ├── EngineResolver.php │   │   │   │   ├── FileEngine.php │   │   │   │   └── PhpEngine.php │   │   │   ├── Factory.php │   │   │   ├── FileViewFinder.php │   │   │   ├── InvokableComponentVariable.php │   │   │   ├── LICENSE.md │   │   │   ├── Middleware │   │   │   │   └── ShareErrorsFromSession.php │   │   │   ├── View.php │   │   │   ├── ViewException.php │   │   │   ├── ViewFinderInterface.php │   │   │   ├── ViewName.php │   │   │   ├── ViewServiceProvider.php │   │   │   └── composer.json │   │   ├── pail │   │   │   ├── LICENSE.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Console │   │   │   │   └── Commands │   │   │   │   └── PailCommand.php │   │   │   ├── Contracts │   │   │   │   └── Printer.php │   │   │   ├── File.php │   │   │   ├── Files.php │   │   │   ├── Guards │   │   │   │   └── EnsurePcntlIsAvailable.php │   │   │   ├── Handler.php │   │   │   ├── LoggerFactory.php │   │   │   ├── Options.php │   │   │   ├── PailServiceProvider.php │   │   │   ├── Printers │   │   │   │   └── CliPrinter.php │   │   │   ├── ProcessFactory.php │   │   │   └── ValueObjects │   │   │   ├── MessageLogged.php │   │   │   └── Origin │   │   │   ├── Console.php │   │   │   ├── Http.php │   │   │   └── Queue.php │   │   ├── pint │   │   │   ├── LICENSE.md │   │   │   ├── builds │   │   │   │   └── pint │   │   │   ├── composer.json │   │   │   └── overrides │   │   │   └── Runner │   │   │   └── Parallel │   │   │   └── ProcessFactory.php │   │   ├── prompts │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   ├── phpunit.xml │   │   │   └── src │   │   │   ├── Clear.php │   │   │   ├── Concerns │   │   │   │   ├── Colors.php │   │   │   │   ├── Cursor.php │   │   │   │   ├── Erase.php │   │   │   │   ├── Events.php │   │   │   │   ├── FakesInputOutput.php │   │   │   │   ├── Fallback.php │   │   │   │   ├── Interactivity.php │   │   │   │   ├── Scrolling.php │   │   │   │   ├── Termwind.php │   │   │   │   ├── Themes.php │   │   │   │   ├── Truncation.php │   │   │   │   └── TypedValue.php │   │   │   ├── ConfirmPrompt.php │   │   │   ├── Exceptions │   │   │   │   ├── FormRevertedException.php │   │   │   │   └── NonInteractiveValidationException.php │   │   │   ├── FormBuilder.php │   │   │   ├── FormStep.php │   │   │   ├── Key.php │   │   │   ├── MultiSearchPrompt.php │   │   │   ├── MultiSelectPrompt.php │   │   │   ├── Note.php │   │   │   ├── Output │   │   │   │   ├── BufferedConsoleOutput.php │   │   │   │   └── ConsoleOutput.php │   │   │   ├── PasswordPrompt.php │   │   │   ├── PausePrompt.php │   │   │   ├── Progress.php │   │   │   ├── Prompt.php │   │   │   ├── SearchPrompt.php │   │   │   ├── SelectPrompt.php │   │   │   ├── Spinner.php │   │   │   ├── SuggestPrompt.php │   │   │   ├── Support │   │   │   │   ├── Result.php │   │   │   │   └── Utils.php │   │   │   ├── Table.php │   │   │   ├── Terminal.php │   │   │   ├── TextPrompt.php │   │   │   ├── TextareaPrompt.php │   │   │   ├── Themes │   │   │   │   ├── Contracts │   │   │   │   │   └── Scrolling.php │   │   │   │   └── Default │   │   │   │   ├── ClearRenderer.php │   │   │   │   ├── Concerns │   │   │   │   │   ├── DrawsBoxes.php │   │   │   │   │   ├── DrawsScrollbars.php │   │   │   │   │   └── InteractsWithStrings.php │   │   │   │   ├── ConfirmPromptRenderer.php │   │   │   │   ├── MultiSearchPromptRenderer.php │   │   │   │   ├── MultiSelectPromptRenderer.php │   │   │   │   ├── NoteRenderer.php │   │   │   │   ├── PasswordPromptRenderer.php │   │   │   │   ├── PausePromptRenderer.php │   │   │   │   ├── ProgressRenderer.php │   │   │   │   ├── Renderer.php │   │   │   │   ├── SearchPromptRenderer.php │   │   │   │   ├── SelectPromptRenderer.php │   │   │   │   ├── SpinnerRenderer.php │   │   │   │   ├── SuggestPromptRenderer.php │   │   │   │   ├── TableRenderer.php │   │   │   │   ├── TextPromptRenderer.php │   │   │   │   └── TextareaPromptRenderer.php │   │   │   └── helpers.php │   │   ├── sail │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── bin │   │   │   │   └── sail │   │   │   ├── composer.json │   │   │   ├── database │   │   │   │   ├── mariadb │   │   │   │   │   └── create-testing-database.sh │   │   │   │   ├── mysql │   │   │   │   │   └── create-testing-database.sh │   │   │   │   └── pgsql │   │   │   │   └── create-testing-database.sql │   │   │   ├── runtimes │   │   │   │   ├── 8.0 │   │   │   │   │   ├── Dockerfile │   │   │   │   │   ├── php.ini │   │   │   │   │   ├── start-container │   │   │   │   │   └── supervisord.conf │   │   │   │   ├── 8.1 │   │   │   │   │   ├── Dockerfile │   │   │   │   │   ├── php.ini │   │   │   │   │   ├── start-container │   │   │   │   │   └── supervisord.conf │   │   │   │   ├── 8.2 │   │   │   │   │   ├── Dockerfile │   │   │   │   │   ├── php.ini │   │   │   │   │   ├── start-container │   │   │   │   │   └── supervisord.conf │   │   │   │   ├── 8.3 │   │   │   │   │   ├── Dockerfile │   │   │   │   │   ├── php.ini │   │   │   │   │   ├── start-container │   │   │   │   │   └── supervisord.conf │   │   │   │   └── 8.4 │   │   │   │   ├── Dockerfile │   │   │   │   ├── php.ini │   │   │   │   ├── start-container │   │   │   │   └── supervisord.conf │   │   │   ├── src │   │   │   │   ├── Console │   │   │   │   │   ├── AddCommand.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   └── InteractsWithDockerComposeServices.php │   │   │   │   │   ├── InstallCommand.php │   │   │   │   │   └── PublishCommand.php │   │   │   │   └── SailServiceProvider.php │   │   │   └── stubs │   │   │   ├── devcontainer.stub │   │   │   ├── docker-compose.stub │   │   │   ├── mailpit.stub │   │   │   ├── mariadb.stub │   │   │   ├── meilisearch.stub │   │   │   ├── memcached.stub │   │   │   ├── minio.stub │   │   │   ├── mongodb.stub │   │   │   ├── mysql.stub │   │   │   ├── pgsql.stub │   │   │   ├── rabbitmq.stub │   │   │   ├── redis.stub │   │   │   ├── selenium.stub │   │   │   ├── soketi.stub │   │   │   ├── typesense.stub │   │   │   └── valkey.stub │   │   ├── serializable-closure │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Contracts │   │   │   │   ├── Serializable.php │   │   │   │   └── Signer.php │   │   │   ├── Exceptions │   │   │   │   ├── InvalidSignatureException.php │   │   │   │   ├── MissingSecretKeyException.php │   │   │   │   └── PhpVersionNotSupportedException.php │   │   │   ├── SerializableClosure.php │   │   │   ├── Serializers │   │   │   │   ├── Native.php │   │   │   │   └── Signed.php │   │   │   ├── Signers │   │   │   │   └── Hmac.php │   │   │   ├── Support │   │   │   │   ├── ClosureScope.php │   │   │   │   ├── ClosureStream.php │   │   │   │   ├── ReflectionClosure.php │   │   │   │   └── SelfReference.php │   │   │   └── UnsignedSerializableClosure.php │   │   └── tinker │   │   ├── LICENSE.md │   │   ├── README.md │   │   ├── composer.json │   │   ├── config │   │   │   └── tinker.php │   │   └── src │   │   ├── ClassAliasAutoloader.php │   │   ├── Console │   │   │   └── TinkerCommand.php │   │   ├── TinkerCaster.php │   │   └── TinkerServiceProvider.php │   ├── league │   │   ├── commonmark │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── CommonMarkConverter.php │   │   │   ├── ConverterInterface.php │   │   │   ├── Delimiter │   │   │   │   ├── Bracket.php │   │   │   │   ├── Delimiter.php │   │   │   │   ├── DelimiterInterface.php │   │   │   │   ├── DelimiterParser.php │   │   │   │   ├── DelimiterStack.php │   │   │   │   └── Processor │   │   │   │   ├── CacheableDelimiterProcessorInterface.php │   │   │   │   ├── DelimiterProcessorCollection.php │   │   │   │   ├── DelimiterProcessorCollectionInterface.php │   │   │   │   ├── DelimiterProcessorInterface.php │   │   │   │   └── StaggeredDelimiterProcessor.php │   │   │   ├── Environment │   │   │   │   ├── Environment.php │   │   │   │   ├── EnvironmentAwareInterface.php │   │   │   │   ├── EnvironmentBuilderInterface.php │   │   │   │   └── EnvironmentInterface.php │   │   │   ├── Event │   │   │   │   ├── AbstractEvent.php │   │   │   │   ├── DocumentParsedEvent.php │   │   │   │   ├── DocumentPreParsedEvent.php │   │   │   │   ├── DocumentPreRenderEvent.php │   │   │   │   ├── DocumentRenderedEvent.php │   │   │   │   └── ListenerData.php │   │   │   ├── Exception │   │   │   │   ├── AlreadyInitializedException.php │   │   │   │   ├── CommonMarkException.php │   │   │   │   ├── IOException.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── LogicException.php │   │   │   │   ├── MissingDependencyException.php │   │   │   │   └── UnexpectedEncodingException.php │   │   │   ├── Extension │   │   │   │   ├── Attributes │   │   │   │   │   ├── AttributesExtension.php │   │   │   │   │   ├── Event │   │   │   │   │   │   └── AttributesListener.php │   │   │   │   │   ├── Node │   │   │   │   │   │   ├── Attributes.php │   │   │   │   │   │   └── AttributesInline.php │   │   │   │   │   ├── Parser │   │   │   │   │   │   ├── AttributesBlockContinueParser.php │   │   │   │   │   │   ├── AttributesBlockStartParser.php │   │   │   │   │   │   └── AttributesInlineParser.php │   │   │   │   │   └── Util │   │   │   │   │   └── AttributesHelper.php │   │   │   │   ├── Autolink │   │   │   │   │   ├── AutolinkExtension.php │   │   │   │   │   ├── EmailAutolinkParser.php │   │   │   │   │   └── UrlAutolinkParser.php │   │   │   │   ├── CommonMark │   │   │   │   │   ├── CommonMarkCoreExtension.php │   │   │   │   │   ├── Delimiter │   │   │   │   │   │   └── Processor │   │   │   │   │   │   └── EmphasisDelimiterProcessor.php │   │   │   │   │   ├── Node │   │   │   │   │   │   ├── Block │   │   │   │   │   │   │   ├── BlockQuote.php │   │   │   │   │   │   │   ├── FencedCode.php │   │   │   │   │   │   │   ├── Heading.php │   │   │   │   │   │   │   ├── HtmlBlock.php │   │   │   │   │   │   │   ├── IndentedCode.php │   │   │   │   │   │   │   ├── ListBlock.php │   │   │   │   │   │   │   ├── ListData.php │   │   │   │   │   │   │   ├── ListItem.php │   │   │   │   │   │   │   └── ThematicBreak.php │   │   │   │   │   │   └── Inline │   │   │   │   │   │   ├── AbstractWebResource.php │   │   │   │   │   │   ├── Code.php │   │   │   │   │   │   ├── Emphasis.php │   │   │   │   │   │   ├── HtmlInline.php │   │   │   │   │   │   ├── Image.php │   │   │   │   │   │   ├── Link.php │   │   │   │   │   │   └── Strong.php │   │   │   │   │   ├── Parser │   │   │   │   │   │   ├── Block │   │   │   │   │   │   │   ├── BlockQuoteParser.php │   │   │   │   │   │   │   ├── BlockQuoteStartParser.php │   │   │   │   │   │   │   ├── FencedCodeParser.php │   │   │   │   │   │   │   ├── FencedCodeStartParser.php │   │   │   │   │   │   │   ├── HeadingParser.php │   │   │   │   │   │   │   ├── HeadingStartParser.php │   │   │   │   │   │   │   ├── HtmlBlockParser.php │   │   │   │   │   │   │   ├── HtmlBlockStartParser.php │   │   │   │   │   │   │   ├── IndentedCodeParser.php │   │   │   │   │   │   │   ├── IndentedCodeStartParser.php │   │   │   │   │   │   │   ├── ListBlockParser.php │   │   │   │   │   │   │   ├── ListBlockStartParser.php │   │   │   │   │   │   │   ├── ListItemParser.php │   │   │   │   │   │   │   ├── ThematicBreakParser.php │   │   │   │   │   │   │   └── ThematicBreakStartParser.php │   │   │   │   │   │   └── Inline │   │   │   │   │   │   ├── AutolinkParser.php │   │   │   │   │   │   ├── BacktickParser.php │   │   │   │   │   │   ├── BangParser.php │   │   │   │   │   │   ├── CloseBracketParser.php │   │   │   │   │   │   ├── EntityParser.php │   │   │   │   │   │   ├── EscapableParser.php │   │   │   │   │   │   ├── HtmlInlineParser.php │   │   │   │   │   │   └── OpenBracketParser.php │   │   │   │   │   └── Renderer │   │   │   │   │   ├── Block │   │   │   │   │   │   ├── BlockQuoteRenderer.php │   │   │   │   │   │   ├── FencedCodeRenderer.php │   │   │   │   │   │   ├── HeadingRenderer.php │   │   │   │   │   │   ├── HtmlBlockRenderer.php │   │   │   │   │   │   ├── IndentedCodeRenderer.php │   │   │   │   │   │   ├── ListBlockRenderer.php │   │   │   │   │   │   ├── ListItemRenderer.php │   │   │   │   │   │   └── ThematicBreakRenderer.php │   │   │   │   │   └── Inline │   │   │   │   │   ├── CodeRenderer.php │   │   │   │   │   ├── EmphasisRenderer.php │   │   │   │   │   ├── HtmlInlineRenderer.php │   │   │   │   │   ├── ImageRenderer.php │   │   │   │   │   ├── LinkRenderer.php │   │   │   │   │   └── StrongRenderer.php │   │   │   │   ├── ConfigurableExtensionInterface.php │   │   │   │   ├── DefaultAttributes │   │   │   │   │   ├── ApplyDefaultAttributesProcessor.php │   │   │   │   │   └── DefaultAttributesExtension.php │   │   │   │   ├── DescriptionList │   │   │   │   │   ├── DescriptionListExtension.php │   │   │   │   │   ├── Event │   │   │   │   │   │   ├── ConsecutiveDescriptionListMerger.php │   │   │   │   │   │   └── LooseDescriptionHandler.php │   │   │   │   │   ├── Node │   │   │   │   │   │   ├── Description.php │   │   │   │   │   │   ├── DescriptionList.php │   │   │   │   │   │   └── DescriptionTerm.php │   │   │   │   │   ├── Parser │   │   │   │   │   │   ├── DescriptionContinueParser.php │   │   │   │   │   │   ├── DescriptionListContinueParser.php │   │   │   │   │   │   ├── DescriptionStartParser.php │   │   │   │   │   │   └── DescriptionTermContinueParser.php │   │   │   │   │   └── Renderer │   │   │   │   │   ├── DescriptionListRenderer.php │   │   │   │   │   ├── DescriptionRenderer.php │   │   │   │   │   └── DescriptionTermRenderer.php │   │   │   │   ├── DisallowedRawHtml │   │   │   │   │   ├── DisallowedRawHtmlExtension.php │   │   │   │   │   └── DisallowedRawHtmlRenderer.php │   │   │   │   ├── Embed │   │   │   │   │   ├── Bridge │   │   │   │   │   │   └── OscaroteroEmbedAdapter.php │   │   │   │   │   ├── DomainFilteringAdapter.php │   │   │   │   │   ├── Embed.php │   │   │   │   │   ├── EmbedAdapterInterface.php │   │   │   │   │   ├── EmbedExtension.php │   │   │   │   │   ├── EmbedParser.php │   │   │   │   │   ├── EmbedProcessor.php │   │   │   │   │   ├── EmbedRenderer.php │   │   │   │   │   └── EmbedStartParser.php │   │   │   │   ├── ExtensionInterface.php │   │   │   │   ├── ExternalLink │   │   │   │   │   ├── ExternalLinkExtension.php │   │   │   │   │   └── ExternalLinkProcessor.php │   │   │   │   ├── Footnote │   │   │   │   │   ├── Event │   │   │   │   │   │   ├── AnonymousFootnotesListener.php │   │   │   │   │   │   ├── FixOrphanedFootnotesAndRefsListener.php │   │   │   │   │   │   ├── GatherFootnotesListener.php │   │   │   │   │   │   └── NumberFootnotesListener.php │   │   │   │   │   ├── FootnoteExtension.php │   │   │   │   │   ├── Node │   │   │   │   │   │   ├── Footnote.php │   │   │   │   │   │   ├── FootnoteBackref.php │   │   │   │   │   │   ├── FootnoteContainer.php │   │   │   │   │   │   └── FootnoteRef.php │   │   │   │   │   ├── Parser │   │   │   │   │   │   ├── AnonymousFootnoteRefParser.php │   │   │   │   │   │   ├── FootnoteParser.php │   │   │   │   │   │   ├── FootnoteRefParser.php │   │   │   │   │   │   └── FootnoteStartParser.php │   │   │   │   │   └── Renderer │   │   │   │   │   ├── FootnoteBackrefRenderer.php │   │   │   │   │   ├── FootnoteContainerRenderer.php │   │   │   │   │   ├── FootnoteRefRenderer.php │   │   │   │   │   └── FootnoteRenderer.php │   │   │   │   ├── FrontMatter │   │   │   │   │   ├── Data │   │   │   │   │   │   ├── FrontMatterDataParserInterface.php │   │   │   │   │   │   ├── LibYamlFrontMatterParser.php │   │   │   │   │   │   └── SymfonyYamlFrontMatterParser.php │   │   │   │   │   ├── Exception │   │   │   │   │   │   └── InvalidFrontMatterException.php │   │   │   │   │   ├── FrontMatterExtension.php │   │   │   │   │   ├── FrontMatterParser.php │   │   │   │   │   ├── FrontMatterParserInterface.php │   │   │   │   │   ├── FrontMatterProviderInterface.php │   │   │   │   │   ├── Input │   │   │   │   │   │   └── MarkdownInputWithFrontMatter.php │   │   │   │   │   ├── Listener │   │   │   │   │   │   ├── FrontMatterPostRenderListener.php │   │   │   │   │   │   └── FrontMatterPreParser.php │   │   │   │   │   └── Output │   │   │   │   │   └── RenderedContentWithFrontMatter.php │   │   │   │   ├── GithubFlavoredMarkdownExtension.php │   │   │   │   ├── HeadingPermalink │   │   │   │   │   ├── HeadingPermalink.php │   │   │   │   │   ├── HeadingPermalinkExtension.php │   │   │   │   │   ├── HeadingPermalinkProcessor.php │   │   │   │   │   └── HeadingPermalinkRenderer.php │   │   │   │   ├── InlinesOnly │   │   │   │   │   ├── ChildRenderer.php │   │   │   │   │   └── InlinesOnlyExtension.php │   │   │   │   ├── Mention │   │   │   │   │   ├── Generator │   │   │   │   │   │   ├── CallbackGenerator.php │   │   │   │   │   │   ├── MentionGeneratorInterface.php │   │   │   │   │   │   └── StringTemplateLinkGenerator.php │   │   │   │   │   ├── Mention.php │   │   │   │   │   ├── MentionExtension.php │   │   │   │   │   └── MentionParser.php │   │   │   │   ├── SmartPunct │   │   │   │   │   ├── DashParser.php │   │   │   │   │   ├── EllipsesParser.php │   │   │   │   │   ├── Quote.php │   │   │   │   │   ├── QuoteParser.php │   │   │   │   │   ├── QuoteProcessor.php │   │   │   │   │   ├── ReplaceUnpairedQuotesListener.php │   │   │   │   │   └── SmartPunctExtension.php │   │   │   │   ├── Strikethrough │   │   │   │   │   ├── Strikethrough.php │   │   │   │   │   ├── StrikethroughDelimiterProcessor.php │   │   │   │   │   ├── StrikethroughExtension.php │   │   │   │   │   └── StrikethroughRenderer.php │   │   │   │   ├── Table │   │   │   │   │   ├── Table.php │   │   │   │   │   ├── TableCell.php │   │   │   │   │   ├── TableCellRenderer.php │   │   │   │   │   ├── TableExtension.php │   │   │   │   │   ├── TableParser.php │   │   │   │   │   ├── TableRenderer.php │   │   │   │   │   ├── TableRow.php │   │   │   │   │   ├── TableRowRenderer.php │   │   │   │   │   ├── TableSection.php │   │   │   │   │   ├── TableSectionRenderer.php │   │   │   │   │   └── TableStartParser.php │   │   │   │   ├── TableOfContents │   │   │   │   │   ├── Node │   │   │   │   │   │   ├── TableOfContents.php │   │   │   │   │   │   └── TableOfContentsPlaceholder.php │   │   │   │   │   ├── Normalizer │   │   │   │   │   │   ├── AsIsNormalizerStrategy.php │   │   │   │   │   │   ├── FlatNormalizerStrategy.php │   │   │   │   │   │   ├── NormalizerStrategyInterface.php │   │   │   │   │   │   └── RelativeNormalizerStrategy.php │   │   │   │   │   ├── TableOfContentsBuilder.php │   │   │   │   │   ├── TableOfContentsExtension.php │   │   │   │   │   ├── TableOfContentsGenerator.php │   │   │   │   │   ├── TableOfContentsGeneratorInterface.php │   │   │   │   │   ├── TableOfContentsPlaceholderParser.php │   │   │   │   │   ├── TableOfContentsPlaceholderRenderer.php │   │   │   │   │   └── TableOfContentsRenderer.php │   │   │   │   └── TaskList │   │   │   │   ├── TaskListExtension.php │   │   │   │   ├── TaskListItemMarker.php │   │   │   │   ├── TaskListItemMarkerParser.php │   │   │   │   └── TaskListItemMarkerRenderer.php │   │   │   ├── GithubFlavoredMarkdownConverter.php │   │   │   ├── Input │   │   │   │   ├── MarkdownInput.php │   │   │   │   └── MarkdownInputInterface.php │   │   │   ├── MarkdownConverter.php │   │   │   ├── MarkdownConverterInterface.php │   │   │   ├── Node │   │   │   │   ├── Block │   │   │   │   │   ├── AbstractBlock.php │   │   │   │   │   ├── Document.php │   │   │   │   │   ├── Paragraph.php │   │   │   │   │   └── TightBlockInterface.php │   │   │   │   ├── Inline │   │   │   │   │   ├── AbstractInline.php │   │   │   │   │   ├── AbstractStringContainer.php │   │   │   │   │   ├── AdjacentTextMerger.php │   │   │   │   │   ├── DelimitedInterface.php │   │   │   │   │   ├── Newline.php │   │   │   │   │   └── Text.php │   │   │   │   ├── Node.php │   │   │   │   ├── NodeIterator.php │   │   │   │   ├── NodeWalker.php │   │   │   │   ├── NodeWalkerEvent.php │   │   │   │   ├── Query │   │   │   │   │   ├── AndExpr.php │   │   │   │   │   ├── ExpressionInterface.php │   │   │   │   │   └── OrExpr.php │   │   │   │   ├── Query.php │   │   │   │   ├── RawMarkupContainerInterface.php │   │   │   │   ├── StringContainerHelper.php │   │   │   │   └── StringContainerInterface.php │   │   │   ├── Normalizer │   │   │   │   ├── SlugNormalizer.php │   │   │   │   ├── TextNormalizer.php │   │   │   │   ├── TextNormalizerInterface.php │   │   │   │   ├── UniqueSlugNormalizer.php │   │   │   │   └── UniqueSlugNormalizerInterface.php │   │   │   ├── Output │   │   │   │   ├── RenderedContent.php │   │   │   │   └── RenderedContentInterface.php │   │   │   ├── Parser │   │   │   │   ├── Block │   │   │   │   │   ├── AbstractBlockContinueParser.php │   │   │   │   │   ├── BlockContinue.php │   │   │   │   │   ├── BlockContinueParserInterface.php │   │   │   │   │   ├── BlockContinueParserWithInlinesInterface.php │   │   │   │   │   ├── BlockStart.php │   │   │   │   │   ├── BlockStartParserInterface.php │   │   │   │   │   ├── DocumentBlockParser.php │   │   │   │   │   ├── ParagraphParser.php │   │   │   │   │   └── SkipLinesStartingWithLettersParser.php │   │   │   │   ├── Cursor.php │   │   │   │   ├── CursorState.php │   │   │   │   ├── Inline │   │   │   │   │   ├── InlineParserInterface.php │   │   │   │   │   ├── InlineParserMatch.php │   │   │   │   │   └── NewlineParser.php │   │   │   │   ├── InlineParserContext.php │   │   │   │   ├── InlineParserEngine.php │   │   │   │   ├── InlineParserEngineInterface.php │   │   │   │   ├── MarkdownParser.php │   │   │   │   ├── MarkdownParserInterface.php │   │   │   │   ├── MarkdownParserState.php │   │   │   │   ├── MarkdownParserStateInterface.php │   │   │   │   └── ParserLogicException.php │   │   │   ├── Reference │   │   │   │   ├── MemoryLimitedReferenceMap.php │   │   │   │   ├── Reference.php │   │   │   │   ├── ReferenceInterface.php │   │   │   │   ├── ReferenceMap.php │   │   │   │   ├── ReferenceMapInterface.php │   │   │   │   ├── ReferenceParser.php │   │   │   │   └── ReferenceableInterface.php │   │   │   ├── Renderer │   │   │   │   ├── Block │   │   │   │   │   ├── DocumentRenderer.php │   │   │   │   │   └── ParagraphRenderer.php │   │   │   │   ├── ChildNodeRendererInterface.php │   │   │   │   ├── DocumentRendererInterface.php │   │   │   │   ├── HtmlDecorator.php │   │   │   │   ├── HtmlRenderer.php │   │   │   │   ├── Inline │   │   │   │   │   ├── NewlineRenderer.php │   │   │   │   │   └── TextRenderer.php │   │   │   │   ├── MarkdownRendererInterface.php │   │   │   │   ├── NoMatchingRendererException.php │   │   │   │   └── NodeRendererInterface.php │   │   │   ├── Util │   │   │   │   ├── ArrayCollection.php │   │   │   │   ├── Html5EntityDecoder.php │   │   │   │   ├── HtmlElement.php │   │   │   │   ├── HtmlFilter.php │   │   │   │   ├── LinkParserHelper.php │   │   │   │   ├── PrioritizedList.php │   │   │   │   ├── RegexHelper.php │   │   │   │   ├── SpecReader.php │   │   │   │   ├── UrlEncoder.php │   │   │   │   └── Xml.php │   │   │   └── Xml │   │   │   ├── FallbackNodeXmlRenderer.php │   │   │   ├── MarkdownToXmlConverter.php │   │   │   ├── XmlNodeRendererInterface.php │   │   │   └── XmlRenderer.php │   │   ├── config │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Configuration.php │   │   │   ├── ConfigurationAwareInterface.php │   │   │   ├── ConfigurationBuilderInterface.php │   │   │   ├── ConfigurationInterface.php │   │   │   ├── ConfigurationProviderInterface.php │   │   │   ├── Exception │   │   │   │   ├── ConfigurationExceptionInterface.php │   │   │   │   ├── InvalidConfigurationException.php │   │   │   │   ├── UnknownOptionException.php │   │   │   │   └── ValidationException.php │   │   │   ├── MutableConfigurationInterface.php │   │   │   ├── ReadOnlyConfiguration.php │   │   │   └── SchemaBuilderInterface.php │   │   ├── csv │   │   │   ├── LICENSE │   │   │   ├── autoload.php │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── AbstractCsv.php │   │   │   ├── Bom.php │   │   │   ├── Buffer.php │   │   │   ├── ByteSequence.php │   │   │   ├── CallbackStreamFilter.php │   │   │   ├── CannotInsertRecord.php │   │   │   ├── CharsetConverter.php │   │   │   ├── ColumnConsistency.php │   │   │   ├── EncloseField.php │   │   │   ├── EscapeFormula.php │   │   │   ├── Exception.php │   │   │   ├── FragmentFinder.php │   │   │   ├── FragmentNotFound.php │   │   │   ├── HTMLConverter.php │   │   │   ├── HttpHeaders.php │   │   │   ├── Info.php │   │   │   ├── InvalidArgument.php │   │   │   ├── JsonConverter.php │   │   │   ├── MapIterator.php │   │   │   ├── Query │   │   │   │   ├── Constraint │   │   │   │   │   ├── Column.php │   │   │   │   │   ├── Comparison.php │   │   │   │   │   ├── Criteria.php │   │   │   │   │   ├── Offset.php │   │   │   │   │   └── TwoColumns.php │   │   │   │   ├── Limit.php │   │   │   │   ├── Ordering │   │   │   │   │   ├── Column.php │   │   │   │   │   └── MultiSort.php │   │   │   │   ├── Predicate.php │   │   │   │   ├── PredicateCombinator.php │   │   │   │   ├── QueryException.php │   │   │   │   ├── Row.php │   │   │   │   ├── Sort.php │   │   │   │   └── SortCombinator.php │   │   │   ├── RFC4180Field.php │   │   │   ├── RdbmsResult.php │   │   │   ├── Reader.php │   │   │   ├── ResultSet.php │   │   │   ├── Serializer │   │   │   │   ├── AfterMapping.php │   │   │   │   ├── ArrayShape.php │   │   │   │   ├── CallbackCasting.php │   │   │   │   ├── CastToArray.php │   │   │   │   ├── CastToBool.php │   │   │   │   ├── CastToDate.php │   │   │   │   ├── CastToEnum.php │   │   │   │   ├── CastToFloat.php │   │   │   │   ├── CastToInt.php │   │   │   │   ├── CastToString.php │   │   │   │   ├── DenormalizationFailed.php │   │   │   │   ├── Denormalizer.php │   │   │   │   ├── MapCell.php │   │   │   │   ├── MapRecord.php │   │   │   │   ├── MappingFailed.php │   │   │   │   ├── PropertySetter.php │   │   │   │   ├── SerializationFailed.php │   │   │   │   ├── Type.php │   │   │   │   ├── TypeCasting.php │   │   │   │   ├── TypeCastingFailed.php │   │   │   │   ├── TypeCastingInfo.php │   │   │   │   └── TypeCastingTargetType.php │   │   │   ├── Statement.php │   │   │   ├── Stream.php │   │   │   ├── StreamFilter.php │   │   │   ├── SwapDelimiter.php │   │   │   ├── SyntaxError.php │   │   │   ├── TabularData.php │   │   │   ├── TabularDataReader.php │   │   │   ├── TabularDataWriter.php │   │   │   ├── UnableToProcessCsv.php │   │   │   ├── UnavailableFeature.php │   │   │   ├── UnavailableStream.php │   │   │   ├── Writer.php │   │   │   ├── XMLConverter.php │   │   │   ├── functions.php │   │   │   └── functions_include.php │   │   ├── flysystem │   │   │   ├── INFO.md │   │   │   ├── LICENSE │   │   │   ├── composer.json │   │   │   ├── readme.md │   │   │   └── src │   │   │   ├── CalculateChecksumFromStream.php │   │   │   ├── ChecksumAlgoIsNotSupported.php │   │   │   ├── ChecksumProvider.php │   │   │   ├── Config.php │   │   │   ├── CorruptedPathDetected.php │   │   │   ├── DecoratedAdapter.php │   │   │   ├── DirectoryAttributes.php │   │   │   ├── DirectoryListing.php │   │   │   ├── FileAttributes.php │   │   │   ├── Filesystem.php │   │   │   ├── FilesystemAdapter.php │   │   │   ├── FilesystemException.php │   │   │   ├── FilesystemOperationFailed.php │   │   │   ├── FilesystemOperator.php │   │   │   ├── FilesystemReader.php │   │   │   ├── FilesystemWriter.php │   │   │   ├── InvalidStreamProvided.php │   │   │   ├── InvalidVisibilityProvided.php │   │   │   ├── MountManager.php │   │   │   ├── PathNormalizer.php │   │   │   ├── PathPrefixer.php │   │   │   ├── PathTraversalDetected.php │   │   │   ├── PortableVisibilityGuard.php │   │   │   ├── ProxyArrayAccessToProperties.php │   │   │   ├── ResolveIdenticalPathConflict.php │   │   │   ├── StorageAttributes.php │   │   │   ├── SymbolicLinkEncountered.php │   │   │   ├── UnableToCheckDirectoryExistence.php │   │   │   ├── UnableToCheckExistence.php │   │   │   ├── UnableToCheckFileExistence.php │   │   │   ├── UnableToCopyFile.php │   │   │   ├── UnableToCreateDirectory.php │   │   │   ├── UnableToDeleteDirectory.php │   │   │   ├── UnableToDeleteFile.php │   │   │   ├── UnableToGeneratePublicUrl.php │   │   │   ├── UnableToGenerateTemporaryUrl.php │   │   │   ├── UnableToListContents.php │   │   │   ├── UnableToMountFilesystem.php │   │   │   ├── UnableToMoveFile.php │   │   │   ├── UnableToProvideChecksum.php │   │   │   ├── UnableToReadFile.php │   │   │   ├── UnableToResolveFilesystemMount.php │   │   │   ├── UnableToRetrieveMetadata.php │   │   │   ├── UnableToSetVisibility.php │   │   │   ├── UnableToWriteFile.php │   │   │   ├── UnixVisibility │   │   │   │   ├── PortableVisibilityConverter.php │   │   │   │   └── VisibilityConverter.php │   │   │   ├── UnreadableFileEncountered.php │   │   │   ├── UrlGeneration │   │   │   │   ├── ChainedPublicUrlGenerator.php │   │   │   │   ├── PrefixPublicUrlGenerator.php │   │   │   │   ├── PublicUrlGenerator.php │   │   │   │   ├── ShardedPrefixPublicUrlGenerator.php │   │   │   │   └── TemporaryUrlGenerator.php │   │   │   ├── Visibility.php │   │   │   └── WhitespacePathNormalizer.php │   │   ├── flysystem-local │   │   │   ├── FallbackMimeTypeDetector.php │   │   │   ├── LICENSE │   │   │   ├── LocalFilesystemAdapter.php │   │   │   └── composer.json │   │   ├── mime-type-detection │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── EmptyExtensionToMimeTypeMap.php │   │   │   ├── ExtensionLookup.php │   │   │   ├── ExtensionMimeTypeDetector.php │   │   │   ├── ExtensionToMimeTypeMap.php │   │   │   ├── FinfoMimeTypeDetector.php │   │   │   ├── GeneratedExtensionToMimeTypeMap.php │   │   │   ├── MimeTypeDetector.php │   │   │   └── OverridingExtensionToMimeTypeMap.php │   │   ├── uri │   │   │   ├── BaseUri.php │   │   │   ├── Http.php │   │   │   ├── HttpFactory.php │   │   │   ├── LICENSE │   │   │   ├── Uri.php │   │   │   ├── UriInfo.php │   │   │   ├── UriResolver.php │   │   │   ├── UriTemplate │   │   │   │   ├── Expression.php │   │   │   │   ├── Operator.php │   │   │   │   ├── Template.php │   │   │   │   ├── TemplateCanNotBeExpanded.php │   │   │   │   ├── VarSpecifier.php │   │   │   │   └── VariableBag.php │   │   │   ├── UriTemplate.php │   │   │   └── composer.json │   │   └── uri-interfaces │   │   ├── Contracts │   │   │   ├── AuthorityInterface.php │   │   │   ├── DataPathInterface.php │   │   │   ├── DomainHostInterface.php │   │   │   ├── FragmentInterface.php │   │   │   ├── HostInterface.php │   │   │   ├── IpHostInterface.php │   │   │   ├── PathInterface.php │   │   │   ├── PortInterface.php │   │   │   ├── QueryInterface.php │   │   │   ├── SegmentedPathInterface.php │   │   │   ├── UriAccess.php │   │   │   ├── UriComponentInterface.php │   │   │   ├── UriException.php │   │   │   ├── UriInterface.php │   │   │   └── UserInfoInterface.php │   │   ├── Encoder.php │   │   ├── Exceptions │   │   │   ├── ConversionFailed.php │   │   │   ├── MissingFeature.php │   │   │   ├── OffsetOutOfBounds.php │   │   │   └── SyntaxError.php │   │   ├── FeatureDetection.php │   │   ├── IPv4 │   │   │   ├── BCMathCalculator.php │   │   │   ├── Calculator.php │   │   │   ├── Converter.php │   │   │   ├── GMPCalculator.php │   │   │   └── NativeCalculator.php │   │   ├── IPv6 │   │   │   └── Converter.php │   │   ├── Idna │   │   │   ├── Converter.php │   │   │   ├── Error.php │   │   │   ├── Option.php │   │   │   └── Result.php │   │   ├── KeyValuePair │   │   │   └── Converter.php │   │   ├── LICENSE │   │   ├── QueryString.php │   │   ├── UriString.php │   │   └── composer.json │   ├── livewire │   │   └── livewire │   │   ├── LICENSE.md │   │   ├── README.md │   │   ├── composer.json │   │   ├── config │   │   │   └── livewire.php │   │   ├── dist │   │   │   ├── livewire.esm.js │   │   │   ├── livewire.esm.js.map │   │   │   ├── livewire.js │   │   │   ├── livewire.min.js │   │   │   ├── livewire.min.js.map │   │   │   └── manifest.json │   │   └── src │   │   ├── Attribute.php │   │   ├── Attributes │   │   │   ├── Computed.php │   │   │   ├── Isolate.php │   │   │   ├── Js.php │   │   │   ├── Layout.php │   │   │   ├── Lazy.php │   │   │   ├── Locked.php │   │   │   ├── Modelable.php │   │   │   ├── On.php │   │   │   ├── Reactive.php │   │   │   ├── Renderless.php │   │   │   ├── Rule.php │   │   │   ├── Session.php │   │   │   ├── Title.php │   │   │   ├── Url.php │   │   │   └── Validate.php │   │   ├── Component.php │   │   ├── ComponentHook.php │   │   ├── ComponentHookRegistry.php │   │   ├── Concerns │   │   │   └── InteractsWithProperties.php │   │   ├── Drawer │   │   │   ├── BaseUtils.php │   │   │   ├── ImplicitRouteBinding.php │   │   │   ├── Regexes.php │   │   │   └── Utils.php │   │   ├── EventBus.php │   │   ├── Exceptions │   │   │   ├── BypassViewHandler.php │   │   │   ├── ComponentAttributeMissingOnDynamicComponentException.php │   │   │   ├── ComponentNotFoundException.php │   │   │   ├── EventHandlerDoesNotExist.php │   │   │   ├── LivewirePageExpiredBecauseNewDeploymentHasSignificantEnoughChanges.php │   │   │   ├── MethodNotFoundException.php │   │   │   ├── MissingRulesException.php │   │   │   ├── NonPublicComponentMethodCall.php │   │   │   ├── PropertyNotFoundException.php │   │   │   ├── PublicPropertyNotFoundException.php │   │   │   └── RootTagMissingFromViewException.php │   │   ├── Features │   │   │   ├── SupportAccessingParent │   │   │   ├── SupportAttributes │   │   │   │   ├── Attribute.php │   │   │   │   ├── AttributeCollection.php │   │   │   │   ├── AttributeLevel.php │   │   │   │   ├── HandlesAttributes.php │   │   │   │   └── SupportAttributes.php │   │   │   ├── SupportAutoInjectedAssets │   │   │   │   └── SupportAutoInjectedAssets.php │   │   │   ├── SupportBladeAttributes │   │   │   │   └── SupportBladeAttributes.php │   │   │   ├── SupportChecksumErrorDebugging │   │   │   │   └── SupportChecksumErrorDebugging.php │   │   │   ├── SupportComputed │   │   │   │   ├── BaseComputed.php │   │   │   │   ├── CannotCallComputedDirectlyException.php │   │   │   │   └── SupportLegacyComputedPropertySyntax.php │   │   │   ├── SupportConsoleCommands │   │   │   │   ├── Commands │   │   │   │   │   ├── AttributeCommand.php │   │   │   │   │   ├── ComponentParser.php │   │   │   │   │   ├── ComponentParserFromExistingComponent.php │   │   │   │   │   ├── CopyCommand.php │   │   │   │   │   ├── CpCommand.php │   │   │   │   │   ├── DeleteCommand.php │   │   │   │   │   ├── FileManipulationCommand.php │   │   │   │   │   ├── FormCommand.php │   │   │   │   │   ├── LayoutCommand.php │   │   │   │   │   ├── MakeCommand.php │   │   │   │   │   ├── MakeLivewireCommand.php │   │   │   │   │   ├── MoveCommand.php │   │   │   │   │   ├── MvCommand.php │   │   │   │   │   ├── PublishCommand.php │   │   │   │   │   ├── RmCommand.php │   │   │   │   │   ├── S3CleanupCommand.php │   │   │   │   │   ├── StubsCommand.php │   │   │   │   │   ├── TouchCommand.php │   │   │   │   │   ├── Upgrade │   │   │   │   │   │   ├── AddLiveModifierToEntangleDirectives.php │   │   │   │   │   │   ├── AddLiveModifierToWireModelDirectives.php │   │   │   │   │   │   ├── ChangeDefaultLayoutView.php │   │   │   │   │   │   ├── ChangeDefaultNamespace.php │   │   │   │   │   │   ├── ChangeForgetComputedToUnset.php │   │   │   │   │   │   ├── ChangeLazyToBlurModifierOnWireModelDirectives.php │   │   │   │   │   │   ├── ChangeTestAssertionMethods.php │   │   │   │   │   │   ├── ChangeWireLoadDirectiveToWireInit.php │   │   │   │   │   │   ├── ClearViewCache.php │   │   │   │   │   │   ├── RemoveDeferModifierFromEntangleDirectives.php │   │   │   │   │   │   ├── RemoveDeferModifierFromWireModelDirectives.php │   │   │   │   │   │   ├── RemovePrefetchModifierFromWireClickDirective.php │   │   │   │   │   │   ├── RemovePreventModifierFromWireSubmitDirective.php │   │   │   │   │   │   ├── ReplaceEmitWithDispatch.php │   │   │   │   │   │   ├── ReplaceTemporaryUploadedFileNamespace.php │   │   │   │   │   │   ├── RepublishNavigation.php │   │   │   │   │   │   ├── ThirdPartyUpgradeNotice.php │   │   │   │   │   │   ├── UpgradeAlpineInstructions.php │   │   │   │   │   │   ├── UpgradeConfigInstructions.php │   │   │   │   │   │   ├── UpgradeIntroduction.php │   │   │   │   │   │   └── UpgradeStep.php │   │   │   │   │   ├── UpgradeCommand.php │   │   │   │   │   ├── livewire.attribute.stub │   │   │   │   │   ├── livewire.form.stub │   │   │   │   │   ├── livewire.inline.stub │   │   │   │   │   ├── livewire.layout.stub │   │   │   │   │   ├── livewire.pest.stub │   │   │   │   │   ├── livewire.stub │   │   │   │   │   ├── livewire.test.stub │   │   │   │   │   ├── livewire.view.stub │   │   │   │   │   └── the-tao.php │   │   │   │   └── SupportConsoleCommands.php │   │   │   ├── SupportDataBinding │   │   │   ├── SupportDisablingBackButtonCache │   │   │   │   ├── DisableBackButtonCacheMiddleware.php │   │   │   │   ├── HandlesDisablingBackButtonCache.php │   │   │   │   └── SupportDisablingBackButtonCache.php │   │   │   ├── SupportEntangle │   │   │   │   └── SupportEntangle.php │   │   │   ├── SupportErrorResponses │   │   │   ├── SupportEvents │   │   │   │   ├── BaseOn.php │   │   │   │   ├── Event.php │   │   │   │   ├── HandlesEvents.php │   │   │   │   ├── SupportEvents.php │   │   │   │   ├── TestsEvents.php │   │   │   │   └── fake-echo.js │   │   │   ├── SupportFileDownloads │   │   │   │   ├── SupportFileDownloads.php │   │   │   │   └── TestsFileDownloads.php │   │   │   ├── SupportFileUploads │   │   │   │   ├── FileNotPreviewableException.php │   │   │   │   ├── FilePreviewController.php │   │   │   │   ├── FileUploadConfiguration.php │   │   │   │   ├── FileUploadController.php │   │   │   │   ├── FileUploadSynth.php │   │   │   │   ├── GenerateSignedUploadUrl.php │   │   │   │   ├── MissingFileUploadsTraitException.php │   │   │   │   ├── S3DoesntSupportMultipleFileUploads.php │   │   │   │   ├── SupportFileUploads.php │   │   │   │   ├── TemporaryUploadedFile.php │   │   │   │   ├── WithFileUploads.php │   │   │   │   ├── browser_test_image.png │   │   │   │   ├── browser_test_image2.png │   │   │   │   └── browser_test_image_big.jpg │   │   │   ├── SupportFormObjects │   │   │   │   ├── Form.php │   │   │   │   ├── FormObjectSynth.php │   │   │   │   ├── HandlesFormObjects.php │   │   │   │   └── SupportFormObjects.php │   │   │   ├── SupportIsolating │   │   │   │   ├── BaseIsolate.php │   │   │   │   └── SupportIsolating.php │   │   │   ├── SupportJsEvaluation │   │   │   │   ├── BaseJs.php │   │   │   │   ├── HandlesJsEvaluation.php │   │   │   │   └── SupportJsEvaluation.php │   │   │   ├── SupportLazyLoading │   │   │   │   ├── BaseLazy.php │   │   │   │   └── SupportLazyLoading.php │   │   │   ├── SupportLegacyModels │   │   │   │   ├── CannotBindToModelDataWithoutValidationRuleException.php │   │   │   │   ├── EloquentCollectionSynth.php │   │   │   │   ├── EloquentModelSynth.php │   │   │   │   └── SupportLegacyModels.php │   │   │   ├── SupportLifecycleHooks │   │   │   │   ├── DirectlyCallingLifecycleHooksNotAllowedException.php │   │   │   │   └── SupportLifecycleHooks.php │   │   │   ├── SupportLocales │   │   │   │   └── SupportLocales.php │   │   │   ├── SupportLockedProperties │   │   │   │   ├── BaseLocked.php │   │   │   │   └── CannotUpdateLockedPropertyException.php │   │   │   ├── SupportModels │   │   │   │   ├── EloquentCollectionSynth.php │   │   │   │   ├── ModelSynth.php │   │   │   │   └── SupportModels.php │   │   │   ├── SupportMorphAwareIfStatement │   │   │   │   └── SupportMorphAwareIfStatement.php │   │   │   ├── SupportMultipleRootElementDetection │   │   │   │   ├── MultipleRootElementsDetectedException.php │   │   │   │   └── SupportMultipleRootElementDetection.php │   │   │   ├── SupportNavigate │   │   │   │   ├── SupportNavigate.php │   │   │   │   └── test-views │   │   │   │   ├── changed-layout.blade.php │   │   │   │   ├── changed-tracked-layout.blade.php │   │   │   │   ├── html-attributes1.blade.php │   │   │   │   ├── html-attributes2.blade.php │   │   │   │   ├── layout-with-navigate-outside.blade.php │   │   │   │   ├── layout-with-noscript.blade.php │   │   │   │   ├── layout.blade.php │   │   │   │   ├── navbar-sidebar.blade.php │   │   │   │   ├── test-navigate-asset.js │   │   │   │   └── tracked-layout.blade.php │   │   │   ├── SupportNestedComponentListeners │   │   │   │   └── SupportNestedComponentListeners.php │   │   │   ├── SupportNestingComponents │   │   │   │   └── SupportNestingComponents.php │   │   │   ├── SupportPageComponents │   │   │   │   ├── BaseLayout.php │   │   │   │   ├── BaseTitle.php │   │   │   │   ├── HandlesPageComponents.php │   │   │   │   ├── MissingLayoutException.php │   │   │   │   ├── PageComponentConfig.php │   │   │   │   └── SupportPageComponents.php │   │   │   ├── SupportPagination │   │   │   │   ├── HandlesPagination.php │   │   │   │   ├── PaginationUrl.php │   │   │   │   ├── SupportPagination.php │   │   │   │   ├── WithoutUrlPagination.php │   │   │   │   └── views │   │   │   │   ├── bootstrap.blade.php │   │   │   │   ├── simple-bootstrap.blade.php │   │   │   │   ├── simple-tailwind.blade.php │   │   │   │   └── tailwind.blade.php │   │   │   ├── SupportPolling │   │   │   ├── SupportQueryString │   │   │   │   ├── BaseUrl.php │   │   │   │   └── SupportQueryString.php │   │   │   ├── SupportReactiveProps │   │   │   │   ├── BaseReactive.php │   │   │   │   ├── CannotMutateReactivePropException.php │   │   │   │   └── SupportReactiveProps.php │   │   │   ├── SupportRedirects │   │   │   │   ├── HandlesRedirects.php │   │   │   │   ├── Redirector.php │   │   │   │   ├── SupportRedirects.php │   │   │   │   └── TestsRedirects.php │   │   │   ├── SupportScriptsAndAssets │   │   │   │   ├── SupportScriptsAndAssets.php │   │   │   │   ├── non-livewire-asset.js │   │   │   │   └── test.js │   │   │   ├── SupportSession │   │   │   │   └── BaseSession.php │   │   │   ├── SupportStdClasses │   │   │   ├── SupportStreaming │   │   │   │   ├── HandlesStreaming.php │   │   │   │   └── SupportStreaming.php │   │   │   ├── SupportTeleporting │   │   │   │   └── SupportTeleporting.php │   │   │   ├── SupportTesting │   │   │   │   ├── ComponentState.php │   │   │   │   ├── DuskBrowserMacros.php │   │   │   │   ├── DuskTestable.php │   │   │   │   ├── InitialRender.php │   │   │   │   ├── MakesAssertions.php │   │   │   │   ├── Render.php │   │   │   │   ├── RequestBroker.php │   │   │   │   ├── ShowDuskComponent.php │   │   │   │   ├── SubsequentRender.php │   │   │   │   ├── SupportTesting.php │   │   │   │   └── Testable.php │   │   │   ├── SupportTransitions │   │   │   ├── SupportValidation │   │   │   │   ├── BaseRule.php │   │   │   │   ├── BaseValidate.php │   │   │   │   ├── HandlesValidation.php │   │   │   │   ├── SupportValidation.php │   │   │   │   └── TestsValidation.php │   │   │   ├── SupportWireConfirm │   │   │   ├── SupportWireCurrent │   │   │   │   └── test-views │   │   │   │   └── navbar-sidebar.blade.php │   │   │   ├── SupportWireIgnore │   │   │   ├── SupportWireLoading │   │   │   │   └── browser_test_image.png │   │   │   ├── SupportWireModelingNestedComponents │   │   │   │   ├── BaseModelable.php │   │   │   │   └── SupportWireModelingNestedComponents.php │   │   │   ├── SupportWireShow │   │   │   ├── SupportWireText │   │   │   └── SupportWireables │   │   │   ├── SupportWireables.php │   │   │   └── WireableSynth.php │   │   ├── Form.php │   │   ├── ImplicitlyBoundMethod.php │   │   ├── Livewire.php │   │   ├── LivewireManager.php │   │   ├── LivewireServiceProvider.php │   │   ├── Mechanisms │   │   │   ├── CompileLivewireTags │   │   │   │   ├── CompileLivewireTags.php │   │   │   │   └── LivewireTagPrecompiler.php │   │   │   ├── ComponentRegistry.php │   │   │   ├── DataStore.php │   │   │   ├── ExtendBlade │   │   │   │   ├── DeterministicBladeKeys.php │   │   │   │   ├── ExtendBlade.php │   │   │   │   └── ExtendedCompilerEngine.php │   │   │   ├── FrontendAssets │   │   │   │   └── FrontendAssets.php │   │   │   ├── HandleComponents │   │   │   │   ├── BaseRenderless.php │   │   │   │   ├── Checksum.php │   │   │   │   ├── ComponentContext.php │   │   │   │   ├── CorruptComponentPayloadException.php │   │   │   │   ├── HandleComponents.php │   │   │   │   ├── Synthesizers │   │   │   │   │   ├── ArraySynth.php │   │   │   │   │   ├── CarbonSynth.php │   │   │   │   │   ├── CollectionSynth.php │   │   │   │   │   ├── EnumSynth.php │   │   │   │   │   ├── FloatSynth.php │   │   │   │   │   ├── IntSynth.php │   │   │   │   │   ├── StdClassSynth.php │   │   │   │   │   ├── StringableSynth.php │   │   │   │   │   └── Synth.php │   │   │   │   └── ViewContext.php │   │   │   ├── HandleRequests │   │   │   │   └── HandleRequests.php │   │   │   ├── Mechanism.php │   │   │   ├── PersistentMiddleware │   │   │   │   └── PersistentMiddleware.php │   │   │   └── RenderComponent.php │   │   ├── Pipe.php │   │   ├── Transparency.php │   │   ├── WireDirective.php │   │   ├── Wireable.php │   │   ├── WithFileUploads.php │   │   ├── WithPagination.php │   │   ├── WithoutUrlPagination.php │   │   ├── Wrapped.php │   │   └── helpers.php │   ├── masterminds │   │   └── html5 │   │   ├── CREDITS │   │   ├── LICENSE.txt │   │   ├── README.md │   │   ├── RELEASE.md │   │   ├── UPGRADING.md │   │   ├── bin │   │   │   └── entities.php │   │   ├── composer.json │   │   └── src │   │   ├── HTML5 │   │   │   ├── Elements.php │   │   │   ├── Entities.php │   │   │   ├── Exception.php │   │   │   ├── InstructionProcessor.php │   │   │   ├── Parser │   │   │   │   ├── CharacterReference.php │   │   │   │   ├── DOMTreeBuilder.php │   │   │   │   ├── EventHandler.php │   │   │   │   ├── FileInputStream.php │   │   │   │   ├── InputStream.php │   │   │   │   ├── ParseError.php │   │   │   │   ├── README.md │   │   │   │   ├── Scanner.php │   │   │   │   ├── StringInputStream.php │   │   │   │   ├── Tokenizer.php │   │   │   │   ├── TreeBuildingRules.php │   │   │   │   └── UTF8Utils.php │   │   │   └── Serializer │   │   │   ├── HTML5Entities.php │   │   │   ├── OutputRules.php │   │   │   ├── README.md │   │   │   ├── RulesInterface.php │   │   │   └── Traverser.php │   │   └── HTML5.php │   ├── mockery │   │   └── mockery │   │   ├── CHANGELOG.md │   │   ├── CONTRIBUTING.md │   │   ├── COPYRIGHT.md │   │   ├── LICENSE │   │   ├── README.md │   │   ├── SECURITY.md │   │   ├── composer.json │   │   ├── composer.lock │   │   ├── docs │   │   │   ├── Makefile │   │   │   ├── README.md │   │   │   ├── _static │   │   │   ├── conf.py │   │   │   ├── cookbook │   │   │   │   ├── big_parent_class.rst │   │   │   │   ├── class_constants.rst │   │   │   │   ├── default_expectations.rst │   │   │   │   ├── detecting_mock_objects.rst │   │   │   │   ├── index.rst │   │   │   │   ├── map.rst.inc │   │   │   │   ├── mockery_on.rst │   │   │   │   ├── mocking_class_within_class.rst │   │   │   │   ├── mocking_hard_dependencies.rst │   │   │   │   └── not_calling_the_constructor.rst │   │   │   ├── getting_started │   │   │   │   ├── index.rst │   │   │   │   ├── installation.rst │   │   │   │   ├── map.rst.inc │   │   │   │   ├── quick_reference.rst │   │   │   │   ├── simple_example.rst │   │   │   │   └── upgrading.rst │   │   │   ├── index.rst │   │   │   ├── mockery │   │   │   │   ├── configuration.rst │   │   │   │   ├── exceptions.rst │   │   │   │   ├── gotchas.rst │   │   │   │   ├── index.rst │   │   │   │   ├── map.rst.inc │   │   │   │   └── reserved_method_names.rst │   │   │   ├── reference │   │   │   │   ├── alternative_should_receive_syntax.rst │   │   │   │   ├── argument_validation.rst │   │   │   │   ├── creating_test_doubles.rst │   │   │   │   ├── demeter_chains.rst │   │   │   │   ├── expectations.rst │   │   │   │   ├── final_methods_classes.rst │   │   │   │   ├── index.rst │   │   │   │   ├── instance_mocking.rst │   │   │   │   ├── magic_methods.rst │   │   │   │   ├── map.rst.inc │   │   │   │   ├── partial_mocks.rst │   │   │   │   ├── pass_by_reference_behaviours.rst │   │   │   │   ├── phpunit_integration.rst │   │   │   │   ├── protected_methods.rst │   │   │   │   ├── public_properties.rst │   │   │   │   ├── public_static_properties.rst │   │   │   │   └── spies.rst │   │   │   └── requirements.txt │   │   └── library │   │   ├── Mockery │   │   │   ├── Adapter │   │   │   │   └── Phpunit │   │   │   │   ├── MockeryPHPUnitIntegration.php │   │   │   │   ├── MockeryPHPUnitIntegrationAssertPostConditions.php │   │   │   │   ├── MockeryTestCase.php │   │   │   │   ├── MockeryTestCaseSetUp.php │   │   │   │   ├── TestListener.php │   │   │   │   └── TestListenerTrait.php │   │   │   ├── ClosureWrapper.php │   │   │   ├── CompositeExpectation.php │   │   │   ├── Configuration.php │   │   │   ├── Container.php │   │   │   ├── CountValidator │   │   │   │   ├── AtLeast.php │   │   │   │   ├── AtMost.php │   │   │   │   ├── CountValidatorAbstract.php │   │   │   │   ├── CountValidatorInterface.php │   │   │   │   ├── Exact.php │   │   │   │   └── Exception.php │   │   │   ├── Exception │   │   │   │   ├── BadMethodCallException.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── InvalidCountException.php │   │   │   │   ├── InvalidOrderException.php │   │   │   │   ├── MockeryExceptionInterface.php │   │   │   │   ├── NoMatchingExpectationException.php │   │   │   │   └── RuntimeException.php │   │   │   ├── Exception.php │   │   │   ├── Expectation.php │   │   │   ├── ExpectationDirector.php │   │   │   ├── ExpectationInterface.php │   │   │   ├── ExpectsHigherOrderMessage.php │   │   │   ├── Generator │   │   │   │   ├── CachingGenerator.php │   │   │   │   ├── DefinedTargetClass.php │   │   │   │   ├── Generator.php │   │   │   │   ├── Method.php │   │   │   │   ├── MockConfiguration.php │   │   │   │   ├── MockConfigurationBuilder.php │   │   │   │   ├── MockDefinition.php │   │   │   │   ├── MockNameBuilder.php │   │   │   │   ├── Parameter.php │   │   │   │   ├── StringManipulation │   │   │   │   │   └── Pass │   │   │   │   │   ├── AvoidMethodClashPass.php │   │   │   │   │   ├── CallTypeHintPass.php │   │   │   │   │   ├── ClassAttributesPass.php │   │   │   │   │   ├── ClassNamePass.php │   │   │   │   │   ├── ClassPass.php │   │   │   │   │   ├── ConstantsPass.php │   │   │   │   │   ├── InstanceMockPass.php │   │   │   │   │   ├── InterfacePass.php │   │   │   │   │   ├── MagicMethodTypeHintsPass.php │   │   │   │   │   ├── MethodDefinitionPass.php │   │   │   │   │   ├── Pass.php │   │   │   │   │   ├── RemoveBuiltinMethodsThatAreFinalPass.php │   │   │   │   │   ├── RemoveDestructorPass.php │   │   │   │   │   ├── RemoveUnserializeForInternalSerializableClassesPass.php │   │   │   │   │   └── TraitPass.php │   │   │   │   ├── StringManipulationGenerator.php │   │   │   │   ├── TargetClassInterface.php │   │   │   │   └── UndefinedTargetClass.php │   │   │   ├── HigherOrderMessage.php │   │   │   ├── Instantiator.php │   │   │   ├── LegacyMockInterface.php │   │   │   ├── Loader │   │   │   │   ├── EvalLoader.php │   │   │   │   ├── Loader.php │   │   │   │   └── RequireLoader.php │   │   │   ├── Matcher │   │   │   │   ├── AndAnyOtherArgs.php │   │   │   │   ├── Any.php │   │   │   │   ├── AnyArgs.php │   │   │   │   ├── AnyOf.php │   │   │   │   ├── ArgumentListMatcher.php │   │   │   │   ├── Closure.php │   │   │   │   ├── Contains.php │   │   │   │   ├── Ducktype.php │   │   │   │   ├── HasKey.php │   │   │   │   ├── HasValue.php │   │   │   │   ├── IsEqual.php │   │   │   │   ├── IsSame.php │   │   │   │   ├── MatcherAbstract.php │   │   │   │   ├── MatcherInterface.php │   │   │   │   ├── MultiArgumentClosure.php │   │   │   │   ├── MustBe.php │   │   │   │   ├── NoArgs.php │   │   │   │   ├── Not.php │   │   │   │   ├── NotAnyOf.php │   │   │   │   ├── Pattern.php │   │   │   │   ├── Subset.php │   │   │   │   └── Type.php │   │   │   ├── MethodCall.php │   │   │   ├── Mock.php │   │   │   ├── MockInterface.php │   │   │   ├── QuickDefinitionsConfiguration.php │   │   │   ├── ReceivedMethodCalls.php │   │   │   ├── Reflector.php │   │   │   ├── Undefined.php │   │   │   ├── VerificationDirector.php │   │   │   └── VerificationExpectation.php │   │   ├── Mockery.php │   │   └── helpers.php │   ├── monolog │   │   └── monolog │   │   ├── CHANGELOG.md │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   └── Monolog │   │   ├── Attribute │   │   │   ├── AsMonologProcessor.php │   │   │   └── WithMonologChannel.php │   │   ├── DateTimeImmutable.php │   │   ├── ErrorHandler.php │   │   ├── Formatter │   │   │   ├── ChromePHPFormatter.php │   │   │   ├── ElasticaFormatter.php │   │   │   ├── ElasticsearchFormatter.php │   │   │   ├── FlowdockFormatter.php │   │   │   ├── FluentdFormatter.php │   │   │   ├── FormatterInterface.php │   │   │   ├── GelfMessageFormatter.php │   │   │   ├── GoogleCloudLoggingFormatter.php │   │   │   ├── HtmlFormatter.php │   │   │   ├── JsonFormatter.php │   │   │   ├── LineFormatter.php │   │   │   ├── LogglyFormatter.php │   │   │   ├── LogmaticFormatter.php │   │   │   ├── LogstashFormatter.php │   │   │   ├── MongoDBFormatter.php │   │   │   ├── NormalizerFormatter.php │   │   │   ├── ScalarFormatter.php │   │   │   ├── SyslogFormatter.php │   │   │   └── WildfireFormatter.php │   │   ├── Handler │   │   │   ├── AbstractHandler.php │   │   │   ├── AbstractProcessingHandler.php │   │   │   ├── AbstractSyslogHandler.php │   │   │   ├── AmqpHandler.php │   │   │   ├── BrowserConsoleHandler.php │   │   │   ├── BufferHandler.php │   │   │   ├── ChromePHPHandler.php │   │   │   ├── CouchDBHandler.php │   │   │   ├── CubeHandler.php │   │   │   ├── Curl │   │   │   │   └── Util.php │   │   │   ├── DeduplicationHandler.php │   │   │   ├── DoctrineCouchDBHandler.php │   │   │   ├── DynamoDbHandler.php │   │   │   ├── ElasticaHandler.php │   │   │   ├── ElasticsearchHandler.php │   │   │   ├── ErrorLogHandler.php │   │   │   ├── FallbackGroupHandler.php │   │   │   ├── FilterHandler.php │   │   │   ├── FingersCrossed │   │   │   │   ├── ActivationStrategyInterface.php │   │   │   │   ├── ChannelLevelActivationStrategy.php │   │   │   │   └── ErrorLevelActivationStrategy.php │   │   │   ├── FingersCrossedHandler.php │   │   │   ├── FirePHPHandler.php │   │   │   ├── FleepHookHandler.php │   │   │   ├── FlowdockHandler.php │   │   │   ├── FormattableHandlerInterface.php │   │   │   ├── FormattableHandlerTrait.php │   │   │   ├── GelfHandler.php │   │   │   ├── GroupHandler.php │   │   │   ├── Handler.php │   │   │   ├── HandlerInterface.php │   │   │   ├── HandlerWrapper.php │   │   │   ├── IFTTTHandler.php │   │   │   ├── InsightOpsHandler.php │   │   │   ├── LogEntriesHandler.php │   │   │   ├── LogglyHandler.php │   │   │   ├── LogmaticHandler.php │   │   │   ├── MailHandler.php │   │   │   ├── MandrillHandler.php │   │   │   ├── MissingExtensionException.php │   │   │   ├── MongoDBHandler.php │   │   │   ├── NativeMailerHandler.php │   │   │   ├── NewRelicHandler.php │   │   │   ├── NoopHandler.php │   │   │   ├── NullHandler.php │   │   │   ├── OverflowHandler.php │   │   │   ├── PHPConsoleHandler.php │   │   │   ├── ProcessHandler.php │   │   │   ├── ProcessableHandlerInterface.php │   │   │   ├── ProcessableHandlerTrait.php │   │   │   ├── PsrHandler.php │   │   │   ├── PushoverHandler.php │   │   │   ├── RedisHandler.php │   │   │   ├── RedisPubSubHandler.php │   │   │   ├── RollbarHandler.php │   │   │   ├── RotatingFileHandler.php │   │   │   ├── SamplingHandler.php │   │   │   ├── SendGridHandler.php │   │   │   ├── Slack │   │   │   │   └── SlackRecord.php │   │   │   ├── SlackHandler.php │   │   │   ├── SlackWebhookHandler.php │   │   │   ├── SocketHandler.php │   │   │   ├── SqsHandler.php │   │   │   ├── StreamHandler.php │   │   │   ├── SymfonyMailerHandler.php │   │   │   ├── SyslogHandler.php │   │   │   ├── SyslogUdp │   │   │   │   └── UdpSocket.php │   │   │   ├── SyslogUdpHandler.php │   │   │   ├── TelegramBotHandler.php │   │   │   ├── TestHandler.php │   │   │   ├── WebRequestRecognizerTrait.php │   │   │   ├── WhatFailureGroupHandler.php │   │   │   └── ZendMonitorHandler.php │   │   ├── JsonSerializableDateTimeImmutable.php │   │   ├── Level.php │   │   ├── LogRecord.php │   │   ├── Logger.php │   │   ├── Processor │   │   │   ├── ClosureContextProcessor.php │   │   │   ├── GitProcessor.php │   │   │   ├── HostnameProcessor.php │   │   │   ├── IntrospectionProcessor.php │   │   │   ├── LoadAverageProcessor.php │   │   │   ├── MemoryPeakUsageProcessor.php │   │   │   ├── MemoryProcessor.php │   │   │   ├── MemoryUsageProcessor.php │   │   │   ├── MercurialProcessor.php │   │   │   ├── ProcessIdProcessor.php │   │   │   ├── ProcessorInterface.php │   │   │   ├── PsrLogMessageProcessor.php │   │   │   ├── TagProcessor.php │   │   │   ├── UidProcessor.php │   │   │   └── WebProcessor.php │   │   ├── Registry.php │   │   ├── ResettableInterface.php │   │   ├── SignalHandler.php │   │   ├── Test │   │   │   ├── MonologTestCase.php │   │   │   └── TestCase.php │   │   └── Utils.php │   ├── myclabs │   │   └── deep-copy │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   └── DeepCopy │   │   ├── DeepCopy.php │   │   ├── Exception │   │   │   ├── CloneException.php │   │   │   └── PropertyException.php │   │   ├── Filter │   │   │   ├── ChainableFilter.php │   │   │   ├── Doctrine │   │   │   │   ├── DoctrineCollectionFilter.php │   │   │   │   ├── DoctrineEmptyCollectionFilter.php │   │   │   │   └── DoctrineProxyFilter.php │   │   │   ├── Filter.php │   │   │   ├── KeepFilter.php │   │   │   ├── ReplaceFilter.php │   │   │   └── SetNullFilter.php │   │   ├── Matcher │   │   │   ├── Doctrine │   │   │   │   └── DoctrineProxyMatcher.php │   │   │   ├── Matcher.php │   │   │   ├── PropertyMatcher.php │   │   │   ├── PropertyNameMatcher.php │   │   │   └── PropertyTypeMatcher.php │   │   ├── Reflection │   │   │   └── ReflectionHelper.php │   │   ├── TypeFilter │   │   │   ├── Date │   │   │   │   ├── DateIntervalFilter.php │   │   │   │   └── DatePeriodFilter.php │   │   │   ├── ReplaceFilter.php │   │   │   ├── ShallowCopyFilter.php │   │   │   ├── Spl │   │   │   │   ├── ArrayObjectFilter.php │   │   │   │   ├── SplDoublyLinkedList.php │   │   │   │   └── SplDoublyLinkedListFilter.php │   │   │   └── TypeFilter.php │   │   ├── TypeMatcher │   │   │   └── TypeMatcher.php │   │   └── deep_copy.php │   ├── nesbot │   │   └── carbon │   │   ├── LICENSE │   │   ├── bin │   │   │   ├── carbon │   │   │   └── carbon.bat │   │   ├── composer.json │   │   ├── extension.neon │   │   ├── lazy │   │   │   └── Carbon │   │   │   ├── MessageFormatter │   │   │   │   ├── MessageFormatterMapperStrongType.php │   │   │   │   └── MessageFormatterMapperWeakType.php │   │   │   ├── ProtectedDatePeriod.php │   │   │   ├── TranslatorStrongType.php │   │   │   ├── TranslatorWeakType.php │   │   │   └── UnprotectedDatePeriod.php │   │   ├── readme.md │   │   ├── sponsors.php │   │   └── src │   │   └── Carbon │   │   ├── AbstractTranslator.php │   │   ├── Callback.php │   │   ├── Carbon.php │   │   ├── CarbonConverterInterface.php │   │   ├── CarbonImmutable.php │   │   ├── CarbonInterface.php │   │   ├── CarbonInterval.php │   │   ├── CarbonPeriod.php │   │   ├── CarbonPeriodImmutable.php │   │   ├── CarbonTimeZone.php │   │   ├── Cli │   │   │   └── Invoker.php │   │   ├── Exceptions │   │   │   ├── BadComparisonUnitException.php │   │   │   ├── BadFluentConstructorException.php │   │   │   ├── BadFluentSetterException.php │   │   │   ├── BadMethodCallException.php │   │   │   ├── EndLessPeriodException.php │   │   │   ├── Exception.php │   │   │   ├── ImmutableException.php │   │   │   ├── InvalidArgumentException.php │   │   │   ├── InvalidCastException.php │   │   │   ├── InvalidDateException.php │   │   │   ├── InvalidFormatException.php │   │   │   ├── InvalidIntervalException.php │   │   │   ├── InvalidPeriodDateException.php │   │   │   ├── InvalidPeriodParameterException.php │   │   │   ├── InvalidTimeZoneException.php │   │   │   ├── InvalidTypeException.php │   │   │   ├── NotACarbonClassException.php │   │   │   ├── NotAPeriodException.php │   │   │   ├── NotLocaleAwareException.php │   │   │   ├── OutOfRangeException.php │   │   │   ├── ParseErrorException.php │   │   │   ├── RuntimeException.php │   │   │   ├── UnitException.php │   │   │   ├── UnitNotConfiguredException.php │   │   │   ├── UnknownGetterException.php │   │   │   ├── UnknownMethodException.php │   │   │   ├── UnknownSetterException.php │   │   │   ├── UnknownUnitException.php │   │   │   ├── UnreachableException.php │   │   │   └── UnsupportedUnitException.php │   │   ├── Factory.php │   │   ├── FactoryImmutable.php │   │   ├── Lang │   │   │   ├── aa.php │   │   │   ├── aa_DJ.php │   │   │   ├── aa_ER.php │   │   │   ├── aa_ER@saaho.php │   │   │   ├── aa_ET.php │   │   │   ├── af.php │   │   │   ├── af_NA.php │   │   │   ├── af_ZA.php │   │   │   ├── agq.php │   │   │   ├── agr.php │   │   │   ├── agr_PE.php │   │   │   ├── ak.php │   │   │   ├── ak_GH.php │   │   │   ├── am.php │   │   │   ├── am_ET.php │   │   │   ├── an.php │   │   │   ├── an_ES.php │   │   │   ├── anp.php │   │   │   ├── anp_IN.php │   │   │   ├── ar.php │   │   │   ├── ar_AE.php │   │   │   ├── ar_BH.php │   │   │   ├── ar_DJ.php │   │   │   ├── ar_DZ.php │   │   │   ├── ar_EG.php │   │   │   ├── ar_EH.php │   │   │   ├── ar_ER.php │   │   │   ├── ar_IL.php │   │   │   ├── ar_IN.php │   │   │   ├── ar_IQ.php │   │   │   ├── ar_JO.php │   │   │   ├── ar_KM.php │   │   │   ├── ar_KW.php │   │   │   ├── ar_LB.php │   │   │   ├── ar_LY.php │   │   │   ├── ar_MA.php │   │   │   ├── ar_MR.php │   │   │   ├── ar_OM.php │   │   │   ├── ar_PS.php │   │   │   ├── ar_QA.php │   │   │   ├── ar_SA.php │   │   │   ├── ar_SD.php │   │   │   ├── ar_SO.php │   │   │   ├── ar_SS.php │   │   │   ├── ar_SY.php │   │   │   ├── ar_Shakl.php │   │   │   ├── ar_TD.php │   │   │   ├── ar_TN.php │   │   │   ├── ar_YE.php │   │   │   ├── as.php │   │   │   ├── as_IN.php │   │   │   ├── asa.php │   │   │   ├── ast.php │   │   │   ├── ast_ES.php │   │   │   ├── ayc.php │   │   │   ├── ayc_PE.php │   │   │   ├── az.php │   │   │   ├── az_AZ.php │   │   │   ├── az_Cyrl.php │   │   │   ├── az_IR.php │   │   │   ├── az_Latn.php │   │   │   ├── bas.php │   │   │   ├── be.php │   │   │   ├── be_BY.php │   │   │   ├── be_BY@latin.php │   │   │   ├── bem.php │   │   │   ├── bem_ZM.php │   │   │   ├── ber.php │   │   │   ├── ber_DZ.php │   │   │   ├── ber_MA.php │   │   │   ├── bez.php │   │   │   ├── bg.php │   │   │   ├── bg_BG.php │   │   │   ├── bhb.php │   │   │   ├── bhb_IN.php │   │   │   ├── bho.php │   │   │   ├── bho_IN.php │   │   │   ├── bi.php │   │   │   ├── bi_VU.php │   │   │   ├── bm.php │   │   │   ├── bn.php │   │   │   ├── bn_BD.php │   │   │   ├── bn_IN.php │   │   │   ├── bo.php │   │   │   ├── bo_CN.php │   │   │   ├── bo_IN.php │   │   │   ├── br.php │   │   │   ├── br_FR.php │   │   │   ├── brx.php │   │   │   ├── brx_IN.php │   │   │   ├── bs.php │   │   │   ├── bs_BA.php │   │   │   ├── bs_Cyrl.php │   │   │   ├── bs_Latn.php │   │   │   ├── byn.php │   │   │   ├── byn_ER.php │   │   │   ├── ca.php │   │   │   ├── ca_AD.php │   │   │   ├── ca_ES.php │   │   │   ├── ca_ES_Valencia.php │   │   │   ├── ca_FR.php │   │   │   ├── ca_IT.php │   │   │   ├── ccp.php │   │   │   ├── ccp_IN.php │   │   │   ├── ce.php │   │   │   ├── ce_RU.php │   │   │   ├── cgg.php │   │   │   ├── chr.php │   │   │   ├── chr_US.php │   │   │   ├── ckb.php │   │   │   ├── cmn.php │   │   │   ├── cmn_TW.php │   │   │   ├── crh.php │   │   │   ├── crh_UA.php │   │   │   ├── cs.php │   │   │   ├── cs_CZ.php │   │   │   ├── csb.php │   │   │   ├── csb_PL.php │   │   │   ├── cu.php │   │   │   ├── cv.php │   │   │   ├── cv_RU.php │   │   │   ├── cy.php │   │   │   ├── cy_GB.php │   │   │   ├── da.php │   │   │   ├── da_DK.php │   │   │   ├── da_GL.php │   │   │   ├── dav.php │   │   │   ├── de.php │   │   │   ├── de_AT.php │   │   │   ├── de_BE.php │   │   │   ├── de_CH.php │   │   │   ├── de_DE.php │   │   │   ├── de_IT.php │   │   │   ├── de_LI.php │   │   │   ├── de_LU.php │   │   │   ├── dje.php │   │   │   ├── doi.php │   │   │   ├── doi_IN.php │   │   │   ├── dsb.php │   │   │   ├── dsb_DE.php │   │   │   ├── dua.php │   │   │   ├── dv.php │   │   │   ├── dv_MV.php │   │   │   ├── dyo.php │   │   │   ├── dz.php │   │   │   ├── dz_BT.php │   │   │   ├── ebu.php │   │   │   ├── ee.php │   │   │   ├── ee_TG.php │   │   │   ├── el.php │   │   │   ├── el_CY.php │   │   │   ├── el_GR.php │   │   │   ├── en.php │   │   │   ├── en_001.php │   │   │   ├── en_150.php │   │   │   ├── en_AG.php │   │   │   ├── en_AI.php │   │   │   ├── en_AS.php │   │   │   ├── en_AT.php │   │   │   ├── en_AU.php │   │   │   ├── en_BB.php │   │   │   ├── en_BE.php │   │   │   ├── en_BI.php │   │   │   ├── en_BM.php │   │   │   ├── en_BS.php │   │   │   ├── en_BW.php │   │   │   ├── en_BZ.php │   │   │   ├── en_CA.php │   │   │   ├── en_CC.php │   │   │   ├── en_CH.php │   │   │   ├── en_CK.php │   │   │   ├── en_CM.php │   │   │   ├── en_CX.php │   │   │   ├── en_CY.php │   │   │   ├── en_DE.php │   │   │   ├── en_DG.php │   │   │   ├── en_DK.php │   │   │   ├── en_DM.php │   │   │   ├── en_ER.php │   │   │   ├── en_FI.php │   │   │   ├── en_FJ.php │   │   │   ├── en_FK.php │   │   │   ├── en_FM.php │   │   │   ├── en_GB.php │   │   │   ├── en_GD.php │   │   │   ├── en_GG.php │   │   │   ├── en_GH.php │   │   │   ├── en_GI.php │   │   │   ├── en_GM.php │   │   │   ├── en_GU.php │   │   │   ├── en_GY.php │   │   │   ├── en_HK.php │   │   │   ├── en_IE.php │   │   │   ├── en_IL.php │   │   │   ├── en_IM.php │   │   │   ├── en_IN.php │   │   │   ├── en_IO.php │   │   │   ├── en_ISO.php │   │   │   ├── en_JE.php │   │   │   ├── en_JM.php │   │   │   ├── en_KE.php │   │   │   ├── en_KI.php │   │   │   ├── en_KN.php │   │   │   ├── en_KY.php │   │   │   ├── en_LC.php │   │   │   ├── en_LR.php │   │   │   ├── en_LS.php │   │   │   ├── en_MG.php │   │   │   ├── en_MH.php │   │   │   ├── en_MO.php │   │   │   ├── en_MP.php │   │   │   ├── en_MS.php │   │   │   ├── en_MT.php │   │   │   ├── en_MU.php │   │   │   ├── en_MW.php │   │   │   ├── en_MY.php │   │   │   ├── en_NA.php │   │   │   ├── en_NF.php │   │   │   ├── en_NG.php │   │   │   ├── en_NL.php │   │   │   ├── en_NR.php │   │   │   ├── en_NU.php │   │   │   ├── en_NZ.php │   │   │   ├── en_PG.php │   │   │   ├── en_PH.php │   │   │   ├── en_PK.php │   │   │   ├── en_PN.php │   │   │   ├── en_PR.php │   │   │   ├── en_PW.php │   │   │   ├── en_RW.php │   │   │   ├── en_SB.php │   │   │   ├── en_SC.php │   │   │   ├── en_SD.php │   │   │   ├── en_SE.php │   │   │   ├── en_SG.php │   │   │   ├── en_SH.php │   │   │   ├── en_SI.php │   │   │   ├── en_SL.php │   │   │   ├── en_SS.php │   │   │   ├── en_SX.php │   │   │   ├── en_SZ.php │   │   │   ├── en_TC.php │   │   │   ├── en_TK.php │   │   │   ├── en_TO.php │   │   │   ├── en_TT.php │   │   │   ├── en_TV.php │   │   │   ├── en_TZ.php │   │   │   ├── en_UG.php │   │   │   ├── en_UM.php │   │   │   ├── en_US.php │   │   │   ├── en_US_Posix.php │   │   │   ├── en_VC.php │   │   │   ├── en_VG.php │   │   │   ├── en_VI.php │   │   │   ├── en_VU.php │   │   │   ├── en_WS.php │   │   │   ├── en_ZA.php │   │   │   ├── en_ZM.php │   │   │   ├── en_ZW.php │   │   │   ├── eo.php │   │   │   ├── es.php │   │   │   ├── es_419.php │   │   │   ├── es_AR.php │   │   │   ├── es_BO.php │   │   │   ├── es_BR.php │   │   │   ├── es_BZ.php │   │   │   ├── es_CL.php │   │   │   ├── es_CO.php │   │   │   ├── es_CR.php │   │   │   ├── es_CU.php │   │   │   ├── es_DO.php │   │   │   ├── es_EA.php │   │   │   ├── es_EC.php │   │   │   ├── es_ES.php │   │   │   ├── es_GQ.php │   │   │   ├── es_GT.php │   │   │   ├── es_HN.php │   │   │   ├── es_IC.php │   │   │   ├── es_MX.php │   │   │   ├── es_NI.php │   │   │   ├── es_PA.php │   │   │   ├── es_PE.php │   │   │   ├── es_PH.php │   │   │   ├── es_PR.php │   │   │   ├── es_PY.php │   │   │   ├── es_SV.php │   │   │   ├── es_US.php │   │   │   ├── es_UY.php │   │   │   ├── es_VE.php │   │   │   ├── et.php │   │   │   ├── et_EE.php │   │   │   ├── eu.php │   │   │   ├── eu_ES.php │   │   │   ├── ewo.php │   │   │   ├── fa.php │   │   │   ├── fa_AF.php │   │   │   ├── fa_IR.php │   │   │   ├── ff.php │   │   │   ├── ff_CM.php │   │   │   ├── ff_GN.php │   │   │   ├── ff_MR.php │   │   │   ├── ff_SN.php │   │   │   ├── fi.php │   │   │   ├── fi_FI.php │   │   │   ├── fil.php │   │   │   ├── fil_PH.php │   │   │   ├── fo.php │   │   │   ├── fo_DK.php │   │   │   ├── fo_FO.php │   │   │   ├── fr.php │   │   │   ├── fr_BE.php │   │   │   ├── fr_BF.php │   │   │   ├── fr_BI.php │   │   │   ├── fr_BJ.php │   │   │   ├── fr_BL.php │   │   │   ├── fr_CA.php │   │   │   ├── fr_CD.php │   │   │   ├── fr_CF.php │   │   │   ├── fr_CG.php │   │   │   ├── fr_CH.php │   │   │   ├── fr_CI.php │   │   │   ├── fr_CM.php │   │   │   ├── fr_DJ.php │   │   │   ├── fr_DZ.php │   │   │   ├── fr_FR.php │   │   │   ├── fr_GA.php │   │   │   ├── fr_GF.php │   │   │   ├── fr_GN.php │   │   │   ├── fr_GP.php │   │   │   ├── fr_GQ.php │   │   │   ├── fr_HT.php │   │   │   ├── fr_KM.php │   │   │   ├── fr_LU.php │   │   │   ├── fr_MA.php │   │   │   ├── fr_MC.php │   │   │   ├── fr_MF.php │   │   │   ├── fr_MG.php │   │   │   ├── fr_ML.php │   │   │   ├── fr_MQ.php │   │   │   ├── fr_MR.php │   │   │   ├── fr_MU.php │   │   │   ├── fr_NC.php │   │   │   ├── fr_NE.php │   │   │   ├── fr_PF.php │   │   │   ├── fr_PM.php │   │   │   ├── fr_RE.php │   │   │   ├── fr_RW.php │   │   │   ├── fr_SC.php │   │   │   ├── fr_SN.php │   │   │   ├── fr_SY.php │   │   │   ├── fr_TD.php │   │   │   ├── fr_TG.php │   │   │   ├── fr_TN.php │   │   │   ├── fr_VU.php │   │   │   ├── fr_WF.php │   │   │   ├── fr_YT.php │   │   │   ├── fur.php │   │   │   ├── fur_IT.php │   │   │   ├── fy.php │   │   │   ├── fy_DE.php │   │   │   ├── fy_NL.php │   │   │   ├── ga.php │   │   │   ├── ga_IE.php │   │   │   ├── gd.php │   │   │   ├── gd_GB.php │   │   │   ├── gez.php │   │   │   ├── gez_ER.php │   │   │   ├── gez_ET.php │   │   │   ├── gl.php │   │   │   ├── gl_ES.php │   │   │   ├── gom.php │   │   │   ├── gom_Latn.php │   │   │   ├── gsw.php │   │   │   ├── gsw_CH.php │   │   │   ├── gsw_FR.php │   │   │   ├── gsw_LI.php │   │   │   ├── gu.php │   │   │   ├── gu_IN.php │   │   │   ├── guz.php │   │   │   ├── gv.php │   │   │   ├── gv_GB.php │   │   │   ├── ha.php │   │   │   ├── ha_GH.php │   │   │   ├── ha_NE.php │   │   │   ├── ha_NG.php │   │   │   ├── hak.php │   │   │   ├── hak_TW.php │   │   │   ├── haw.php │   │   │   ├── he.php │   │   │   ├── he_IL.php │   │   │   ├── hi.php │   │   │   ├── hi_IN.php │   │   │   ├── hif.php │   │   │   ├── hif_FJ.php │   │   │   ├── hne.php │   │   │   ├── hne_IN.php │   │   │   ├── hr.php │   │   │   ├── hr_BA.php │   │   │   ├── hr_HR.php │   │   │   ├── hsb.php │   │   │   ├── hsb_DE.php │   │   │   ├── ht.php │   │   │   ├── ht_HT.php │   │   │   ├── hu.php │   │   │   ├── hu_HU.php │   │   │   ├── hy.php │   │   │   ├── hy_AM.php │   │   │   ├── i18n.php │   │   │   ├── ia.php │   │   │   ├── ia_FR.php │   │   │   ├── id.php │   │   │   ├── id_ID.php │   │   │   ├── ig.php │   │   │   ├── ig_NG.php │   │   │   ├── ii.php │   │   │   ├── ik.php │   │   │   ├── ik_CA.php │   │   │   ├── in.php │   │   │   ├── is.php │   │   │   ├── is_IS.php │   │   │   ├── it.php │   │   │   ├── it_CH.php │   │   │   ├── it_IT.php │   │   │   ├── it_SM.php │   │   │   ├── it_VA.php │   │   │   ├── iu.php │   │   │   ├── iu_CA.php │   │   │   ├── iw.php │   │   │   ├── ja.php │   │   │   ├── ja_JP.php │   │   │   ├── jgo.php │   │   │   ├── jmc.php │   │   │   ├── jv.php │   │   │   ├── ka.php │   │   │   ├── ka_GE.php │   │   │   ├── kab.php │   │   │   ├── kab_DZ.php │   │   │   ├── kam.php │   │   │   ├── kde.php │   │   │   ├── kea.php │   │   │   ├── khq.php │   │   │   ├── ki.php │   │   │   ├── kk.php │   │   │   ├── kk_KZ.php │   │   │   ├── kkj.php │   │   │   ├── kl.php │   │   │   ├── kl_GL.php │   │   │   ├── kln.php │   │   │   ├── km.php │   │   │   ├── km_KH.php │   │   │   ├── kn.php │   │   │   ├── kn_IN.php │   │   │   ├── ko.php │   │   │   ├── ko_KP.php │   │   │   ├── ko_KR.php │   │   │   ├── kok.php │   │   │   ├── kok_IN.php │   │   │   ├── ks.php │   │   │   ├── ks_IN.php │   │   │   ├── ks_IN@devanagari.php │   │   │   ├── ksb.php │   │   │   ├── ksf.php │   │   │   ├── ksh.php │   │   │   ├── ku.php │   │   │   ├── ku_TR.php │   │   │   ├── kw.php │   │   │   ├── kw_GB.php │   │   │   ├── ky.php │   │   │   ├── ky_KG.php │   │   │   ├── lag.php │   │   │   ├── lb.php │   │   │   ├── lb_LU.php │   │   │   ├── lg.php │   │   │   ├── lg_UG.php │   │   │   ├── li.php │   │   │   ├── li_NL.php │   │   │   ├── lij.php │   │   │   ├── lij_IT.php │   │   │   ├── lkt.php │   │   │   ├── ln.php │   │   │   ├── ln_AO.php │   │   │   ├── ln_CD.php │   │   │   ├── ln_CF.php │   │   │   ├── ln_CG.php │   │   │   ├── lo.php │   │   │   ├── lo_LA.php │   │   │   ├── lrc.php │   │   │   ├── lrc_IQ.php │   │   │   ├── lt.php │   │   │   ├── lt_LT.php │   │   │   ├── lu.php │   │   │   ├── luo.php │   │   │   ├── luy.php │   │   │   ├── lv.php │   │   │   ├── lv_LV.php │   │   │   ├── lzh.php │   │   │   ├── lzh_TW.php │   │   │   ├── mag.php │   │   │   ├── mag_IN.php │   │   │   ├── mai.php │   │   │   ├── mai_IN.php │   │   │   ├── mas.php │   │   │   ├── mas_TZ.php │   │   │   ├── mer.php │   │   │   ├── mfe.php │   │   │   ├── mfe_MU.php │   │   │   ├── mg.php │   │   │   ├── mg_MG.php │   │   │   ├── mgh.php │   │   │   ├── mgo.php │   │   │   ├── mhr.php │   │   │   ├── mhr_RU.php │   │   │   ├── mi.php │   │   │   ├── mi_NZ.php │   │   │   ├── miq.php │   │   │   ├── miq_NI.php │   │   │   ├── mjw.php │   │   │   ├── mjw_IN.php │   │   │   ├── mk.php │   │   │   ├── mk_MK.php │   │   │   ├── ml.php │   │   │   ├── ml_IN.php │   │   │   ├── mn.php │   │   │   ├── mn_MN.php │   │   │   ├── mni.php │   │   │   ├── mni_IN.php │   │   │   ├── mo.php │   │   │   ├── mr.php │   │   │   ├── mr_IN.php │   │   │   ├── ms.php │   │   │   ├── ms_BN.php │   │   │   ├── ms_MY.php │   │   │   ├── ms_SG.php │   │   │   ├── mt.php │   │   │   ├── mt_MT.php │   │   │   ├── mua.php │   │   │   ├── my.php │   │   │   ├── my_MM.php │   │   │   ├── mzn.php │   │   │   ├── nan.php │   │   │   ├── nan_TW.php │   │   │   ├── nan_TW@latin.php │   │   │   ├── naq.php │   │   │   ├── nb.php │   │   │   ├── nb_NO.php │   │   │   ├── nb_SJ.php │   │   │   ├── nd.php │   │   │   ├── nds.php │   │   │   ├── nds_DE.php │   │   │   ├── nds_NL.php │   │   │   ├── ne.php │   │   │   ├── ne_IN.php │   │   │   ├── ne_NP.php │   │   │   ├── nhn.php │   │   │   ├── nhn_MX.php │   │   │   ├── niu.php │   │   │   ├── niu_NU.php │   │   │   ├── nl.php │   │   │   ├── nl_AW.php │   │   │   ├── nl_BE.php │   │   │   ├── nl_BQ.php │   │   │   ├── nl_CW.php │   │   │   ├── nl_NL.php │   │   │   ├── nl_SR.php │   │   │   ├── nl_SX.php │   │   │   ├── nmg.php │   │   │   ├── nn.php │   │   │   ├── nn_NO.php │   │   │   ├── nnh.php │   │   │   ├── no.php │   │   │   ├── nr.php │   │   │   ├── nr_ZA.php │   │   │   ├── nso.php │   │   │   ├── nso_ZA.php │   │   │   ├── nus.php │   │   │   ├── nyn.php │   │   │   ├── oc.php │   │   │   ├── oc_FR.php │   │   │   ├── om.php │   │   │   ├── om_ET.php │   │   │   ├── om_KE.php │   │   │   ├── or.php │   │   │   ├── or_IN.php │   │   │   ├── os.php │   │   │   ├── os_RU.php │   │   │   ├── pa.php │   │   │   ├── pa_Arab.php │   │   │   ├── pa_Guru.php │   │   │   ├── pa_IN.php │   │   │   ├── pa_PK.php │   │   │   ├── pap.php │   │   │   ├── pap_AW.php │   │   │   ├── pap_CW.php │   │   │   ├── pl.php │   │   │   ├── pl_PL.php │   │   │   ├── prg.php │   │   │   ├── ps.php │   │   │   ├── ps_AF.php │   │   │   ├── pt.php │   │   │   ├── pt_AO.php │   │   │   ├── pt_BR.php │   │   │   ├── pt_CH.php │   │   │   ├── pt_CV.php │   │   │   ├── pt_GQ.php │   │   │   ├── pt_GW.php │   │   │   ├── pt_LU.php │   │   │   ├── pt_MO.php │   │   │   ├── pt_MZ.php │   │   │   ├── pt_PT.php │   │   │   ├── pt_ST.php │   │   │   ├── pt_TL.php │   │   │   ├── qu.php │   │   │   ├── qu_BO.php │   │   │   ├── qu_EC.php │   │   │   ├── quz.php │   │   │   ├── quz_PE.php │   │   │   ├── raj.php │   │   │   ├── raj_IN.php │   │   │   ├── rm.php │   │   │   ├── rn.php │   │   │   ├── ro.php │   │   │   ├── ro_MD.php │   │   │   ├── ro_RO.php │   │   │   ├── rof.php │   │   │   ├── ru.php │   │   │   ├── ru_BY.php │   │   │   ├── ru_KG.php │   │   │   ├── ru_KZ.php │   │   │   ├── ru_MD.php │   │   │   ├── ru_RU.php │   │   │   ├── ru_UA.php │   │   │   ├── rw.php │   │   │   ├── rw_RW.php │   │   │   ├── rwk.php │   │   │   ├── sa.php │   │   │   ├── sa_IN.php │   │   │   ├── sah.php │   │   │   ├── sah_RU.php │   │   │   ├── saq.php │   │   │   ├── sat.php │   │   │   ├── sat_IN.php │   │   │   ├── sbp.php │   │   │   ├── sc.php │   │   │   ├── sc_IT.php │   │   │   ├── sd.php │   │   │   ├── sd_IN.php │   │   │   ├── sd_IN@devanagari.php │   │   │   ├── se.php │   │   │   ├── se_FI.php │   │   │   ├── se_NO.php │   │   │   ├── se_SE.php │   │   │   ├── seh.php │   │   │   ├── ses.php │   │   │   ├── sg.php │   │   │   ├── sgs.php │   │   │   ├── sgs_LT.php │   │   │   ├── sh.php │   │   │   ├── shi.php │   │   │   ├── shi_Latn.php │   │   │   ├── shi_Tfng.php │   │   │   ├── shn.php │   │   │   ├── shn_MM.php │   │   │   ├── shs.php │   │   │   ├── shs_CA.php │   │   │   ├── si.php │   │   │   ├── si_LK.php │   │   │   ├── sid.php │   │   │   ├── sid_ET.php │   │   │   ├── sk.php │   │   │   ├── sk_SK.php │   │   │   ├── sl.php │   │   │   ├── sl_SI.php │   │   │   ├── sm.php │   │   │   ├── sm_WS.php │   │   │   ├── smn.php │   │   │   ├── sn.php │   │   │   ├── so.php │   │   │   ├── so_DJ.php │   │   │   ├── so_ET.php │   │   │   ├── so_KE.php │   │   │   ├── so_SO.php │   │   │   ├── sq.php │   │   │   ├── sq_AL.php │   │   │   ├── sq_MK.php │   │   │   ├── sq_XK.php │   │   │   ├── sr.php │   │   │   ├── sr_Cyrl.php │   │   │   ├── sr_Cyrl_BA.php │   │   │   ├── sr_Cyrl_ME.php │   │   │   ├── sr_Cyrl_XK.php │   │   │   ├── sr_Latn.php │   │   │   ├── sr_Latn_BA.php │   │   │   ├── sr_Latn_ME.php │   │   │   ├── sr_Latn_XK.php │   │   │   ├── sr_ME.php │   │   │   ├── sr_RS.php │   │   │   ├── sr_RS@latin.php │   │   │   ├── ss.php │   │   │   ├── ss_ZA.php │   │   │   ├── st.php │   │   │   ├── st_ZA.php │   │   │   ├── sv.php │   │   │   ├── sv_AX.php │   │   │   ├── sv_FI.php │   │   │   ├── sv_SE.php │   │   │   ├── sw.php │   │   │   ├── sw_CD.php │   │   │   ├── sw_KE.php │   │   │   ├── sw_TZ.php │   │   │   ├── sw_UG.php │   │   │   ├── szl.php │   │   │   ├── szl_PL.php │   │   │   ├── ta.php │   │   │   ├── ta_IN.php │   │   │   ├── ta_LK.php │   │   │   ├── ta_MY.php │   │   │   ├── ta_SG.php │   │   │   ├── tcy.php │   │   │   ├── tcy_IN.php │   │   │   ├── te.php │   │   │   ├── te_IN.php │   │   │   ├── teo.php │   │   │   ├── teo_KE.php │   │   │   ├── tet.php │   │   │   ├── tg.php │   │   │   ├── tg_TJ.php │   │   │   ├── th.php │   │   │   ├── th_TH.php │   │   │   ├── the.php │   │   │   ├── the_NP.php │   │   │   ├── ti.php │   │   │   ├── ti_ER.php │   │   │   ├── ti_ET.php │   │   │   ├── tig.php │   │   │   ├── tig_ER.php │   │   │   ├── tk.php │   │   │   ├── tk_TM.php │   │   │   ├── tl.php │   │   │   ├── tl_PH.php │   │   │   ├── tlh.php │   │   │   ├── tn.php │   │   │   ├── tn_ZA.php │   │   │   ├── to.php │   │   │   ├── to_TO.php │   │   │   ├── tpi.php │   │   │   ├── tpi_PG.php │   │   │   ├── tr.php │   │   │   ├── tr_CY.php │   │   │   ├── tr_TR.php │   │   │   ├── ts.php │   │   │   ├── ts_ZA.php │   │   │   ├── tt.php │   │   │   ├── tt_RU.php │   │   │   ├── tt_RU@iqtelif.php │   │   │   ├── twq.php │   │   │   ├── tzl.php │   │   │   ├── tzm.php │   │   │   ├── tzm_Latn.php │   │   │   ├── ug.php │   │   │   ├── ug_CN.php │   │   │   ├── uk.php │   │   │   ├── uk_UA.php │   │   │   ├── unm.php │   │   │   ├── unm_US.php │   │   │   ├── ur.php │   │   │   ├── ur_IN.php │   │   │   ├── ur_PK.php │   │   │   ├── uz.php │   │   │   ├── uz_Arab.php │   │   │   ├── uz_Cyrl.php │   │   │   ├── uz_Latn.php │   │   │   ├── uz_UZ.php │   │   │   ├── uz_UZ@cyrillic.php │   │   │   ├── vai.php │   │   │   ├── vai_Latn.php │   │   │   ├── vai_Vaii.php │   │   │   ├── ve.php │   │   │   ├── ve_ZA.php │   │   │   ├── vi.php │   │   │   ├── vi_VN.php │   │   │   ├── vo.php │   │   │   ├── vun.php │   │   │   ├── wa.php │   │   │   ├── wa_BE.php │   │   │   ├── wae.php │   │   │   ├── wae_CH.php │   │   │   ├── wal.php │   │   │   ├── wal_ET.php │   │   │   ├── wo.php │   │   │   ├── wo_SN.php │   │   │   ├── xh.php │   │   │   ├── xh_ZA.php │   │   │   ├── xog.php │   │   │   ├── yav.php │   │   │   ├── yi.php │   │   │   ├── yi_US.php │   │   │   ├── yo.php │   │   │   ├── yo_BJ.php │   │   │   ├── yo_NG.php │   │   │   ├── yue.php │   │   │   ├── yue_HK.php │   │   │   ├── yue_Hans.php │   │   │   ├── yue_Hant.php │   │   │   ├── yuw.php │   │   │   ├── yuw_PG.php │   │   │   ├── zgh.php │   │   │   ├── zh.php │   │   │   ├── zh_CN.php │   │   │   ├── zh_HK.php │   │   │   ├── zh_Hans.php │   │   │   ├── zh_Hans_HK.php │   │   │   ├── zh_Hans_MO.php │   │   │   ├── zh_Hans_SG.php │   │   │   ├── zh_Hant.php │   │   │   ├── zh_Hant_HK.php │   │   │   ├── zh_Hant_MO.php │   │   │   ├── zh_Hant_TW.php │   │   │   ├── zh_MO.php │   │   │   ├── zh_SG.php │   │   │   ├── zh_TW.php │   │   │   ├── zh_YUE.php │   │   │   ├── zu.php │   │   │   └── zu_ZA.php │   │   ├── Language.php │   │   ├── Laravel │   │   │   └── ServiceProvider.php │   │   ├── List │   │   │   ├── languages.php │   │   │   └── regions.php │   │   ├── MessageFormatter │   │   │   └── MessageFormatterMapper.php │   │   ├── Month.php │   │   ├── PHPStan │   │   │   ├── MacroExtension.php │   │   │   └── MacroMethodReflection.php │   │   ├── Traits │   │   │   ├── Boundaries.php │   │   │   ├── Cast.php │   │   │   ├── Comparison.php │   │   │   ├── Converter.php │   │   │   ├── Creator.php │   │   │   ├── Date.php │   │   │   ├── DeprecatedPeriodProperties.php │   │   │   ├── Difference.php │   │   │   ├── IntervalRounding.php │   │   │   ├── IntervalStep.php │   │   │   ├── LocalFactory.php │   │   │   ├── Localization.php │   │   │   ├── Macro.php │   │   │   ├── MagicParameter.php │   │   │   ├── Mixin.php │   │   │   ├── Modifiers.php │   │   │   ├── Mutability.php │   │   │   ├── ObjectInitialisation.php │   │   │   ├── Options.php │   │   │   ├── Rounding.php │   │   │   ├── Serialization.php │   │   │   ├── StaticLocalization.php │   │   │   ├── StaticOptions.php │   │   │   ├── Test.php │   │   │   ├── Timestamp.php │   │   │   ├── ToStringFormat.php │   │   │   ├── Units.php │   │   │   └── Week.php │   │   ├── Translator.php │   │   ├── TranslatorImmutable.php │   │   ├── TranslatorStrongTypeInterface.php │   │   ├── Unit.php │   │   ├── WeekDay.php │   │   └── WrapperClock.php │   ├── nette │   │   ├── schema │   │   │   ├── composer.json │   │   │   ├── license.md │   │   │   ├── readme.md │   │   │   └── src │   │   │   └── Schema │   │   │   ├── Context.php │   │   │   ├── DynamicParameter.php │   │   │   ├── Elements │   │   │   │   ├── AnyOf.php │   │   │   │   ├── Base.php │   │   │   │   ├── Structure.php │   │   │   │   └── Type.php │   │   │   ├── Expect.php │   │   │   ├── Helpers.php │   │   │   ├── Message.php │   │   │   ├── Processor.php │   │   │   ├── Schema.php │   │   │   └── ValidationException.php │   │   └── utils │   │   ├── composer.json │   │   ├── license.md │   │   ├── readme.md │   │   └── src │   │   ├── HtmlStringable.php │   │   ├── Iterators │   │   │   ├── CachingIterator.php │   │   │   └── Mapper.php │   │   ├── SmartObject.php │   │   ├── StaticClass.php │   │   ├── Translator.php │   │   ├── Utils │   │   │   ├── ArrayHash.php │   │   │   ├── ArrayList.php │   │   │   ├── Arrays.php │   │   │   ├── Callback.php │   │   │   ├── DateTime.php │   │   │   ├── FileInfo.php │   │   │   ├── FileSystem.php │   │   │   ├── Finder.php │   │   │   ├── Floats.php │   │   │   ├── Helpers.php │   │   │   ├── Html.php │   │   │   ├── Image.php │   │   │   ├── ImageColor.php │   │   │   ├── ImageType.php │   │   │   ├── Iterables.php │   │   │   ├── Json.php │   │   │   ├── ObjectHelpers.php │   │   │   ├── Paginator.php │   │   │   ├── Random.php │   │   │   ├── Reflection.php │   │   │   ├── ReflectionMethod.php │   │   │   ├── Strings.php │   │   │   ├── Type.php │   │   │   ├── Validators.php │   │   │   └── exceptions.php │   │   ├── compatibility.php │   │   └── exceptions.php │   ├── nikic │   │   └── php-parser │   │   ├── LICENSE │   │   ├── README.md │   │   ├── bin │   │   │   └── php-parse │   │   ├── composer.json │   │   └── lib │   │   └── PhpParser │   │   ├── Builder │   │   │   ├── ClassConst.php │   │   │   ├── Class_.php │   │   │   ├── Declaration.php │   │   │   ├── EnumCase.php │   │   │   ├── Enum_.php │   │   │   ├── FunctionLike.php │   │   │   ├── Function_.php │   │   │   ├── Interface_.php │   │   │   ├── Method.php │   │   │   ├── Namespace_.php │   │   │   ├── Param.php │   │   │   ├── Property.php │   │   │   ├── TraitUse.php │   │   │   ├── TraitUseAdaptation.php │   │   │   ├── Trait_.php │   │   │   └── Use_.php │   │   ├── Builder.php │   │   ├── BuilderFactory.php │   │   ├── BuilderHelpers.php │   │   ├── Comment │   │   │   └── Doc.php │   │   ├── Comment.php │   │   ├── ConstExprEvaluationException.php │   │   ├── ConstExprEvaluator.php │   │   ├── Error.php │   │   ├── ErrorHandler │   │   │   ├── Collecting.php │   │   │   └── Throwing.php │   │   ├── ErrorHandler.php │   │   ├── Internal │   │   │   ├── DiffElem.php │   │   │   ├── Differ.php │   │   │   ├── PrintableNewAnonClassNode.php │   │   │   ├── TokenPolyfill.php │   │   │   └── TokenStream.php │   │   ├── JsonDecoder.php │   │   ├── Lexer │   │   │   ├── Emulative.php │   │   │   └── TokenEmulator │   │   │   ├── AsymmetricVisibilityTokenEmulator.php │   │   │   ├── AttributeEmulator.php │   │   │   ├── EnumTokenEmulator.php │   │   │   ├── ExplicitOctalEmulator.php │   │   │   ├── KeywordEmulator.php │   │   │   ├── MatchTokenEmulator.php │   │   │   ├── NullsafeTokenEmulator.php │   │   │   ├── PropertyTokenEmulator.php │   │   │   ├── ReadonlyFunctionTokenEmulator.php │   │   │   ├── ReadonlyTokenEmulator.php │   │   │   ├── ReverseEmulator.php │   │   │   └── TokenEmulator.php │   │   ├── Lexer.php │   │   ├── Modifiers.php │   │   ├── NameContext.php │   │   ├── Node │   │   │   ├── Arg.php │   │   │   ├── ArrayItem.php │   │   │   ├── Attribute.php │   │   │   ├── AttributeGroup.php │   │   │   ├── ClosureUse.php │   │   │   ├── ComplexType.php │   │   │   ├── Const_.php │   │   │   ├── DeclareItem.php │   │   │   ├── Expr │   │   │   │   ├── ArrayDimFetch.php │   │   │   │   ├── ArrayItem.php │   │   │   │   ├── Array_.php │   │   │   │   ├── ArrowFunction.php │   │   │   │   ├── Assign.php │   │   │   │   ├── AssignOp │   │   │   │   │   ├── BitwiseAnd.php │   │   │   │   │   ├── BitwiseOr.php │   │   │   │   │   ├── BitwiseXor.php │   │   │   │   │   ├── Coalesce.php │   │   │   │   │   ├── Concat.php │   │   │   │   │   ├── Div.php │   │   │   │   │   ├── Minus.php │   │   │   │   │   ├── Mod.php │   │   │   │   │   ├── Mul.php │   │   │   │   │   ├── Plus.php │   │   │   │   │   ├── Pow.php │   │   │   │   │   ├── ShiftLeft.php │   │   │   │   │   └── ShiftRight.php │   │   │   │   ├── AssignOp.php │   │   │   │   ├── AssignRef.php │   │   │   │   ├── BinaryOp │   │   │   │   │   ├── BitwiseAnd.php │   │   │   │   │   ├── BitwiseOr.php │   │   │   │   │   ├── BitwiseXor.php │   │   │   │   │   ├── BooleanAnd.php │   │   │   │   │   ├── BooleanOr.php │   │   │   │   │   ├── Coalesce.php │   │   │   │   │   ├── Concat.php │   │   │   │   │   ├── Div.php │   │   │   │   │   ├── Equal.php │   │   │   │   │   ├── Greater.php │   │   │   │   │   ├── GreaterOrEqual.php │   │   │   │   │   ├── Identical.php │   │   │   │   │   ├── LogicalAnd.php │   │   │   │   │   ├── LogicalOr.php │   │   │   │   │   ├── LogicalXor.php │   │   │   │   │   ├── Minus.php │   │   │   │   │   ├── Mod.php │   │   │   │   │   ├── Mul.php │   │   │   │   │   ├── NotEqual.php │   │   │   │   │   ├── NotIdentical.php │   │   │   │   │   ├── Plus.php │   │   │   │   │   ├── Pow.php │   │   │   │   │   ├── ShiftLeft.php │   │   │   │   │   ├── ShiftRight.php │   │   │   │   │   ├── Smaller.php │   │   │   │   │   ├── SmallerOrEqual.php │   │   │   │   │   └── Spaceship.php │   │   │   │   ├── BinaryOp.php │   │   │   │   ├── BitwiseNot.php │   │   │   │   ├── BooleanNot.php │   │   │   │   ├── CallLike.php │   │   │   │   ├── Cast │   │   │   │   │   ├── Array_.php │   │   │   │   │   ├── Bool_.php │   │   │   │   │   ├── Double.php │   │   │   │   │   ├── Int_.php │   │   │   │   │   ├── Object_.php │   │   │   │   │   ├── String_.php │   │   │   │   │   └── Unset_.php │   │   │   │   ├── Cast.php │   │   │   │   ├── ClassConstFetch.php │   │   │   │   ├── Clone_.php │   │   │   │   ├── Closure.php │   │   │   │   ├── ClosureUse.php │   │   │   │   ├── ConstFetch.php │   │   │   │   ├── Empty_.php │   │   │   │   ├── Error.php │   │   │   │   ├── ErrorSuppress.php │   │   │   │   ├── Eval_.php │   │   │   │   ├── Exit_.php │   │   │   │   ├── FuncCall.php │   │   │   │   ├── Include_.php │   │   │   │   ├── Instanceof_.php │   │   │   │   ├── Isset_.php │   │   │   │   ├── List_.php │   │   │   │   ├── Match_.php │   │   │   │   ├── MethodCall.php │   │   │   │   ├── New_.php │   │   │   │   ├── NullsafeMethodCall.php │   │   │   │   ├── NullsafePropertyFetch.php │   │   │   │   ├── PostDec.php │   │   │   │   ├── PostInc.php │   │   │   │   ├── PreDec.php │   │   │   │   ├── PreInc.php │   │   │   │   ├── Print_.php │   │   │   │   ├── PropertyFetch.php │   │   │   │   ├── ShellExec.php │   │   │   │   ├── StaticCall.php │   │   │   │   ├── StaticPropertyFetch.php │   │   │   │   ├── Ternary.php │   │   │   │   ├── Throw_.php │   │   │   │   ├── UnaryMinus.php │   │   │   │   ├── UnaryPlus.php │   │   │   │   ├── Variable.php │   │   │   │   ├── YieldFrom.php │   │   │   │   └── Yield_.php │   │   │   ├── Expr.php │   │   │   ├── FunctionLike.php │   │   │   ├── Identifier.php │   │   │   ├── InterpolatedStringPart.php │   │   │   ├── IntersectionType.php │   │   │   ├── MatchArm.php │   │   │   ├── Name │   │   │   │   ├── FullyQualified.php │   │   │   │   └── Relative.php │   │   │   ├── Name.php │   │   │   ├── NullableType.php │   │   │   ├── Param.php │   │   │   ├── PropertyHook.php │   │   │   ├── PropertyItem.php │   │   │   ├── Scalar │   │   │   │   ├── DNumber.php │   │   │   │   ├── Encapsed.php │   │   │   │   ├── EncapsedStringPart.php │   │   │   │   ├── Float_.php │   │   │   │   ├── Int_.php │   │   │   │   ├── InterpolatedString.php │   │   │   │   ├── LNumber.php │   │   │   │   ├── MagicConst │   │   │   │   │   ├── Class_.php │   │   │   │   │   ├── Dir.php │   │   │   │   │   ├── File.php │   │   │   │   │   ├── Function_.php │   │   │   │   │   ├── Line.php │   │   │   │   │   ├── Method.php │   │   │   │   │   ├── Namespace_.php │   │   │   │   │   ├── Property.php │   │   │   │   │   └── Trait_.php │   │   │   │   ├── MagicConst.php │   │   │   │   └── String_.php │   │   │   ├── Scalar.php │   │   │   ├── StaticVar.php │   │   │   ├── Stmt │   │   │   │   ├── Block.php │   │   │   │   ├── Break_.php │   │   │   │   ├── Case_.php │   │   │   │   ├── Catch_.php │   │   │   │   ├── ClassConst.php │   │   │   │   ├── ClassLike.php │   │   │   │   ├── ClassMethod.php │   │   │   │   ├── Class_.php │   │   │   │   ├── Const_.php │   │   │   │   ├── Continue_.php │   │   │   │   ├── DeclareDeclare.php │   │   │   │   ├── Declare_.php │   │   │   │   ├── Do_.php │   │   │   │   ├── Echo_.php │   │   │   │   ├── ElseIf_.php │   │   │   │   ├── Else_.php │   │   │   │   ├── EnumCase.php │   │   │   │   ├── Enum_.php │   │   │   │   ├── Expression.php │   │   │   │   ├── Finally_.php │   │   │   │   ├── For_.php │   │   │   │   ├── Foreach_.php │   │   │   │   ├── Function_.php │   │   │   │   ├── Global_.php │   │   │   │   ├── Goto_.php │   │   │   │   ├── GroupUse.php │   │   │   │   ├── HaltCompiler.php │   │   │   │   ├── If_.php │   │   │   │   ├── InlineHTML.php │   │   │   │   ├── Interface_.php │   │   │   │   ├── Label.php │   │   │   │   ├── Namespace_.php │   │   │   │   ├── Nop.php │   │   │   │   ├── Property.php │   │   │   │   ├── PropertyProperty.php │   │   │   │   ├── Return_.php │   │   │   │   ├── StaticVar.php │   │   │   │   ├── Static_.php │   │   │   │   ├── Switch_.php │   │   │   │   ├── TraitUse.php │   │   │   │   ├── TraitUseAdaptation │   │   │   │   │   ├── Alias.php │   │   │   │   │   └── Precedence.php │   │   │   │   ├── TraitUseAdaptation.php │   │   │   │   ├── Trait_.php │   │   │   │   ├── TryCatch.php │   │   │   │   ├── Unset_.php │   │   │   │   ├── UseUse.php │   │   │   │   ├── Use_.php │   │   │   │   └── While_.php │   │   │   ├── Stmt.php │   │   │   ├── UnionType.php │   │   │   ├── UseItem.php │   │   │   ├── VarLikeIdentifier.php │   │   │   └── VariadicPlaceholder.php │   │   ├── Node.php │   │   ├── NodeAbstract.php │   │   ├── NodeDumper.php │   │   ├── NodeFinder.php │   │   ├── NodeTraverser.php │   │   ├── NodeTraverserInterface.php │   │   ├── NodeVisitor │   │   │   ├── CloningVisitor.php │   │   │   ├── CommentAnnotatingVisitor.php │   │   │   ├── FindingVisitor.php │   │   │   ├── FirstFindingVisitor.php │   │   │   ├── NameResolver.php │   │   │   ├── NodeConnectingVisitor.php │   │   │   └── ParentConnectingVisitor.php │   │   ├── NodeVisitor.php │   │   ├── NodeVisitorAbstract.php │   │   ├── Parser │   │   │   ├── Php7.php │   │   │   └── Php8.php │   │   ├── Parser.php │   │   ├── ParserAbstract.php │   │   ├── ParserFactory.php │   │   ├── PhpVersion.php │   │   ├── PrettyPrinter │   │   │   └── Standard.php │   │   ├── PrettyPrinter.php │   │   ├── PrettyPrinterAbstract.php │   │   ├── Token.php │   │   └── compatibility_tokens.php │   ├── nunomaduro │   │   ├── collision │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   ├── phpstan-baseline.neon │   │   │   └── src │   │   │   ├── Adapters │   │   │   │   ├── Laravel │   │   │   │   │   ├── CollisionServiceProvider.php │   │   │   │   │   ├── Commands │   │   │   │   │   │   └── TestCommand.php │   │   │   │   │   ├── ExceptionHandler.php │   │   │   │   │   ├── Exceptions │   │   │   │   │   │   ├── NotSupportedYetException.php │   │   │   │   │   │   └── RequirementsException.php │   │   │   │   │   ├── IgnitionSolutionsRepository.php │   │   │   │   │   └── Inspector.php │   │   │   │   └── Phpunit │   │   │   │   ├── Autoload.php │   │   │   │   ├── ConfigureIO.php │   │   │   │   ├── Printers │   │   │   │   │   ├── DefaultPrinter.php │   │   │   │   │   └── ReportablePrinter.php │   │   │   │   ├── State.php │   │   │   │   ├── Style.php │   │   │   │   ├── Subscribers │   │   │   │   │   ├── EnsurePrinterIsRegisteredSubscriber.php │   │   │   │   │   └── Subscriber.php │   │   │   │   ├── Support │   │   │   │   │   └── ResultReflection.php │   │   │   │   └── TestResult.php │   │   │   ├── ArgumentFormatter.php │   │   │   ├── ConsoleColor.php │   │   │   ├── Contracts │   │   │   │   ├── Adapters │   │   │   │   │   └── Phpunit │   │   │   │   │   └── HasPrintableTestCaseName.php │   │   │   │   ├── RenderableOnCollisionEditor.php │   │   │   │   ├── RenderlessEditor.php │   │   │   │   ├── RenderlessTrace.php │   │   │   │   └── SolutionsRepository.php │   │   │   ├── Coverage.php │   │   │   ├── Exceptions │   │   │   │   ├── InvalidStyleException.php │   │   │   │   ├── ShouldNotHappen.php │   │   │   │   ├── TestException.php │   │   │   │   └── TestOutcome.php │   │   │   ├── Handler.php │   │   │   ├── Highlighter.php │   │   │   ├── Provider.php │   │   │   ├── SolutionsRepositories │   │   │   │   └── NullSolutionsRepository.php │   │   │   └── Writer.php │   │   └── termwind │   │   ├── LICENSE.md │   │   ├── composer.json │   │   ├── playground.php │   │   └── src │   │   ├── Actions │   │   │   └── StyleToMethod.php │   │   ├── Components │   │   │   ├── Anchor.php │   │   │   ├── BreakLine.php │   │   │   ├── Dd.php │   │   │   ├── Div.php │   │   │   ├── Dl.php │   │   │   ├── Dt.php │   │   │   ├── Element.php │   │   │   ├── Hr.php │   │   │   ├── Li.php │   │   │   ├── Ol.php │   │   │   ├── Paragraph.php │   │   │   ├── Raw.php │   │   │   ├── Span.php │   │   │   └── Ul.php │   │   ├── Enums │   │   │   └── Color.php │   │   ├── Exceptions │   │   │   ├── ColorNotFound.php │   │   │   ├── InvalidChild.php │   │   │   ├── InvalidColor.php │   │   │   ├── InvalidStyle.php │   │   │   └── StyleNotFound.php │   │   ├── Functions.php │   │   ├── Helpers │   │   │   └── QuestionHelper.php │   │   ├── Html │   │   │   ├── CodeRenderer.php │   │   │   ├── InheritStyles.php │   │   │   ├── PreRenderer.php │   │   │   └── TableRenderer.php │   │   ├── HtmlRenderer.php │   │   ├── Laravel │   │   │   └── TermwindServiceProvider.php │   │   ├── Question.php │   │   ├── Repositories │   │   │   └── Styles.php │   │   ├── Terminal.php │   │   ├── Termwind.php │   │   └── ValueObjects │   │   ├── Node.php │   │   ├── Style.php │   │   └── Styles.php │   ├── openspout │   │   └── openspout │   │   ├── LICENSE │   │   ├── LICENSE-for-cc42c1d │   │   ├── README.md │   │   ├── UPGRADE.md │   │   ├── composer.json │   │   ├── renovate.json │   │   └── src │   │   ├── Common │   │   │   ├── Entity │   │   │   │   ├── Cell │   │   │   │   │   ├── BooleanCell.php │   │   │   │   │   ├── DateIntervalCell.php │   │   │   │   │   ├── DateTimeCell.php │   │   │   │   │   ├── EmptyCell.php │   │   │   │   │   ├── ErrorCell.php │   │   │   │   │   ├── FormulaCell.php │   │   │   │   │   ├── NumericCell.php │   │   │   │   │   └── StringCell.php │   │   │   │   ├── Cell.php │   │   │   │   ├── Comment │   │   │   │   │   ├── Comment.php │   │   │   │   │   └── TextRun.php │   │   │   │   ├── Row.php │   │   │   │   └── Style │   │   │   │   ├── Border.php │   │   │   │   ├── BorderPart.php │   │   │   │   ├── CellAlignment.php │   │   │   │   ├── CellVerticalAlignment.php │   │   │   │   ├── Color.php │   │   │   │   └── Style.php │   │   │   ├── Exception │   │   │   │   ├── EncodingConversionException.php │   │   │   │   ├── IOException.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── InvalidColorException.php │   │   │   │   ├── OpenSpoutException.php │   │   │   │   └── UnsupportedTypeException.php │   │   │   ├── Helper │   │   │   │   ├── EncodingHelper.php │   │   │   │   ├── Escaper │   │   │   │   │   ├── EscaperInterface.php │   │   │   │   │   ├── ODS.php │   │   │   │   │   └── XLSX.php │   │   │   │   ├── FileSystemHelper.php │   │   │   │   ├── FileSystemHelperInterface.php │   │   │   │   └── StringHelper.php │   │   │   └── TempFolderOptionTrait.php │   │   ├── Reader │   │   │   ├── AbstractReader.php │   │   │   ├── CSV │   │   │   │   ├── Options.php │   │   │   │   ├── Reader.php │   │   │   │   ├── RowIterator.php │   │   │   │   ├── Sheet.php │   │   │   │   └── SheetIterator.php │   │   │   ├── Common │   │   │   │   ├── ColumnWidth.php │   │   │   │   ├── Creator │   │   │   │   │   └── ReaderFactory.php │   │   │   │   ├── Manager │   │   │   │   │   └── RowManager.php │   │   │   │   └── XMLProcessor.php │   │   │   ├── Exception │   │   │   │   ├── InvalidValueException.php │   │   │   │   ├── IteratorNotRewindableException.php │   │   │   │   ├── NoSheetsFoundException.php │   │   │   │   ├── ReaderException.php │   │   │   │   ├── ReaderNotOpenedException.php │   │   │   │   ├── SharedStringNotFoundException.php │   │   │   │   └── XMLProcessingException.php │   │   │   ├── ODS │   │   │   │   ├── Helper │   │   │   │   │   ├── CellValueFormatter.php │   │   │   │   │   └── SettingsHelper.php │   │   │   │   ├── Options.php │   │   │   │   ├── Reader.php │   │   │   │   ├── RowIterator.php │   │   │   │   ├── Sheet.php │   │   │   │   └── SheetIterator.php │   │   │   ├── ReaderInterface.php │   │   │   ├── RowIteratorInterface.php │   │   │   ├── SheetInterface.php │   │   │   ├── SheetIteratorInterface.php │   │   │   ├── SheetWithMergeCellsInterface.php │   │   │   ├── SheetWithVisibilityInterface.php │   │   │   ├── Wrapper │   │   │   │   ├── XMLInternalErrorsHelper.php │   │   │   │   └── XMLReader.php │   │   │   └── XLSX │   │   │   ├── Helper │   │   │   │   ├── CellHelper.php │   │   │   │   ├── CellValueFormatter.php │   │   │   │   ├── DateFormatHelper.php │   │   │   │   └── DateIntervalFormatHelper.php │   │   │   ├── Manager │   │   │   │   ├── SharedStringsCaching │   │   │   │   │   ├── CachingStrategyFactory.php │   │   │   │   │   ├── CachingStrategyFactoryInterface.php │   │   │   │   │   ├── CachingStrategyInterface.php │   │   │   │   │   ├── FileBasedStrategy.php │   │   │   │   │   ├── InMemoryStrategy.php │   │   │   │   │   └── MemoryLimit.php │   │   │   │   ├── SharedStringsManager.php │   │   │   │   ├── SheetManager.php │   │   │   │   ├── StyleManager.php │   │   │   │   ├── StyleManagerInterface.php │   │   │   │   └── WorkbookRelationshipsManager.php │   │   │   ├── Options.php │   │   │   ├── Reader.php │   │   │   ├── RowIterator.php │   │   │   ├── Sheet.php │   │   │   ├── SheetHeaderReader.php │   │   │   ├── SheetIterator.php │   │   │   └── SheetMergeCellsReader.php │   │   └── Writer │   │   ├── AbstractWriter.php │   │   ├── AbstractWriterMultiSheets.php │   │   ├── AutoFilter.php │   │   ├── CSV │   │   │   ├── Options.php │   │   │   └── Writer.php │   │   ├── Common │   │   │   ├── AbstractOptions.php │   │   │   ├── ColumnWidth.php │   │   │   ├── Creator │   │   │   │   └── WriterFactory.php │   │   │   ├── Entity │   │   │   │   ├── Sheet.php │   │   │   │   ├── Workbook.php │   │   │   │   └── Worksheet.php │   │   │   ├── Helper │   │   │   │   ├── CellHelper.php │   │   │   │   ├── FileSystemWithRootFolderHelperInterface.php │   │   │   │   └── ZipHelper.php │   │   │   └── Manager │   │   │   ├── AbstractWorkbookManager.php │   │   │   ├── RegisteredStyle.php │   │   │   ├── SheetManager.php │   │   │   ├── Style │   │   │   │   ├── AbstractStyleManager.php │   │   │   │   ├── AbstractStyleRegistry.php │   │   │   │   ├── PossiblyUpdatedStyle.php │   │   │   │   ├── StyleManagerInterface.php │   │   │   │   └── StyleMerger.php │   │   │   ├── WorkbookManagerInterface.php │   │   │   └── WorksheetManagerInterface.php │   │   ├── Exception │   │   │   ├── Border │   │   │   │   ├── InvalidNameException.php │   │   │   │   ├── InvalidStyleException.php │   │   │   │   └── InvalidWidthException.php │   │   │   ├── InvalidSheetNameException.php │   │   │   ├── SheetNotFoundException.php │   │   │   ├── WriterAlreadyOpenedException.php │   │   │   ├── WriterException.php │   │   │   └── WriterNotOpenedException.php │   │   ├── ODS │   │   │   ├── Helper │   │   │   │   ├── BorderHelper.php │   │   │   │   └── FileSystemHelper.php │   │   │   ├── Manager │   │   │   │   ├── Style │   │   │   │   │   ├── StyleManager.php │   │   │   │   │   └── StyleRegistry.php │   │   │   │   ├── WorkbookManager.php │   │   │   │   └── WorksheetManager.php │   │   │   ├── Options.php │   │   │   └── Writer.php │   │   ├── WriterInterface.php │   │   └── XLSX │   │   ├── Entity │   │   │   └── SheetView.php │   │   ├── Helper │   │   │   ├── BorderHelper.php │   │   │   ├── DateHelper.php │   │   │   ├── DateIntervalHelper.php │   │   │   ├── FileSystemHelper.php │   │   │   └── PasswordHashHelper.php │   │   ├── Manager │   │   │   ├── CommentsManager.php │   │   │   ├── SharedStringsManager.php │   │   │   ├── Style │   │   │   │   ├── StyleManager.php │   │   │   │   └── StyleRegistry.php │   │   │   ├── WorkbookManager.php │   │   │   └── WorksheetManager.php │   │   ├── MergeCell.php │   │   ├── Options │   │   │   ├── HeaderFooter.php │   │   │   ├── PageMargin.php │   │   │   ├── PageOrientation.php │   │   │   ├── PageSetup.php │   │   │   ├── PaperSize.php │   │   │   ├── SheetProtection.php │   │   │   └── WorkbookProtection.php │   │   ├── Options.php │   │   ├── Properties.php │   │   └── Writer.php │   ├── pest-plugins.json │   ├── pestphp │   │   ├── pest │   │   │   ├── LICENSE.md │   │   │   ├── bin │   │   │   │   ├── pest │   │   │   │   └── worker.php │   │   │   ├── composer.json │   │   │   ├── extension.neon │   │   │   ├── overrides │   │   │   │   ├── Event │   │   │   │   │   └── Value │   │   │   │   │   └── ThrowableBuilder.php │   │   │   │   ├── Logging │   │   │   │   │   └── JUnit │   │   │   │   │   └── JunitXmlLogger.php │   │   │   │   ├── Runner │   │   │   │   │   ├── Filter │   │   │   │   │   │   └── NameFilterIterator.php │   │   │   │   │   ├── ResultCache │   │   │   │   │   │   └── DefaultResultCache.php │   │   │   │   │   └── TestSuiteLoader.php │   │   │   │   └── TextUI │   │   │   │   ├── Command │   │   │   │   │   └── Commands │   │   │   │   │   └── WarmCodeCoverageCacheCommand.php │   │   │   │   ├── Output │   │   │   │   │   └── Default │   │   │   │   │   └── ProgressPrinter │   │   │   │   │   └── Subscriber │   │   │   │   │   └── TestSkippedSubscriber.php │   │   │   │   └── TestSuiteFilterProcessor.php │   │   │   ├── phpstan-baseline.neon │   │   │   ├── resources │   │   │   │   ├── base-phpunit.xml │   │   │   │   └── views │   │   │   │   ├── components │   │   │   │   │   ├── badge.php │   │   │   │   │   ├── new-line.php │   │   │   │   │   └── two-column-detail.php │   │   │   │   ├── usage.php │   │   │   │   └── version.php │   │   │   ├── src │   │   │   │   ├── ArchPresets │   │   │   │   │   ├── AbstractPreset.php │   │   │   │   │   ├── Custom.php │   │   │   │   │   ├── Laravel.php │   │   │   │   │   ├── Php.php │   │   │   │   │   ├── Relaxed.php │   │   │   │   │   ├── Security.php │   │   │   │   │   └── Strict.php │   │   │   │   ├── Bootstrappers │   │   │   │   │   ├── BootExcludeList.php │   │   │   │   │   ├── BootFiles.php │   │   │   │   │   ├── BootKernelDump.php │   │   │   │   │   ├── BootOverrides.php │   │   │   │   │   ├── BootSubscribers.php │   │   │   │   │   └── BootView.php │   │   │   │   ├── Collision │   │   │   │   │   └── Events.php │   │   │   │   ├── Concerns │   │   │   │   │   ├── Expectable.php │   │   │   │   │   ├── Extendable.php │   │   │   │   │   ├── Logging │   │   │   │   │   │   └── WritesToConsole.php │   │   │   │   │   ├── Pipeable.php │   │   │   │   │   ├── Retrievable.php │   │   │   │   │   └── Testable.php │   │   │   │   ├── Configuration │   │   │   │   │   ├── Presets.php │   │   │   │   │   ├── Printer.php │   │   │   │   │   └── Project.php │   │   │   │   ├── Configuration.php │   │   │   │   ├── Console │   │   │   │   │   ├── Help.php │   │   │   │   │   └── Thanks.php │   │   │   │   ├── Contracts │   │   │   │   │   ├── ArchPreset.php │   │   │   │   │   ├── Bootstrapper.php │   │   │   │   │   ├── HasPrintableTestCaseName.php │   │   │   │   │   ├── Panicable.php │   │   │   │   │   ├── Plugins │   │   │   │   │   │   ├── AddsOutput.php │   │   │   │   │   │   ├── Bootable.php │   │   │   │   │   │   ├── HandlesArguments.php │   │   │   │   │   │   ├── HandlesOriginalArguments.php │   │   │   │   │   │   └── Terminable.php │   │   │   │   │   ├── TestCaseFilter.php │   │   │   │   │   └── TestCaseMethodFilter.php │   │   │   │   ├── Evaluators │   │   │   │   │   └── Attributes.php │   │   │   │   ├── Exceptions │   │   │   │   │   ├── AfterAllAlreadyExist.php │   │   │   │   │   ├── AfterAllWithinDescribe.php │   │   │   │   │   ├── AfterBeforeTestFunction.php │   │   │   │   │   ├── BeforeAllAlreadyExist.php │   │   │   │   │   ├── BeforeAllWithinDescribe.php │   │   │   │   │   ├── DatasetAlreadyExists.php │   │   │   │   │   ├── DatasetArgumentsMismatch.php │   │   │   │   │   ├── DatasetDoesNotExist.php │   │   │   │   │   ├── DatasetMissing.php │   │   │   │   │   ├── ExpectationNotFound.php │   │   │   │   │   ├── FatalException.php │   │   │   │   │   ├── FileOrFolderNotFound.php │   │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   │   ├── InvalidExpectation.php │   │   │   │   │   ├── InvalidExpectationValue.php │   │   │   │   │   ├── InvalidOption.php │   │   │   │   │   ├── InvalidPestCommand.php │   │   │   │   │   ├── MissingDependency.php │   │   │   │   │   ├── NoDirtyTestsFound.php │   │   │   │   │   ├── ShouldNotHappen.php │   │   │   │   │   ├── TestAlreadyExist.php │   │   │   │   │   ├── TestCaseAlreadyInUse.php │   │   │   │   │   ├── TestCaseClassOrTraitNotFound.php │   │   │   │   │   ├── TestClosureMustNotBeStatic.php │   │   │   │   │   └── TestDescriptionMissing.php │   │   │   │   ├── Expectation.php │   │   │   │   ├── Expectations │   │   │   │   │   ├── EachExpectation.php │   │   │   │   │   ├── HigherOrderExpectation.php │   │   │   │   │   └── OppositeExpectation.php │   │   │   │   ├── Factories │   │   │   │   │   ├── Attribute.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   └── HigherOrderable.php │   │   │   │   │   ├── Covers │   │   │   │   │   │   ├── CoversClass.php │   │   │   │   │   │   ├── CoversFunction.php │   │   │   │   │   │   └── CoversNothing.php │   │   │   │   │   ├── TestCaseFactory.php │   │   │   │   │   └── TestCaseMethodFactory.php │   │   │   │   ├── Functions.php │   │   │   │   ├── Kernel.php │   │   │   │   ├── KernelDump.php │   │   │   │   ├── Logging │   │   │   │   │   ├── Converter.php │   │   │   │   │   └── TeamCity │   │   │   │   │   ├── ServiceMessage.php │   │   │   │   │   ├── Subscriber │   │   │   │   │   │   ├── Subscriber.php │   │   │   │   │   │   ├── TestConsideredRiskySubscriber.php │   │   │   │   │   │   ├── TestErroredSubscriber.php │   │   │   │   │   │   ├── TestExecutionFinishedSubscriber.php │   │   │   │   │   │   ├── TestFailedSubscriber.php │   │   │   │   │   │   ├── TestFinishedSubscriber.php │   │   │   │   │   │   ├── TestPreparedSubscriber.php │   │   │   │   │   │   ├── TestSkippedSubscriber.php │   │   │   │   │   │   ├── TestSuiteFinishedSubscriber.php │   │   │   │   │   │   └── TestSuiteStartedSubscriber.php │   │   │   │   │   └── TeamCityLogger.php │   │   │   │   ├── Matchers │   │   │   │   │   └── Any.php │   │   │   │   ├── Mixins │   │   │   │   │   └── Expectation.php │   │   │   │   ├── Panic.php │   │   │   │   ├── PendingCalls │   │   │   │   │   ├── AfterEachCall.php │   │   │   │   │   ├── BeforeEachCall.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   └── Describable.php │   │   │   │   │   ├── DescribeCall.php │   │   │   │   │   ├── TestCall.php │   │   │   │   │   └── UsesCall.php │   │   │   │   ├── Pest.php │   │   │   │   ├── Plugin.php │   │   │   │   ├── Plugins │   │   │   │   │   ├── Actions │   │   │   │   │   │   ├── CallsAddsOutput.php │   │   │   │   │   │   ├── CallsBoot.php │   │   │   │   │   │   ├── CallsHandleArguments.php │   │   │   │   │   │   ├── CallsHandleOriginalArguments.php │   │   │   │   │   │   └── CallsTerminable.php │   │   │   │   │   ├── Bail.php │   │   │   │   │   ├── Cache.php │   │   │   │   │   ├── Concerns │   │   │   │   │   │   └── HandleArguments.php │   │   │   │   │   ├── Configuration.php │   │   │   │   │   ├── Coverage.php │   │   │   │   │   ├── Environment.php │   │   │   │   │   ├── Help.php │   │   │   │   │   ├── Init.php │   │   │   │   │   ├── Memory.php │   │   │   │   │   ├── Only.php │   │   │   │   │   ├── Parallel │   │   │   │   │   │   ├── Contracts │   │   │   │   │   │   │   └── HandlersWorkerArguments.php │   │   │   │   │   │   ├── Handlers │   │   │   │   │   │   │   ├── Laravel.php │   │   │   │   │   │   │   ├── Parallel.php │   │   │   │   │   │   │   └── Pest.php │   │   │   │   │   │   ├── Paratest │   │   │   │   │   │   │   ├── CleanConsoleOutput.php │   │   │   │   │   │   │   ├── ResultPrinter.php │   │   │   │   │   │   │   └── WrapperRunner.php │   │   │   │   │   │   └── Support │   │   │   │   │   │   └── CompactPrinter.php │   │   │   │   │   ├── Parallel.php │   │   │   │   │   ├── Printer.php │   │   │   │   │   ├── ProcessIsolation.php │   │   │   │   │   ├── Profile.php │   │   │   │   │   ├── Retry.php │   │   │   │   │   ├── Snapshot.php │   │   │   │   │   ├── Verbose.php │   │   │   │   │   └── Version.php │   │   │   │   ├── Preset.php │   │   │   │   ├── Repositories │   │   │   │   │   ├── AfterAllRepository.php │   │   │   │   │   ├── AfterEachRepository.php │   │   │   │   │   ├── BeforeAllRepository.php │   │   │   │   │   ├── BeforeEachRepository.php │   │   │   │   │   ├── DatasetsRepository.php │   │   │   │   │   ├── SnapshotRepository.php │   │   │   │   │   └── TestRepository.php │   │   │   │   ├── Result.php │   │   │   │   ├── Subscribers │   │   │   │   │   ├── EnsureConfigurationIsAvailable.php │   │   │   │   │   ├── EnsureIgnorableTestCasesAreIgnored.php │   │   │   │   │   ├── EnsureKernelDumpIsFlushed.php │   │   │   │   │   └── EnsureTeamCityEnabled.php │   │   │   │   ├── Support │   │   │   │   │   ├── Arr.php │   │   │   │   │   ├── Backtrace.php │   │   │   │   │   ├── ChainableClosure.php │   │   │   │   │   ├── Closure.php │   │   │   │   │   ├── Container.php │   │   │   │   │   ├── Coverage.php │   │   │   │   │   ├── DatasetInfo.php │   │   │   │   │   ├── ExceptionTrace.php │   │   │   │   │   ├── ExpectationPipeline.php │   │   │   │   │   ├── Exporter.php │   │   │   │   │   ├── HigherOrderCallables.php │   │   │   │   │   ├── HigherOrderMessage.php │   │   │   │   │   ├── HigherOrderMessageCollection.php │   │   │   │   │   ├── HigherOrderTapProxy.php │   │   │   │   │   ├── NullClosure.php │   │   │   │   │   ├── Reflection.php │   │   │   │   │   ├── StateGenerator.php │   │   │   │   │   ├── Str.php │   │   │   │   │   └── View.php │   │   │   │   ├── TestCaseFilters │   │   │   │   │   └── GitDirtyTestCaseFilter.php │   │   │   │   ├── TestCaseMethodFilters │   │   │   │   │   ├── AssigneeTestCaseFilter.php │   │   │   │   │   ├── IssueTestCaseFilter.php │   │   │   │   │   ├── NotesTestCaseFilter.php │   │   │   │   │   ├── PrTestCaseFilter.php │   │   │   │   │   └── TodoTestCaseFilter.php │   │   │   │   ├── TestCases │   │   │   │   │   └── IgnorableTestCase.php │   │   │   │   └── TestSuite.php │   │   │   └── stubs │   │   │   ├── Browser.php │   │   │   ├── Dataset.php │   │   │   ├── Feature.php │   │   │   ├── Unit.php │   │   │   ├── init │   │   │   │   ├── Feature │   │   │   │   │   └── ExampleTest.php.stub │   │   │   │   ├── Pest.php.stub │   │   │   │   ├── TestCase.php.stub │   │   │   │   ├── Unit │   │   │   │   │   └── ExampleTest.php.stub │   │   │   │   └── phpunit.xml.stub │   │   │   └── init-laravel │   │   │   ├── Feature │   │   │   │   └── ExampleTest.php.stub │   │   │   ├── Pest.php.stub │   │   │   ├── TestCase.php.stub │   │   │   ├── Unit │   │   │   │   └── ExampleTest.php.stub │   │   │   └── phpunit.xml.stub │   │   ├── pest-plugin │   │   │   ├── LICENSE.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Commands │   │   │   │   └── DumpCommand.php │   │   │   ├── Loader.php │   │   │   ├── Manager.php │   │   │   └── PestCommandProvider.php │   │   ├── pest-plugin-arch │   │   │   ├── LICENSE.md │   │   │   ├── composer.json │   │   │   ├── pint.json │   │   │   └── src │   │   │   ├── Autoload.php │   │   │   ├── Blueprint.php │   │   │   ├── Collections │   │   │   │   └── Dependencies.php │   │   │   ├── Concerns │   │   │   │   └── Architectable.php │   │   │   ├── Contracts │   │   │   │   └── ArchExpectation.php │   │   │   ├── Exceptions │   │   │   │   └── ArchExpectationFailedException.php │   │   │   ├── Expectations │   │   │   │   ├── Targeted.php │   │   │   │   ├── ToBeUsedIn.php │   │   │   │   ├── ToBeUsedInNothing.php │   │   │   │   ├── ToOnlyBeUsedIn.php │   │   │   │   ├── ToOnlyUse.php │   │   │   │   ├── ToUse.php │   │   │   │   └── ToUseNothing.php │   │   │   ├── Factories │   │   │   │   ├── LayerFactory.php │   │   │   │   └── ObjectDescriptionFactory.php │   │   │   ├── GroupArchExpectation.php │   │   │   ├── Layer.php │   │   │   ├── Objects │   │   │   │   ├── FunctionDescription.php │   │   │   │   ├── ObjectDescription.php │   │   │   │   ├── ObjectDescriptionBase.php │   │   │   │   └── VendorObjectDescription.php │   │   │   ├── Options │   │   │   │   ├── LayerOptions.php │   │   │   │   └── TestCaseOptions.php │   │   │   ├── PendingArchExpectation.php │   │   │   ├── Plugin.php │   │   │   ├── Repositories │   │   │   │   └── ObjectsRepository.php │   │   │   ├── SingleArchExpectation.php │   │   │   ├── Support │   │   │   │   ├── AssertLocker.php │   │   │   │   ├── Composer.php │   │   │   │   ├── FileLineFinder.php │   │   │   │   ├── PhpCoreExpressions.php │   │   │   │   ├── ReflectionClassForFunction.php │   │   │   │   └── UserDefinedFunctions.php │   │   │   └── ValueObjects │   │   │   ├── Dependency.php │   │   │   ├── Targets.php │   │   │   └── Violation.php │   │   ├── pest-plugin-laravel │   │   │   ├── LICENSE.md │   │   │   ├── composer.json │   │   │   ├── resources │   │   │   │   ├── database │   │   │   │   │   └── migrations │   │   │   │   │   └── 2014_10_12_000000_create_users_table.php │   │   │   │   ├── routes.php │   │   │   │   └── views │   │   │   │   └── welcome.blade.php │   │   │   ├── src │   │   │   │   ├── Authentication.php │   │   │   │   ├── Autoload.php │   │   │   │   ├── Commands │   │   │   │   │   ├── PestDatasetCommand.php │   │   │   │   │   ├── PestDuskCommand.php │   │   │   │   │   └── PestTestCommand.php │   │   │   │   ├── Console.php │   │   │   │   ├── Container.php │   │   │   │   ├── Database.php │   │   │   │   ├── ExceptionHandling.php │   │   │   │   ├── Expectations.php │   │   │   │   ├── Http.php │   │   │   │   ├── PestServiceProvider.php │   │   │   │   ├── Plugin.php │   │   │   │   ├── Session.php │   │   │   │   └── Time.php │   │   │   └── stubs │   │   │   └── Laravel │   │   │   └── Pest.php │   │   └── pest-plugin-mutate │   │   ├── LICENSE.md │   │   ├── composer.json │   │   ├── pint.json │   │   ├── rector.php │   │   └── src │   │   ├── Boostrappers │   │   │   ├── BootPhpUnitSubscribers.php │   │   │   └── BootSubscribers.php │   │   ├── Cache │   │   │   ├── FileStore.php │   │   │   └── NullStore.php │   │   ├── Contracts │   │   │   ├── Configuration.php │   │   │   ├── Event.php │   │   │   ├── MutationTestRunner.php │   │   │   ├── Mutator.php │   │   │   ├── MutatorSet.php │   │   │   ├── Printer.php │   │   │   └── Subscriber.php │   │   ├── Event │   │   │   ├── Emitter.php │   │   │   ├── Events │   │   │   │   ├── Test │   │   │   │   │   ├── HookMethod │   │   │   │   │   │   ├── BeforeFirstTestExecuted.php │   │   │   │   │   │   └── BeforeFirstTestExecutedSubscriber.php │   │   │   │   │   └── Outcome │   │   │   │   │   ├── Tested.php │   │   │   │   │   ├── TestedSubscriber.php │   │   │   │   │   ├── Timeout.php │   │   │   │   │   ├── TimeoutSubscriber.php │   │   │   │   │   ├── Uncovered.php │   │   │   │   │   ├── UncoveredSubscriber.php │   │   │   │   │   ├── Untested.php │   │   │   │   │   └── UntestedSubscriber.php │   │   │   │   └── TestSuite │   │   │   │   ├── FinishMutationGeneration.php │   │   │   │   ├── FinishMutationGenerationSubscriber.php │   │   │   │   ├── FinishMutationSuite.php │   │   │   │   ├── FinishMutationSuiteSubscriber.php │   │   │   │   ├── StartMutationGeneration.php │   │   │   │   ├── StartMutationGenerationSubscriber.php │   │   │   │   ├── StartMutationSuite.php │   │   │   │   └── StartMutationSuiteSubscriber.php │   │   │   └── Facade.php │   │   ├── Exceptions │   │   │   ├── InvalidMutatorException.php │   │   │   └── StreamWrapperException.php │   │   ├── Factories │   │   │   └── NodeTraverserFactory.php │   │   ├── Mutation.php │   │   ├── MutationSuite.php │   │   ├── MutationTest.php │   │   ├── MutationTestCollection.php │   │   ├── Mutators │   │   │   ├── Abstract │   │   │   │   ├── AbstractFunctionCallUnwrapMutator.php │   │   │   │   ├── AbstractFunctionReplaceMutator.php │   │   │   │   └── AbstractMutator.php │   │   │   ├── Arithmetic │   │   │   │   ├── BitwiseAndToBitwiseOr.php │   │   │   │   ├── BitwiseOrToBitwiseAnd.php │   │   │   │   ├── BitwiseXorToBitwiseAnd.php │   │   │   │   ├── DivisionToMultiplication.php │   │   │   │   ├── MinusToPlus.php │   │   │   │   ├── ModulusToMultiplication.php │   │   │   │   ├── MultiplicationToDivision.php │   │   │   │   ├── PlusToMinus.php │   │   │   │   ├── PostDecrementToPostIncrement.php │   │   │   │   ├── PostIncrementToPostDecrement.php │   │   │   │   ├── PowerToMultiplication.php │   │   │   │   ├── PreDecrementToPreIncrement.php │   │   │   │   ├── PreIncrementToPreDecrement.php │   │   │   │   ├── ShiftLeftToShiftRight.php │   │   │   │   └── ShiftRightToShiftLeft.php │   │   │   ├── Array │   │   │   │   ├── ArrayKeyFirstToArrayKeyLast.php │   │   │   │   ├── ArrayKeyLastToArrayKeyFirst.php │   │   │   │   ├── ArrayPopToArrayShift.php │   │   │   │   ├── ArrayShiftToArrayPop.php │   │   │   │   ├── UnwrapArrayChangeKeyCase.php │   │   │   │   ├── UnwrapArrayChunk.php │   │   │   │   ├── UnwrapArrayColumn.php │   │   │   │   ├── UnwrapArrayCombine.php │   │   │   │   ├── UnwrapArrayCountValues.php │   │   │   │   ├── UnwrapArrayDiff.php │   │   │   │   ├── UnwrapArrayDiffAssoc.php │   │   │   │   ├── UnwrapArrayDiffKey.php │   │   │   │   ├── UnwrapArrayDiffUassoc.php │   │   │   │   ├── UnwrapArrayDiffUkey.php │   │   │   │   ├── UnwrapArrayFilter.php │   │   │   │   ├── UnwrapArrayFlip.php │   │   │   │   ├── UnwrapArrayIntersect.php │   │   │   │   ├── UnwrapArrayIntersectAssoc.php │   │   │   │   ├── UnwrapArrayIntersectKey.php │   │   │   │   ├── UnwrapArrayIntersectUassoc.php │   │   │   │   ├── UnwrapArrayIntersectUkey.php │   │   │   │   ├── UnwrapArrayKeys.php │   │   │   │   ├── UnwrapArrayMap.php │   │   │   │   ├── UnwrapArrayMerge.php │   │   │   │   ├── UnwrapArrayMergeRecursive.php │   │   │   │   ├── UnwrapArrayPad.php │   │   │   │   ├── UnwrapArrayReduce.php │   │   │   │   ├── UnwrapArrayReplace.php │   │   │   │   ├── UnwrapArrayReplaceRecursive.php │   │   │   │   ├── UnwrapArrayReverse.php │   │   │   │   ├── UnwrapArraySlice.php │   │   │   │   ├── UnwrapArraySplice.php │   │   │   │   ├── UnwrapArrayUdiff.php │   │   │   │   ├── UnwrapArrayUdiffAssoc.php │   │   │   │   ├── UnwrapArrayUdiffUassoc.php │   │   │   │   ├── UnwrapArrayUintersect.php │   │   │   │   ├── UnwrapArrayUintersectAssoc.php │   │   │   │   ├── UnwrapArrayUintersectUassoc.php │   │   │   │   ├── UnwrapArrayUnique.php │   │   │   │   └── UnwrapArrayValues.php │   │   │   ├── Assignment │   │   │   │   ├── BitwiseAndToBitwiseOr.php │   │   │   │   ├── BitwiseOrToBitwiseAnd.php │   │   │   │   ├── BitwiseXorToBitwiseAnd.php │   │   │   │   ├── CoalesceEqualToEqual.php │   │   │   │   ├── ConcatEqualToEqual.php │   │   │   │   ├── DivideEqualToMultiplyEqual.php │   │   │   │   ├── MinusEqualToPlusEqual.php │   │   │   │   ├── ModulusEqualToMultiplyEqual.php │   │   │   │   ├── MultiplyEqualToDivideEqual.php │   │   │   │   ├── PlusEqualToMinusEqual.php │   │   │   │   ├── PowerEqualToMultiplyEqual.php │   │   │   │   ├── ShiftLeftToShiftRight.php │   │   │   │   └── ShiftRightToShiftLeft.php │   │   │   ├── Casting │   │   │   │   ├── RemoveArrayCast.php │   │   │   │   ├── RemoveBooleanCast.php │   │   │   │   ├── RemoveDoubleCast.php │   │   │   │   ├── RemoveIntegerCast.php │   │   │   │   ├── RemoveObjectCast.php │   │   │   │   └── RemoveStringCast.php │   │   │   ├── Concerns │   │   │   │   └── HasName.php │   │   │   ├── ControlStructures │   │   │   │   ├── BreakToContinue.php │   │   │   │   ├── ContinueToBreak.php │   │   │   │   ├── DoWhileAlwaysFalse.php │   │   │   │   ├── ElseIfNegated.php │   │   │   │   ├── ForAlwaysFalse.php │   │   │   │   ├── ForeachEmptyIterable.php │   │   │   │   ├── IfNegated.php │   │   │   │   ├── TernaryNegated.php │   │   │   │   └── WhileAlwaysFalse.php │   │   │   ├── Equality │   │   │   │   ├── EqualToIdentical.php │   │   │   │   ├── EqualToNotEqual.php │   │   │   │   ├── GreaterOrEqualToGreater.php │   │   │   │   ├── GreaterOrEqualToSmaller.php │   │   │   │   ├── GreaterToGreaterOrEqual.php │   │   │   │   ├── GreaterToSmallerOrEqual.php │   │   │   │   ├── IdenticalToEqual.php │   │   │   │   ├── IdenticalToNotIdentical.php │   │   │   │   ├── NotEqualToEqual.php │   │   │   │   ├── NotEqualToNotIdentical.php │   │   │   │   ├── NotIdenticalToIdentical.php │   │   │   │   ├── NotIdenticalToNotEqual.php │   │   │   │   ├── SmallerOrEqualToGreater.php │   │   │   │   ├── SmallerOrEqualToSmaller.php │   │   │   │   ├── SmallerToGreaterOrEqual.php │   │   │   │   ├── SmallerToSmallerOrEqual.php │   │   │   │   └── SpaceshipSwitchSides.php │   │   │   ├── Laravel │   │   │   │   ├── Remove │   │   │   │   │   └── LaravelRemoveStringableUpper.php │   │   │   │   └── Unwrap │   │   │   │   └── LaravelUnwrapStrUpper.php │   │   │   ├── Logical │   │   │   │   ├── BooleanAndToBooleanOr.php │   │   │   │   ├── BooleanOrToBooleanAnd.php │   │   │   │   ├── CoalesceRemoveLeft.php │   │   │   │   ├── FalseToTrue.php │   │   │   │   ├── InstanceOfToFalse.php │   │   │   │   ├── InstanceOfToTrue.php │   │   │   │   ├── LogicalAndToLogicalOr.php │   │   │   │   ├── LogicalOrToLogicalAnd.php │   │   │   │   ├── LogicalXorToLogicalAnd.php │   │   │   │   ├── RemoveNot.php │   │   │   │   └── TrueToFalse.php │   │   │   ├── Math │   │   │   │   ├── CeilToFloor.php │   │   │   │   ├── CeilToRound.php │   │   │   │   ├── FloorToCiel.php │   │   │   │   ├── FloorToRound.php │   │   │   │   ├── MaxToMin.php │   │   │   │   ├── MinToMax.php │   │   │   │   ├── RoundToCeil.php │   │   │   │   └── RoundToFloor.php │   │   │   ├── Number │   │   │   │   ├── DecrementFloat.php │   │   │   │   ├── DecrementInteger.php │   │   │   │   ├── IncrementFloat.php │   │   │   │   └── IncrementInteger.php │   │   │   ├── Removal │   │   │   │   ├── RemoveArrayItem.php │   │   │   │   ├── RemoveEarlyReturn.php │   │   │   │   ├── RemoveFunctionCall.php │   │   │   │   ├── RemoveMethodCall.php │   │   │   │   └── RemoveNullSafeOperator.php │   │   │   ├── Return │   │   │   │   ├── AlwaysReturnEmptyArray.php │   │   │   │   └── AlwaysReturnNull.php │   │   │   ├── Sets │   │   │   │   ├── ArithmeticSet.php │   │   │   │   ├── ArraySet.php │   │   │   │   ├── AssignmentSet.php │   │   │   │   ├── CastingSet.php │   │   │   │   ├── ControlStructuresSet.php │   │   │   │   ├── DefaultSet.php │   │   │   │   ├── EqualitySet.php │   │   │   │   ├── LaravelSet.php │   │   │   │   ├── LogicalSet.php │   │   │   │   ├── MathSet.php │   │   │   │   ├── NumberSet.php │   │   │   │   ├── RemovalSet.php │   │   │   │   ├── ReturnSet.php │   │   │   │   ├── StringSet.php │   │   │   │   └── VisibilitySet.php │   │   │   ├── String │   │   │   │   ├── ConcatRemoveLeft.php │   │   │   │   ├── ConcatRemoveRight.php │   │   │   │   ├── ConcatSwitchSides.php │   │   │   │   ├── EmptyStringToNotEmpty.php │   │   │   │   ├── NotEmptyStringToEmpty.php │   │   │   │   ├── StrEndsWithToStrStartsWith.php │   │   │   │   ├── StrStartsWithToStrEndsWith.php │   │   │   │   ├── UnwrapChop.php │   │   │   │   ├── UnwrapChunkSplit.php │   │   │   │   ├── UnwrapHtmlEntityDecode.php │   │   │   │   ├── UnwrapHtmlentities.php │   │   │   │   ├── UnwrapHtmlspecialchars.php │   │   │   │   ├── UnwrapHtmlspecialcharsDecode.php │   │   │   │   ├── UnwrapLcfirst.php │   │   │   │   ├── UnwrapLtrim.php │   │   │   │   ├── UnwrapMd5.php │   │   │   │   ├── UnwrapNl2br.php │   │   │   │   ├── UnwrapRtrim.php │   │   │   │   ├── UnwrapStrIreplace.php │   │   │   │   ├── UnwrapStrPad.php │   │   │   │   ├── UnwrapStrRepeat.php │   │   │   │   ├── UnwrapStrReplace.php │   │   │   │   ├── UnwrapStrShuffle.php │   │   │   │   ├── UnwrapStripTags.php │   │   │   │   ├── UnwrapStrrev.php │   │   │   │   ├── UnwrapStrtolower.php │   │   │   │   ├── UnwrapStrtoupper.php │   │   │   │   ├── UnwrapSubstr.php │   │   │   │   ├── UnwrapTrim.php │   │   │   │   ├── UnwrapUcfirst.php │   │   │   │   ├── UnwrapUcwords.php │   │   │   │   └── UnwrapWordwrap.php │   │   │   └── Visibility │   │   │   ├── ConstantProtectedToPrivate.php │   │   │   ├── ConstantPublicToProtected.php │   │   │   ├── FunctionProtectedToPrivate.php │   │   │   ├── FunctionPublicToProtected.php │   │   │   ├── PropertyProtectedToPrivate.php │   │   │   └── PropertyPublicToProtected.php │   │   ├── Mutators.php │   │   ├── Options │   │   │   ├── BailOption.php │   │   │   ├── ClassOption.php │   │   │   ├── ClearCacheOption.php │   │   │   ├── CoveredOnlyOption.php │   │   │   ├── EverythingOption.php │   │   │   ├── ExceptOption.php │   │   │   ├── IgnoreMinScoreOnZeroMutationsOption.php │   │   │   ├── IgnoreOption.php │   │   │   ├── MinScoreOption.php │   │   │   ├── MutateOption.php │   │   │   ├── MutationIdOption.php │   │   │   ├── MutatorsOption.php │   │   │   ├── NoCacheOption.php │   │   │   ├── ParallelOption.php │   │   │   ├── PathOption.php │   │   │   ├── ProcessesOption.php │   │   │   ├── ProfileOption.php │   │   │   ├── RetryOption.php │   │   │   ├── StopOnUncoveredOption.php │   │   │   └── StopOnUntestedOption.php │   │   ├── Plugins │   │   │   └── Mutate.php │   │   ├── Repositories │   │   │   ├── ConfigurationRepository.php │   │   │   ├── MutationRepository.php │   │   │   └── TelemetryRepository.php │   │   ├── Subscribers │   │   │   ├── DisplayInitialTestRunMessage.php │   │   │   ├── EnsureInitialTestRunWasSuccessful.php │   │   │   ├── PrepareForInitialTestRun.php │   │   │   ├── PrinterSubscriber.php │   │   │   ├── StopOnUncoveredMutation.php │   │   │   ├── StopOnUntestedMutation.php │   │   │   ├── TrackMutationSuiteFinish.php │   │   │   └── TrackMutationSuiteStart.php │   │   ├── Support │   │   │   ├── Configuration │   │   │   │   ├── AbstractConfiguration.php │   │   │   │   ├── CliConfiguration.php │   │   │   │   ├── Configuration.php │   │   │   │   ├── GlobalConfiguration.php │   │   │   │   └── TestConfiguration.php │   │   │   ├── DocGenerator.php │   │   │   ├── FileFinder.php │   │   │   ├── MutationCache.php │   │   │   ├── MutationGenerator.php │   │   │   ├── MutationTestResult.php │   │   │   ├── MutatorMap.php │   │   │   ├── NodeVisitor.php │   │   │   ├── PhpParserFactory.php │   │   │   ├── Printers │   │   │   │   └── DefaultPrinter.php │   │   │   ├── ResultCache.php │   │   │   └── StreamWrapper.php │   │   └── Tester │   │   ├── MutationTestRunner.php │   │   └── MutationTestRunnerFake.php │   ├── phar-io │   │   ├── manifest │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   ├── composer.lock │   │   │   ├── manifest.xsd │   │   │   ├── src │   │   │   │   ├── ManifestDocumentMapper.php │   │   │   │   ├── ManifestLoader.php │   │   │   │   ├── ManifestSerializer.php │   │   │   │   ├── exceptions │   │   │   │   │   ├── ElementCollectionException.php │   │   │   │   │   ├── Exception.php │   │   │   │   │   ├── InvalidApplicationNameException.php │   │   │   │   │   ├── InvalidEmailException.php │   │   │   │   │   ├── InvalidUrlException.php │   │   │   │   │   ├── ManifestDocumentException.php │   │   │   │   │   ├── ManifestDocumentLoadingException.php │   │   │   │   │   ├── ManifestDocumentMapperException.php │   │   │   │   │   ├── ManifestElementException.php │   │   │   │   │   ├── ManifestLoaderException.php │   │   │   │   │   └── NoEmailAddressException.php │   │   │   │   ├── values │   │   │   │   │   ├── Application.php │   │   │   │   │   ├── ApplicationName.php │   │   │   │   │   ├── Author.php │   │   │   │   │   ├── AuthorCollection.php │   │   │   │   │   ├── AuthorCollectionIterator.php │   │   │   │   │   ├── BundledComponent.php │   │   │   │   │   ├── BundledComponentCollection.php │   │   │   │   │   ├── BundledComponentCollectionIterator.php │   │   │   │   │   ├── CopyrightInformation.php │   │   │   │   │   ├── Email.php │   │   │   │   │   ├── Extension.php │   │   │   │   │   ├── Library.php │   │   │   │   │   ├── License.php │   │   │   │   │   ├── Manifest.php │   │   │   │   │   ├── PhpExtensionRequirement.php │   │   │   │   │   ├── PhpVersionRequirement.php │   │   │   │   │   ├── Requirement.php │   │   │   │   │   ├── RequirementCollection.php │   │   │   │   │   ├── RequirementCollectionIterator.php │   │   │   │   │   ├── Type.php │   │   │   │   │   └── Url.php │   │   │   │   └── xml │   │   │   │   ├── AuthorElement.php │   │   │   │   ├── AuthorElementCollection.php │   │   │   │   ├── BundlesElement.php │   │   │   │   ├── ComponentElement.php │   │   │   │   ├── ComponentElementCollection.php │   │   │   │   ├── ContainsElement.php │   │   │   │   ├── CopyrightElement.php │   │   │   │   ├── ElementCollection.php │   │   │   │   ├── ExtElement.php │   │   │   │   ├── ExtElementCollection.php │   │   │   │   ├── ExtensionElement.php │   │   │   │   ├── LicenseElement.php │   │   │   │   ├── ManifestDocument.php │   │   │   │   ├── ManifestElement.php │   │   │   │   ├── PhpElement.php │   │   │   │   └── RequiresElement.php │   │   │   └── tools │   │   │   └── php-cs-fixer.d │   │   │   ├── PhpdocSingleLineVarFixer.php │   │   │   └── header.txt │   │   └── version │   │   ├── CHANGELOG.md │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   ├── BuildMetaData.php │   │   ├── PreReleaseSuffix.php │   │   ├── Version.php │   │   ├── VersionConstraintParser.php │   │   ├── VersionConstraintValue.php │   │   ├── VersionNumber.php │   │   ├── constraints │   │   │   ├── AbstractVersionConstraint.php │   │   │   ├── AndVersionConstraintGroup.php │   │   │   ├── AnyVersionConstraint.php │   │   │   ├── ExactVersionConstraint.php │   │   │   ├── GreaterThanOrEqualToVersionConstraint.php │   │   │   ├── OrVersionConstraintGroup.php │   │   │   ├── SpecificMajorAndMinorVersionConstraint.php │   │   │   ├── SpecificMajorVersionConstraint.php │   │   │   └── VersionConstraint.php │   │   └── exceptions │   │   ├── Exception.php │   │   ├── InvalidPreReleaseSuffixException.php │   │   ├── InvalidVersionException.php │   │   ├── NoBuildMetaDataException.php │   │   ├── NoPreReleaseSuffixException.php │   │   └── UnsupportedVersionConstraintException.php │   ├── phpdocumentor │   │   ├── reflection-common │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Element.php │   │   │   ├── File.php │   │   │   ├── Fqsen.php │   │   │   ├── Location.php │   │   │   ├── Project.php │   │   │   └── ProjectFactory.php │   │   ├── reflection-docblock │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── DocBlock │   │   │   │   ├── Description.php │   │   │   │   ├── DescriptionFactory.php │   │   │   │   ├── ExampleFinder.php │   │   │   │   ├── Serializer.php │   │   │   │   ├── StandardTagFactory.php │   │   │   │   ├── Tag.php │   │   │   │   ├── TagFactory.php │   │   │   │   └── Tags │   │   │   │   ├── Author.php │   │   │   │   ├── BaseTag.php │   │   │   │   ├── Covers.php │   │   │   │   ├── Deprecated.php │   │   │   │   ├── Example.php │   │   │   │   ├── Extends_.php │   │   │   │   ├── Factory │   │   │   │   │   ├── AbstractPHPStanFactory.php │   │   │   │   │   ├── ExtendsFactory.php │   │   │   │   │   ├── Factory.php │   │   │   │   │   ├── ImplementsFactory.php │   │   │   │   │   ├── MethodFactory.php │   │   │   │   │   ├── MethodParameterFactory.php │   │   │   │   │   ├── PHPStanFactory.php │   │   │   │   │   ├── ParamFactory.php │   │   │   │   │   ├── PropertyFactory.php │   │   │   │   │   ├── PropertyReadFactory.php │   │   │   │   │   ├── PropertyWriteFactory.php │   │   │   │   │   ├── ReturnFactory.php │   │   │   │   │   ├── StaticMethod.php │   │   │   │   │   ├── TemplateExtendsFactory.php │   │   │   │   │   ├── TemplateFactory.php │   │   │   │   │   ├── TemplateImplementsFactory.php │   │   │   │   │   └── VarFactory.php │   │   │   │   ├── Formatter │   │   │   │   │   ├── AlignFormatter.php │   │   │   │   │   └── PassthroughFormatter.php │   │   │   │   ├── Formatter.php │   │   │   │   ├── Generic.php │   │   │   │   ├── Implements_.php │   │   │   │   ├── InvalidTag.php │   │   │   │   ├── Link.php │   │   │   │   ├── Method.php │   │   │   │   ├── MethodParameter.php │   │   │   │   ├── Mixin.php │   │   │   │   ├── Param.php │   │   │   │   ├── Property.php │   │   │   │   ├── PropertyRead.php │   │   │   │   ├── PropertyWrite.php │   │   │   │   ├── Reference │   │   │   │   │   ├── Fqsen.php │   │   │   │   │   ├── Reference.php │   │   │   │   │   └── Url.php │   │   │   │   ├── Return_.php │   │   │   │   ├── See.php │   │   │   │   ├── Since.php │   │   │   │   ├── Source.php │   │   │   │   ├── TagWithType.php │   │   │   │   ├── Template.php │   │   │   │   ├── TemplateCovariant.php │   │   │   │   ├── TemplateExtends.php │   │   │   │   ├── TemplateImplements.php │   │   │   │   ├── Throws.php │   │   │   │   ├── Uses.php │   │   │   │   ├── Var_.php │   │   │   │   └── Version.php │   │   │   ├── DocBlock.php │   │   │   ├── DocBlockFactory.php │   │   │   ├── DocBlockFactoryInterface.php │   │   │   ├── Exception │   │   │   │   └── PcreException.php │   │   │   └── Utils.php │   │   └── type-resolver │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   ├── docs │   │   │   ├── getting-started.rst │   │   │   └── index.rst │   │   ├── phpdoc.dist.xml │   │   └── src │   │   ├── FqsenResolver.php │   │   ├── PseudoType.php │   │   ├── PseudoTypes │   │   │   ├── ArrayShape.php │   │   │   ├── ArrayShapeItem.php │   │   │   ├── CallableString.php │   │   │   ├── ConstExpression.php │   │   │   ├── False_.php │   │   │   ├── FloatValue.php │   │   │   ├── HtmlEscapedString.php │   │   │   ├── IntegerRange.php │   │   │   ├── IntegerValue.php │   │   │   ├── ListShape.php │   │   │   ├── ListShapeItem.php │   │   │   ├── List_.php │   │   │   ├── LiteralString.php │   │   │   ├── LowercaseString.php │   │   │   ├── NegativeInteger.php │   │   │   ├── NonEmptyArray.php │   │   │   ├── NonEmptyList.php │   │   │   ├── NonEmptyLowercaseString.php │   │   │   ├── NonEmptyString.php │   │   │   ├── NumericString.php │   │   │   ├── Numeric_.php │   │   │   ├── ObjectShape.php │   │   │   ├── ObjectShapeItem.php │   │   │   ├── PositiveInteger.php │   │   │   ├── ShapeItem.php │   │   │   ├── StringValue.php │   │   │   ├── TraitString.php │   │   │   └── True_.php │   │   ├── Type.php │   │   ├── TypeResolver.php │   │   └── Types │   │   ├── AbstractList.php │   │   ├── AggregatedType.php │   │   ├── ArrayKey.php │   │   ├── Array_.php │   │   ├── Boolean.php │   │   ├── CallableParameter.php │   │   ├── Callable_.php │   │   ├── ClassString.php │   │   ├── Collection.php │   │   ├── Compound.php │   │   ├── Context.php │   │   ├── ContextFactory.php │   │   ├── Expression.php │   │   ├── Float_.php │   │   ├── Integer.php │   │   ├── InterfaceString.php │   │   ├── Intersection.php │   │   ├── Iterable_.php │   │   ├── Mixed_.php │   │   ├── Never_.php │   │   ├── Null_.php │   │   ├── Nullable.php │   │   ├── Object_.php │   │   ├── Parent_.php │   │   ├── Resource_.php │   │   ├── Scalar.php │   │   ├── Self_.php │   │   ├── Static_.php │   │   ├── String_.php │   │   ├── This.php │   │   └── Void_.php │   ├── phpoption │   │   └── phpoption │   │   ├── LICENSE │   │   ├── composer.json │   │   └── src │   │   └── PhpOption │   │   ├── LazyOption.php │   │   ├── None.php │   │   ├── Option.php │   │   └── Some.php │   ├── phpstan │   │   └── phpdoc-parser │   │   ├── LICENSE │   │   ├── README.md │   │   ├── UPGRADING.md │   │   ├── composer.json │   │   └── src │   │   ├── Ast │   │   │   ├── AbstractNodeVisitor.php │   │   │   ├── Attribute.php │   │   │   ├── Comment.php │   │   │   ├── ConstExpr │   │   │   │   ├── ConstExprArrayItemNode.php │   │   │   │   ├── ConstExprArrayNode.php │   │   │   │   ├── ConstExprFalseNode.php │   │   │   │   ├── ConstExprFloatNode.php │   │   │   │   ├── ConstExprIntegerNode.php │   │   │   │   ├── ConstExprNode.php │   │   │   │   ├── ConstExprNullNode.php │   │   │   │   ├── ConstExprStringNode.php │   │   │   │   ├── ConstExprTrueNode.php │   │   │   │   ├── ConstFetchNode.php │   │   │   │   └── DoctrineConstExprStringNode.php │   │   │   ├── Node.php │   │   │   ├── NodeAttributes.php │   │   │   ├── NodeTraverser.php │   │   │   ├── NodeVisitor │   │   │   │   └── CloningVisitor.php │   │   │   ├── NodeVisitor.php │   │   │   ├── PhpDoc │   │   │   │   ├── AssertTagMethodValueNode.php │   │   │   │   ├── AssertTagPropertyValueNode.php │   │   │   │   ├── AssertTagValueNode.php │   │   │   │   ├── DeprecatedTagValueNode.php │   │   │   │   ├── Doctrine │   │   │   │   │   ├── DoctrineAnnotation.php │   │   │   │   │   ├── DoctrineArgument.php │   │   │   │   │   ├── DoctrineArray.php │   │   │   │   │   ├── DoctrineArrayItem.php │   │   │   │   │   └── DoctrineTagValueNode.php │   │   │   │   ├── ExtendsTagValueNode.php │   │   │   │   ├── GenericTagValueNode.php │   │   │   │   ├── ImplementsTagValueNode.php │   │   │   │   ├── InvalidTagValueNode.php │   │   │   │   ├── MethodTagValueNode.php │   │   │   │   ├── MethodTagValueParameterNode.php │   │   │   │   ├── MixinTagValueNode.php │   │   │   │   ├── ParamClosureThisTagValueNode.php │   │   │   │   ├── ParamImmediatelyInvokedCallableTagValueNode.php │   │   │   │   ├── ParamLaterInvokedCallableTagValueNode.php │   │   │   │   ├── ParamOutTagValueNode.php │   │   │   │   ├── ParamTagValueNode.php │   │   │   │   ├── PhpDocChildNode.php │   │   │   │   ├── PhpDocNode.php │   │   │   │   ├── PhpDocTagNode.php │   │   │   │   ├── PhpDocTagValueNode.php │   │   │   │   ├── PhpDocTextNode.php │   │   │   │   ├── PropertyTagValueNode.php │   │   │   │   ├── PureUnlessCallableIsImpureTagValueNode.php │   │   │   │   ├── RequireExtendsTagValueNode.php │   │   │   │   ├── RequireImplementsTagValueNode.php │   │   │   │   ├── ReturnTagValueNode.php │   │   │   │   ├── SelfOutTagValueNode.php │   │   │   │   ├── TemplateTagValueNode.php │   │   │   │   ├── ThrowsTagValueNode.php │   │   │   │   ├── TypeAliasImportTagValueNode.php │   │   │   │   ├── TypeAliasTagValueNode.php │   │   │   │   ├── TypelessParamTagValueNode.php │   │   │   │   ├── UsesTagValueNode.php │   │   │   │   └── VarTagValueNode.php │   │   │   └── Type │   │   │   ├── ArrayShapeItemNode.php │   │   │   ├── ArrayShapeNode.php │   │   │   ├── ArrayShapeUnsealedTypeNode.php │   │   │   ├── ArrayTypeNode.php │   │   │   ├── CallableTypeNode.php │   │   │   ├── CallableTypeParameterNode.php │   │   │   ├── ConditionalTypeForParameterNode.php │   │   │   ├── ConditionalTypeNode.php │   │   │   ├── ConstTypeNode.php │   │   │   ├── GenericTypeNode.php │   │   │   ├── IdentifierTypeNode.php │   │   │   ├── IntersectionTypeNode.php │   │   │   ├── InvalidTypeNode.php │   │   │   ├── NullableTypeNode.php │   │   │   ├── ObjectShapeItemNode.php │   │   │   ├── ObjectShapeNode.php │   │   │   ├── OffsetAccessTypeNode.php │   │   │   ├── ThisTypeNode.php │   │   │   ├── TypeNode.php │   │   │   └── UnionTypeNode.php │   │   ├── Lexer │   │   │   └── Lexer.php │   │   ├── Parser │   │   │   ├── ConstExprParser.php │   │   │   ├── ParserException.php │   │   │   ├── PhpDocParser.php │   │   │   ├── StringUnescaper.php │   │   │   ├── TokenIterator.php │   │   │   └── TypeParser.php │   │   ├── ParserConfig.php │   │   └── Printer │   │   ├── DiffElem.php │   │   ├── Differ.php │   │   └── Printer.php │   ├── phpunit │   │   ├── php-code-coverage │   │   │   ├── ChangeLog-11.0.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── CodeCoverage.php │   │   │   ├── Data │   │   │   │   ├── ProcessedCodeCoverageData.php │   │   │   │   └── RawCodeCoverageData.php │   │   │   ├── Driver │   │   │   │   ├── Driver.php │   │   │   │   ├── PcovDriver.php │   │   │   │   ├── Selector.php │   │   │   │   └── XdebugDriver.php │   │   │   ├── Exception │   │   │   │   ├── BranchAndPathCoverageNotSupportedException.php │   │   │   │   ├── DeadCodeDetectionNotSupportedException.php │   │   │   │   ├── DirectoryCouldNotBeCreatedException.php │   │   │   │   ├── Exception.php │   │   │   │   ├── FileCouldNotBeWrittenException.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── NoCodeCoverageDriverAvailableException.php │   │   │   │   ├── NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php │   │   │   │   ├── ParserException.php │   │   │   │   ├── PathExistsButIsNotDirectoryException.php │   │   │   │   ├── PcovNotAvailableException.php │   │   │   │   ├── ReflectionException.php │   │   │   │   ├── ReportAlreadyFinalizedException.php │   │   │   │   ├── StaticAnalysisCacheNotConfiguredException.php │   │   │   │   ├── TestIdMissingException.php │   │   │   │   ├── UnintentionallyCoveredCodeException.php │   │   │   │   ├── WriteOperationFailedException.php │   │   │   │   ├── XdebugNotAvailableException.php │   │   │   │   ├── XdebugNotEnabledException.php │   │   │   │   └── XmlException.php │   │   │   ├── Filter.php │   │   │   ├── Node │   │   │   │   ├── AbstractNode.php │   │   │   │   ├── Builder.php │   │   │   │   ├── CrapIndex.php │   │   │   │   ├── Directory.php │   │   │   │   ├── File.php │   │   │   │   └── Iterator.php │   │   │   ├── Report │   │   │   │   ├── Clover.php │   │   │   │   ├── Cobertura.php │   │   │   │   ├── Crap4j.php │   │   │   │   ├── Html │   │   │   │   │   ├── Colors.php │   │   │   │   │   ├── CustomCssFile.php │   │   │   │   │   ├── Facade.php │   │   │   │   │   ├── Renderer │   │   │   │   │   │   ├── Dashboard.php │   │   │   │   │   │   ├── Directory.php │   │   │   │   │   │   ├── File.php │   │   │   │   │   │   └── Template │   │   │   │   │   │   ├── branches.html.dist │   │   │   │   │   │   ├── coverage_bar.html.dist │   │   │   │   │   │   ├── coverage_bar_branch.html.dist │   │   │   │   │   │   ├── css │   │   │   │   │   │   │   ├── bootstrap.min.css │   │   │   │   │   │   │   ├── custom.css │   │   │   │   │   │   │   ├── nv.d3.min.css │   │   │   │   │   │   │   ├── octicons.css │   │   │   │   │   │   │   └── style.css │   │   │   │   │   │   ├── dashboard.html.dist │   │   │   │   │   │   ├── dashboard_branch.html.dist │   │   │   │   │   │   ├── directory.html.dist │   │   │   │   │   │   ├── directory_branch.html.dist │   │   │   │   │   │   ├── directory_item.html.dist │   │   │   │   │   │   ├── directory_item_branch.html.dist │   │   │   │   │   │   ├── file.html.dist │   │   │   │   │   │   ├── file_branch.html.dist │   │   │   │   │   │   ├── file_item.html.dist │   │   │   │   │   │   ├── file_item_branch.html.dist │   │   │   │   │   │   ├── icons │   │   │   │   │   │   │   ├── file-code.svg │   │   │   │   │   │   │   └── file-directory.svg │   │   │   │   │   │   ├── js │   │   │   │   │   │   │   ├── bootstrap.bundle.min.js │   │   │   │   │   │   │   ├── d3.min.js │   │   │   │   │   │   │   ├── file.js │   │   │   │   │   │   │   ├── jquery.min.js │   │   │   │   │   │   │   └── nv.d3.min.js │   │   │   │   │   │   ├── line.html.dist │   │   │   │   │   │   ├── lines.html.dist │   │   │   │   │   │   ├── method_item.html.dist │   │   │   │   │   │   ├── method_item_branch.html.dist │   │   │   │   │   │   └── paths.html.dist │   │   │   │   │   └── Renderer.php │   │   │   │   ├── PHP.php │   │   │   │   ├── Text.php │   │   │   │   ├── Thresholds.php │   │   │   │   └── Xml │   │   │   │   ├── BuildInformation.php │   │   │   │   ├── Coverage.php │   │   │   │   ├── Directory.php │   │   │   │   ├── Facade.php │   │   │   │   ├── File.php │   │   │   │   ├── Method.php │   │   │   │   ├── Node.php │   │   │   │   ├── Project.php │   │   │   │   ├── Report.php │   │   │   │   ├── Source.php │   │   │   │   ├── Tests.php │   │   │   │   ├── Totals.php │   │   │   │   └── Unit.php │   │   │   ├── StaticAnalysis │   │   │   │   ├── CacheWarmer.php │   │   │   │   ├── CachingFileAnalyser.php │   │   │   │   ├── CodeUnitFindingVisitor.php │   │   │   │   ├── ExecutableLinesFindingVisitor.php │   │   │   │   ├── FileAnalyser.php │   │   │   │   ├── IgnoredLinesFindingVisitor.php │   │   │   │   └── ParsingFileAnalyser.php │   │   │   ├── TestSize │   │   │   │   ├── Known.php │   │   │   │   ├── Large.php │   │   │   │   ├── Medium.php │   │   │   │   ├── Small.php │   │   │   │   ├── TestSize.php │   │   │   │   └── Unknown.php │   │   │   ├── TestStatus │   │   │   │   ├── Failure.php │   │   │   │   ├── Known.php │   │   │   │   ├── Success.php │   │   │   │   ├── TestStatus.php │   │   │   │   └── Unknown.php │   │   │   ├── Util │   │   │   │   ├── Filesystem.php │   │   │   │   └── Percentage.php │   │   │   └── Version.php │   │   ├── php-file-iterator │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── ExcludeIterator.php │   │   │   ├── Facade.php │   │   │   ├── Factory.php │   │   │   └── Iterator.php │   │   ├── php-invoker │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Invoker.php │   │   │   └── exceptions │   │   │   ├── Exception.php │   │   │   ├── ProcessControlExtensionNotLoadedException.php │   │   │   └── TimeoutException.php │   │   ├── php-text-template │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Template.php │   │   │   └── exceptions │   │   │   ├── Exception.php │   │   │   ├── InvalidArgumentException.php │   │   │   └── RuntimeException.php │   │   ├── php-timer │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Duration.php │   │   │   ├── ResourceUsageFormatter.php │   │   │   ├── Timer.php │   │   │   └── exceptions │   │   │   ├── Exception.php │   │   │   ├── NoActiveTimerException.php │   │   │   └── TimeSinceStartOfRequestNotAvailableException.php │   │   └── phpunit │   │   ├── ChangeLog-11.5.md │   │   ├── DEPRECATIONS.md │   │   ├── LICENSE │   │   ├── README.md │   │   ├── SECURITY.md │   │   ├── composer.json │   │   ├── composer.lock │   │   ├── phpunit │   │   ├── phpunit.xsd │   │   ├── schema │   │   │   ├── 10.0.xsd │   │   │   ├── 10.1.xsd │   │   │   ├── 10.2.xsd │   │   │   ├── 10.3.xsd │   │   │   ├── 10.4.xsd │   │   │   ├── 10.5.xsd │   │   │   ├── 11.0.xsd │   │   │   ├── 11.1.xsd │   │   │   ├── 11.2.xsd │   │   │   ├── 11.3.xsd │   │   │   ├── 11.4.xsd │   │   │   ├── 8.5.xsd │   │   │   ├── 9.0.xsd │   │   │   ├── 9.1.xsd │   │   │   ├── 9.2.xsd │   │   │   ├── 9.3.xsd │   │   │   ├── 9.4.xsd │   │   │   └── 9.5.xsd │   │   └── src │   │   ├── Event │   │   │   ├── Dispatcher │   │   │   │   ├── CollectingDispatcher.php │   │   │   │   ├── DeferringDispatcher.php │   │   │   │   ├── DirectDispatcher.php │   │   │   │   ├── Dispatcher.php │   │   │   │   └── SubscribableDispatcher.php │   │   │   ├── Emitter │   │   │   │   ├── DispatchingEmitter.php │   │   │   │   └── Emitter.php │   │   │   ├── Events │   │   │   │   ├── Application │   │   │   │   │   ├── Finished.php │   │   │   │   │   ├── FinishedSubscriber.php │   │   │   │   │   ├── Started.php │   │   │   │   │   └── StartedSubscriber.php │   │   │   │   ├── Event.php │   │   │   │   ├── EventCollection.php │   │   │   │   ├── EventCollectionIterator.php │   │   │   │   ├── Test │   │   │   │   │   ├── ComparatorRegistered.php │   │   │   │   │   ├── ComparatorRegisteredSubscriber.php │   │   │   │   │   ├── HookMethod │   │   │   │   │   │   ├── AfterLastTestMethodCalled.php │   │   │   │   │   │   ├── AfterLastTestMethodCalledSubscriber.php │   │   │   │   │   │   ├── AfterLastTestMethodErrored.php │   │   │   │   │   │   ├── AfterLastTestMethodErroredSubscriber.php │   │   │   │   │   │   ├── AfterLastTestMethodFinished.php │   │   │   │   │   │   ├── AfterLastTestMethodFinishedSubscriber.php │   │   │   │   │   │   ├── AfterTestMethodCalled.php │   │   │   │   │   │   ├── AfterTestMethodCalledSubscriber.php │   │   │   │   │   │   ├── AfterTestMethodErrored.php │   │   │   │   │   │   ├── AfterTestMethodErroredSubscriber.php │   │   │   │   │   │   ├── AfterTestMethodFinished.php │   │   │   │   │   │   ├── AfterTestMethodFinishedSubscriber.php │   │   │   │   │   │   ├── BeforeFirstTestMethodCalled.php │   │   │   │   │   │   ├── BeforeFirstTestMethodCalledSubscriber.php │   │   │   │   │   │   ├── BeforeFirstTestMethodErrored.php │   │   │   │   │   │   ├── BeforeFirstTestMethodErroredSubscriber.php │   │   │   │   │   │   ├── BeforeFirstTestMethodFinished.php │   │   │   │   │   │   ├── BeforeFirstTestMethodFinishedSubscriber.php │   │   │   │   │   │   ├── BeforeTestMethodCalled.php │   │   │   │   │   │   ├── BeforeTestMethodCalledSubscriber.php │   │   │   │   │   │   ├── BeforeTestMethodErrored.php │   │   │   │   │   │   ├── BeforeTestMethodErroredSubscriber.php │   │   │   │   │   │   ├── BeforeTestMethodFinished.php │   │   │   │   │   │   ├── BeforeTestMethodFinishedSubscriber.php │   │   │   │   │   │   ├── PostConditionCalled.php │   │   │   │   │   │   ├── PostConditionCalledSubscriber.php │   │   │   │   │   │   ├── PostConditionErrored.php │   │   │   │   │   │   ├── PostConditionErroredSubscriber.php │   │   │   │   │   │   ├── PostConditionFinished.php │   │   │   │   │   │   ├── PostConditionFinishedSubscriber.php │   │   │   │   │   │   ├── PreConditionCalled.php │   │   │   │   │   │   ├── PreConditionCalledSubscriber.php │   │   │   │   │   │   ├── PreConditionErrored.php │   │   │   │   │   │   ├── PreConditionErroredSubscriber.php │   │   │   │   │   │   ├── PreConditionFinished.php │   │   │   │   │   │   └── PreConditionFinishedSubscriber.php │   │   │   │   │   ├── Issue │   │   │   │   │   │   ├── ConsideredRisky.php │   │   │   │   │   │   ├── ConsideredRiskySubscriber.php │   │   │   │   │   │   ├── DeprecationTriggered.php │   │   │   │   │   │   ├── DeprecationTriggeredSubscriber.php │   │   │   │   │   │   ├── ErrorTriggered.php │   │   │   │   │   │   ├── ErrorTriggeredSubscriber.php │   │   │   │   │   │   ├── NoticeTriggered.php │   │   │   │   │   │   ├── NoticeTriggeredSubscriber.php │   │   │   │   │   │   ├── PhpDeprecationTriggered.php │   │   │   │   │   │   ├── PhpDeprecationTriggeredSubscriber.php │   │   │   │   │   │   ├── PhpNoticeTriggered.php │   │   │   │   │   │   ├── PhpNoticeTriggeredSubscriber.php │   │   │   │   │   │   ├── PhpWarningTriggered.php │   │   │   │   │   │   ├── PhpWarningTriggeredSubscriber.php │   │   │   │   │   │   ├── PhpunitDeprecationTriggered.php │   │   │   │   │   │   ├── PhpunitDeprecationTriggeredSubscriber.php │   │   │   │   │   │   ├── PhpunitErrorTriggered.php │   │   │   │   │   │   ├── PhpunitErrorTriggeredSubscriber.php │   │   │   │   │   │   ├── PhpunitWarningTriggered.php │   │   │   │   │   │   ├── PhpunitWarningTriggeredSubscriber.php │   │   │   │   │   │   ├── WarningTriggered.php │   │   │   │   │   │   └── WarningTriggeredSubscriber.php │   │   │   │   │   ├── Lifecycle │   │   │   │   │   │   ├── DataProviderMethodCalled.php │   │   │   │   │   │   ├── DataProviderMethodCalledSubscriber.php │   │   │   │   │   │   ├── DataProviderMethodFinished.php │   │   │   │   │   │   ├── DataProviderMethodFinishedSubscriber.php │   │   │   │   │   │   ├── Finished.php │   │   │   │   │   │   ├── FinishedSubscriber.php │   │   │   │   │   │   ├── PreparationFailed.php │   │   │   │   │   │   ├── PreparationFailedSubscriber.php │   │   │   │   │   │   ├── PreparationStarted.php │   │   │   │   │   │   ├── PreparationStartedSubscriber.php │   │   │   │   │   │   ├── Prepared.php │   │   │   │   │   │   └── PreparedSubscriber.php │   │   │   │   │   ├── Outcome │   │   │   │   │   │   ├── Errored.php │   │   │   │   │   │   ├── ErroredSubscriber.php │   │   │   │   │   │   ├── Failed.php │   │   │   │   │   │   ├── FailedSubscriber.php │   │   │   │   │   │   ├── MarkedIncomplete.php │   │   │   │   │   │   ├── MarkedIncompleteSubscriber.php │   │   │   │   │   │   ├── Passed.php │   │   │   │   │   │   ├── PassedSubscriber.php │   │   │   │   │   │   ├── Skipped.php │   │   │   │   │   │   └── SkippedSubscriber.php │   │   │   │   │   ├── PrintedUnexpectedOutput.php │   │   │   │   │   ├── PrintedUnexpectedOutputSubscriber.php │   │   │   │   │   └── TestDouble │   │   │   │   │   ├── MockObjectCreated.php │   │   │   │   │   ├── MockObjectCreatedSubscriber.php │   │   │   │   │   ├── MockObjectForAbstractClassCreated.php │   │   │   │   │   ├── MockObjectForAbstractClassCreatedSubscriber.php │   │   │   │   │   ├── MockObjectForIntersectionOfInterfacesCreated.php │   │   │   │   │   ├── MockObjectForIntersectionOfInterfacesCreatedSubscriber.php │   │   │   │   │   ├── MockObjectForTraitCreated.php │   │   │   │   │   ├── MockObjectForTraitCreatedSubscriber.php │   │   │   │   │   ├── MockObjectFromWsdlCreated.php │   │   │   │   │   ├── MockObjectFromWsdlCreatedSubscriber.php │   │   │   │   │   ├── PartialMockObjectCreated.php │   │   │   │   │   ├── PartialMockObjectCreatedSubscriber.php │   │   │   │   │   ├── TestProxyCreated.php │   │   │   │   │   ├── TestProxyCreatedSubscriber.php │   │   │   │   │   ├── TestStubCreated.php │   │   │   │   │   ├── TestStubCreatedSubscriber.php │   │   │   │   │   ├── TestStubForIntersectionOfInterfacesCreated.php │   │   │   │   │   └── TestStubForIntersectionOfInterfacesCreatedSubscriber.php │   │   │   │   ├── TestRunner │   │   │   │   │   ├── BootstrapFinished.php │   │   │   │   │   ├── BootstrapFinishedSubscriber.php │   │   │   │   │   ├── ChildProcessFinished.php │   │   │   │   │   ├── ChildProcessFinishedSubscriber.php │   │   │   │   │   ├── ChildProcessStarted.php │   │   │   │   │   ├── ChildProcessStartedSubscriber.php │   │   │   │   │   ├── Configured.php │   │   │   │   │   ├── ConfiguredSubscriber.php │   │   │   │   │   ├── DeprecationTriggered.php │   │   │   │   │   ├── DeprecationTriggeredSubscriber.php │   │   │   │   │   ├── EventFacadeSealed.php │   │   │   │   │   ├── EventFacadeSealedSubscriber.php │   │   │   │   │   ├── ExecutionAborted.php │   │   │   │   │   ├── ExecutionAbortedSubscriber.php │   │   │   │   │   ├── ExecutionFinished.php │   │   │   │   │   ├── ExecutionFinishedSubscriber.php │   │   │   │   │   ├── ExecutionStarted.php │   │   │   │   │   ├── ExecutionStartedSubscriber.php │   │   │   │   │   ├── ExtensionBootstrapped.php │   │   │   │   │   ├── ExtensionBootstrappedSubscriber.php │   │   │   │   │   ├── ExtensionLoadedFromPhar.php │   │   │   │   │   ├── ExtensionLoadedFromPharSubscriber.php │   │   │   │   │   ├── Finished.php │   │   │   │   │   ├── FinishedSubscriber.php │   │   │   │   │   ├── GarbageCollectionDisabled.php │   │   │   │   │   ├── GarbageCollectionDisabledSubscriber.php │   │   │   │   │   ├── GarbageCollectionEnabled.php │   │   │   │   │   ├── GarbageCollectionEnabledSubscriber.php │   │   │   │   │   ├── GarbageCollectionTriggered.php │   │   │   │   │   ├── GarbageCollectionTriggeredSubscriber.php │   │   │   │   │   ├── Started.php │   │   │   │   │   ├── StartedSubscriber.php │   │   │   │   │   ├── WarningTriggered.php │   │   │   │   │   └── WarningTriggeredSubscriber.php │   │   │   │   └── TestSuite │   │   │   │   ├── Filtered.php │   │   │   │   ├── FilteredSubscriber.php │   │   │   │   ├── Finished.php │   │   │   │   ├── FinishedSubscriber.php │   │   │   │   ├── Loaded.php │   │   │   │   ├── LoadedSubscriber.php │   │   │   │   ├── Skipped.php │   │   │   │   ├── SkippedSubscriber.php │   │   │   │   ├── Sorted.php │   │   │   │   ├── SortedSubscriber.php │   │   │   │   ├── Started.php │   │   │   │   └── StartedSubscriber.php │   │   │   ├── Exception │   │   │   │   ├── EventAlreadyAssignedException.php │   │   │   │   ├── EventFacadeIsSealedException.php │   │   │   │   ├── Exception.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── InvalidEventException.php │   │   │   │   ├── InvalidSubscriberException.php │   │   │   │   ├── MapError.php │   │   │   │   ├── NoComparisonFailureException.php │   │   │   │   ├── NoDataSetFromDataProviderException.php │   │   │   │   ├── NoPreviousThrowableException.php │   │   │   │   ├── NoTestCaseObjectOnCallStackException.php │   │   │   │   ├── RuntimeException.php │   │   │   │   ├── SubscriberTypeAlreadyRegisteredException.php │   │   │   │   ├── UnknownEventException.php │   │   │   │   ├── UnknownEventTypeException.php │   │   │   │   ├── UnknownSubscriberException.php │   │   │   │   └── UnknownSubscriberTypeException.php │   │   │   ├── Facade.php │   │   │   ├── Subscriber.php │   │   │   ├── Tracer.php │   │   │   ├── TypeMap.php │   │   │   └── Value │   │   │   ├── ClassMethod.php │   │   │   ├── ComparisonFailure.php │   │   │   ├── ComparisonFailureBuilder.php │   │   │   ├── Runtime │   │   │   │   ├── OperatingSystem.php │   │   │   │   ├── PHP.php │   │   │   │   ├── PHPUnit.php │   │   │   │   └── Runtime.php │   │   │   ├── Telemetry │   │   │   │   ├── Duration.php │   │   │   │   ├── GarbageCollectorStatus.php │   │   │   │   ├── GarbageCollectorStatusProvider.php │   │   │   │   ├── HRTime.php │   │   │   │   ├── Info.php │   │   │   │   ├── MemoryMeter.php │   │   │   │   ├── MemoryUsage.php │   │   │   │   ├── Php81GarbageCollectorStatusProvider.php │   │   │   │   ├── Php83GarbageCollectorStatusProvider.php │   │   │   │   ├── Snapshot.php │   │   │   │   ├── StopWatch.php │   │   │   │   ├── System.php │   │   │   │   ├── SystemMemoryMeter.php │   │   │   │   ├── SystemStopWatch.php │   │   │   │   └── SystemStopWatchWithOffset.php │   │   │   ├── Test │   │   │   │   ├── Issue │   │   │   │   │   ├── DirectTrigger.php │   │   │   │   │   ├── IndirectTrigger.php │   │   │   │   │   ├── IssueTrigger.php │   │   │   │   │   ├── SelfTrigger.php │   │   │   │   │   ├── TestTrigger.php │   │   │   │   │   └── UnknownTrigger.php │   │   │   │   ├── Phpt.php │   │   │   │   ├── Test.php │   │   │   │   ├── TestCollection.php │   │   │   │   ├── TestCollectionIterator.php │   │   │   │   ├── TestData │   │   │   │   │   ├── DataFromDataProvider.php │   │   │   │   │   ├── DataFromTestDependency.php │   │   │   │   │   ├── TestData.php │   │   │   │   │   ├── TestDataCollection.php │   │   │   │   │   └── TestDataCollectionIterator.php │   │   │   │   ├── TestDox.php │   │   │   │   ├── TestDoxBuilder.php │   │   │   │   ├── TestMethod.php │   │   │   │   └── TestMethodBuilder.php │   │   │   ├── TestSuite │   │   │   │   ├── TestSuite.php │   │   │   │   ├── TestSuiteBuilder.php │   │   │   │   ├── TestSuiteForTestClass.php │   │   │   │   ├── TestSuiteForTestMethodWithDataProvider.php │   │   │   │   └── TestSuiteWithName.php │   │   │   ├── Throwable.php │   │   │   └── ThrowableBuilder.php │   │   ├── Exception.php │   │   ├── Framework │   │   │   ├── Assert │   │   │   │   └── Functions.php │   │   │   ├── Assert.php │   │   │   ├── Attributes │   │   │   │   ├── After.php │   │   │   │   ├── AfterClass.php │   │   │   │   ├── BackupGlobals.php │   │   │   │   ├── BackupStaticProperties.php │   │   │   │   ├── Before.php │   │   │   │   ├── BeforeClass.php │   │   │   │   ├── CoversClass.php │   │   │   │   ├── CoversFunction.php │   │   │   │   ├── CoversMethod.php │   │   │   │   ├── CoversNothing.php │   │   │   │   ├── CoversTrait.php │   │   │   │   ├── DataProvider.php │   │   │   │   ├── DataProviderExternal.php │   │   │   │   ├── Depends.php │   │   │   │   ├── DependsExternal.php │   │   │   │   ├── DependsExternalUsingDeepClone.php │   │   │   │   ├── DependsExternalUsingShallowClone.php │   │   │   │   ├── DependsOnClass.php │   │   │   │   ├── DependsOnClassUsingDeepClone.php │   │   │   │   ├── DependsOnClassUsingShallowClone.php │   │   │   │   ├── DependsUsingDeepClone.php │   │   │   │   ├── DependsUsingShallowClone.php │   │   │   │   ├── DisableReturnValueGenerationForTestDoubles.php │   │   │   │   ├── DoesNotPerformAssertions.php │   │   │   │   ├── ExcludeGlobalVariableFromBackup.php │   │   │   │   ├── ExcludeStaticPropertyFromBackup.php │   │   │   │   ├── Group.php │   │   │   │   ├── IgnoreDeprecations.php │   │   │   │   ├── IgnorePhpunitDeprecations.php │   │   │   │   ├── Large.php │   │   │   │   ├── Medium.php │   │   │   │   ├── PostCondition.php │   │   │   │   ├── PreCondition.php │   │   │   │   ├── PreserveGlobalState.php │   │   │   │   ├── RequiresFunction.php │   │   │   │   ├── RequiresMethod.php │   │   │   │   ├── RequiresOperatingSystem.php │   │   │   │   ├── RequiresOperatingSystemFamily.php │   │   │   │   ├── RequiresPhp.php │   │   │   │   ├── RequiresPhpExtension.php │   │   │   │   ├── RequiresPhpunit.php │   │   │   │   ├── RequiresPhpunitExtension.php │   │   │   │   ├── RequiresSetting.php │   │   │   │   ├── RunClassInSeparateProcess.php │   │   │   │   ├── RunInSeparateProcess.php │   │   │   │   ├── RunTestsInSeparateProcesses.php │   │   │   │   ├── Small.php │   │   │   │   ├── Test.php │   │   │   │   ├── TestDox.php │   │   │   │   ├── TestWith.php │   │   │   │   ├── TestWithJson.php │   │   │   │   ├── Ticket.php │   │   │   │   ├── UsesClass.php │   │   │   │   ├── UsesFunction.php │   │   │   │   ├── UsesMethod.php │   │   │   │   ├── UsesTrait.php │   │   │   │   └── WithoutErrorHandler.php │   │   │   ├── Constraint │   │   │   │   ├── Boolean │   │   │   │   │   ├── IsFalse.php │   │   │   │   │   └── IsTrue.php │   │   │   │   ├── Callback.php │   │   │   │   ├── Cardinality │   │   │   │   │   ├── Count.php │   │   │   │   │   ├── GreaterThan.php │   │   │   │   │   ├── IsEmpty.php │   │   │   │   │   ├── LessThan.php │   │   │   │   │   └── SameSize.php │   │   │   │   ├── Constraint.php │   │   │   │   ├── Equality │   │   │   │   │   ├── IsEqual.php │   │   │   │   │   ├── IsEqualCanonicalizing.php │   │   │   │   │   ├── IsEqualIgnoringCase.php │   │   │   │   │   └── IsEqualWithDelta.php │   │   │   │   ├── Exception │   │   │   │   │   ├── Exception.php │   │   │   │   │   ├── ExceptionCode.php │   │   │   │   │   ├── ExceptionMessageIsOrContains.php │   │   │   │   │   └── ExceptionMessageMatchesRegularExpression.php │   │   │   │   ├── Filesystem │   │   │   │   │   ├── DirectoryExists.php │   │   │   │   │   ├── FileExists.php │   │   │   │   │   ├── IsReadable.php │   │   │   │   │   └── IsWritable.php │   │   │   │   ├── IsAnything.php │   │   │   │   ├── IsIdentical.php │   │   │   │   ├── JsonMatches.php │   │   │   │   ├── Math │   │   │   │   │   ├── IsFinite.php │   │   │   │   │   ├── IsInfinite.php │   │   │   │   │   └── IsNan.php │   │   │   │   ├── Object │   │   │   │   │   ├── ObjectEquals.php │   │   │   │   │   └── ObjectHasProperty.php │   │   │   │   ├── Operator │   │   │   │   │   ├── BinaryOperator.php │   │   │   │   │   ├── LogicalAnd.php │   │   │   │   │   ├── LogicalNot.php │   │   │   │   │   ├── LogicalOr.php │   │   │   │   │   ├── LogicalXor.php │   │   │   │   │   ├── Operator.php │   │   │   │   │   └── UnaryOperator.php │   │   │   │   ├── String │   │   │   │   │   ├── IsJson.php │   │   │   │   │   ├── RegularExpression.php │   │   │   │   │   ├── StringContains.php │   │   │   │   │   ├── StringEndsWith.php │   │   │   │   │   ├── StringEqualsStringIgnoringLineEndings.php │   │   │   │   │   ├── StringMatchesFormatDescription.php │   │   │   │   │   └── StringStartsWith.php │   │   │   │   ├── Traversable │   │   │   │   │   ├── ArrayHasKey.php │   │   │   │   │   ├── IsList.php │   │   │   │   │   ├── TraversableContains.php │   │   │   │   │   ├── TraversableContainsEqual.php │   │   │   │   │   ├── TraversableContainsIdentical.php │   │   │   │   │   └── TraversableContainsOnly.php │   │   │   │   └── Type │   │   │   │   ├── IsInstanceOf.php │   │   │   │   ├── IsNull.php │   │   │   │   └── IsType.php │   │   │   ├── DataProviderTestSuite.php │   │   │   ├── Exception │   │   │   │   ├── AssertionFailedError.php │   │   │   │   ├── CodeCoverageException.php │   │   │   │   ├── EmptyStringException.php │   │   │   │   ├── Exception.php │   │   │   │   ├── ExpectationFailedException.php │   │   │   │   ├── GeneratorNotSupportedException.php │   │   │   │   ├── Incomplete │   │   │   │   │   ├── IncompleteTest.php │   │   │   │   │   └── IncompleteTestError.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── InvalidCoversTargetException.php │   │   │   │   ├── InvalidDataProviderException.php │   │   │   │   ├── InvalidDependencyException.php │   │   │   │   ├── NoChildTestSuiteException.php │   │   │   │   ├── ObjectEquals │   │   │   │   │   ├── ActualValueIsNotAnObjectException.php │   │   │   │   │   ├── ComparisonMethodDoesNotAcceptParameterTypeException.php │   │   │   │   │   ├── ComparisonMethodDoesNotDeclareBoolReturnTypeException.php │   │   │   │   │   ├── ComparisonMethodDoesNotDeclareExactlyOneParameterException.php │   │   │   │   │   ├── ComparisonMethodDoesNotDeclareParameterTypeException.php │   │   │   │   │   └── ComparisonMethodDoesNotExistException.php │   │   │   │   ├── PhptAssertionFailedError.php │   │   │   │   ├── ProcessIsolationException.php │   │   │   │   ├── Skipped │   │   │   │   │   ├── SkippedTest.php │   │   │   │   │   ├── SkippedTestSuiteError.php │   │   │   │   │   └── SkippedWithMessageException.php │   │   │   │   ├── UnknownClassOrInterfaceException.php │   │   │   │   └── UnknownTypeException.php │   │   │   ├── ExecutionOrderDependency.php │   │   │   ├── MockObject │   │   │   │   ├── ConfigurableMethod.php │   │   │   │   ├── Exception │   │   │   │   │   ├── BadMethodCallException.php │   │   │   │   │   ├── CannotCloneTestDoubleForReadonlyClassException.php │   │   │   │   │   ├── CannotUseOnlyMethodsException.php │   │   │   │   │   ├── Exception.php │   │   │   │   │   ├── IncompatibleReturnValueException.php │   │   │   │   │   ├── MatchBuilderNotFoundException.php │   │   │   │   │   ├── MatcherAlreadyRegisteredException.php │   │   │   │   │   ├── MethodCannotBeConfiguredException.php │   │   │   │   │   ├── MethodNameAlreadyConfiguredException.php │   │   │   │   │   ├── MethodNameNotConfiguredException.php │   │   │   │   │   ├── MethodParametersAlreadyConfiguredException.php │   │   │   │   │   ├── NeverReturningMethodException.php │   │   │   │   │   ├── NoMoreReturnValuesConfiguredException.php │   │   │   │   │   ├── ReturnValueNotConfiguredException.php │   │   │   │   │   └── RuntimeException.php │   │   │   │   ├── Generator │   │   │   │   │   ├── Exception │   │   │   │   │   │   ├── CannotUseAddMethodsException.php │   │   │   │   │   │   ├── ClassIsEnumerationException.php │   │   │   │   │   │   ├── ClassIsFinalException.php │   │   │   │   │   │   ├── DuplicateMethodException.php │   │   │   │   │   │   ├── Exception.php │   │   │   │   │   │   ├── InvalidMethodNameException.php │   │   │   │   │   │   ├── NameAlreadyInUseException.php │   │   │   │   │   │   ├── OriginalConstructorInvocationRequiredException.php │   │   │   │   │   │   ├── ReflectionException.php │   │   │   │   │   │   ├── RuntimeException.php │   │   │   │   │   │   ├── SoapExtensionNotAvailableException.php │   │   │   │   │   │   ├── UnknownClassException.php │   │   │   │   │   │   ├── UnknownTraitException.php │   │   │   │   │   │   └── UnknownTypeException.php │   │   │   │   │   ├── Generator.php │   │   │   │   │   ├── HookedProperty.php │   │   │   │   │   ├── HookedPropertyGenerator.php │   │   │   │   │   ├── MockClass.php │   │   │   │   │   ├── MockMethod.php │   │   │   │   │   ├── MockMethodSet.php │   │   │   │   │   ├── MockTrait.php │   │   │   │   │   ├── MockType.php │   │   │   │   │   ├── TemplateLoader.php │   │   │   │   │   └── templates │   │   │   │   │   ├── deprecation.tpl │   │   │   │   │   ├── doubled_method.tpl │   │   │   │   │   ├── doubled_static_method.tpl │   │   │   │   │   ├── intersection.tpl │   │   │   │   │   ├── proxied_method.tpl │   │   │   │   │   ├── test_double_class.tpl │   │   │   │   │   ├── trait_class.tpl │   │   │   │   │   ├── wsdl_class.tpl │   │   │   │   │   └── wsdl_method.tpl │   │   │   │   ├── MockBuilder.php │   │   │   │   └── Runtime │   │   │   │   ├── Api │   │   │   │   │   ├── DoubledCloneMethod.php │   │   │   │   │   ├── ErrorCloneMethod.php │   │   │   │   │   ├── GeneratedAsMockObject.php │   │   │   │   │   ├── GeneratedAsTestStub.php │   │   │   │   │   ├── Method.php │   │   │   │   │   ├── MockObjectApi.php │   │   │   │   │   ├── MutableStubApi.php │   │   │   │   │   ├── ProxiedCloneMethod.php │   │   │   │   │   ├── StubApi.php │   │   │   │   │   └── TestDoubleState.php │   │   │   │   ├── Builder │   │   │   │   │   ├── Identity.php │   │   │   │   │   ├── InvocationMocker.php │   │   │   │   │   ├── InvocationStubber.php │   │   │   │   │   ├── MethodNameMatch.php │   │   │   │   │   ├── ParametersMatch.php │   │   │   │   │   └── Stub.php │   │   │   │   ├── Interface │   │   │   │   │   ├── MockObject.php │   │   │   │   │   ├── MockObjectInternal.php │   │   │   │   │   ├── Stub.php │   │   │   │   │   └── StubInternal.php │   │   │   │   ├── Invocation.php │   │   │   │   ├── InvocationHandler.php │   │   │   │   ├── Matcher.php │   │   │   │   ├── MethodNameConstraint.php │   │   │   │   ├── PropertyHook │   │   │   │   │   ├── PropertyGetHook.php │   │   │   │   │   ├── PropertyHook.php │   │   │   │   │   └── PropertySetHook.php │   │   │   │   ├── ReturnValueGenerator.php │   │   │   │   ├── Rule │   │   │   │   │   ├── AnyInvokedCount.php │   │   │   │   │   ├── AnyParameters.php │   │   │   │   │   ├── InvocationOrder.php │   │   │   │   │   ├── InvokedAtLeastCount.php │   │   │   │   │   ├── InvokedAtLeastOnce.php │   │   │   │   │   ├── InvokedAtMostCount.php │   │   │   │   │   ├── InvokedCount.php │   │   │   │   │   ├── MethodName.php │   │   │   │   │   ├── Parameters.php │   │   │   │   │   └── ParametersRule.php │   │   │   │   └── Stub │   │   │   │   ├── ConsecutiveCalls.php │   │   │   │   ├── Exception.php │   │   │   │   ├── ReturnArgument.php │   │   │   │   ├── ReturnCallback.php │   │   │   │   ├── ReturnReference.php │   │   │   │   ├── ReturnSelf.php │   │   │   │   ├── ReturnStub.php │   │   │   │   ├── ReturnValueMap.php │   │   │   │   └── Stub.php │   │   │   ├── NativeType.php │   │   │   ├── Reorderable.php │   │   │   ├── SelfDescribing.php │   │   │   ├── Test.php │   │   │   ├── TestBuilder.php │   │   │   ├── TestCase.php │   │   │   ├── TestRunner │   │   │   │   ├── ChildProcessResultProcessor.php │   │   │   │   ├── IsolatedTestRunner.php │   │   │   │   ├── IsolatedTestRunnerRegistry.php │   │   │   │   ├── SeparateProcessTestRunner.php │   │   │   │   ├── TestRunner.php │   │   │   │   └── templates │   │   │   │   ├── class.tpl │   │   │   │   └── method.tpl │   │   │   ├── TestSize │   │   │   │   ├── Known.php │   │   │   │   ├── Large.php │   │   │   │   ├── Medium.php │   │   │   │   ├── Small.php │   │   │   │   ├── TestSize.php │   │   │   │   └── Unknown.php │   │   │   ├── TestStatus │   │   │   │   ├── Deprecation.php │   │   │   │   ├── Error.php │   │   │   │   ├── Failure.php │   │   │   │   ├── Incomplete.php │   │   │   │   ├── Known.php │   │   │   │   ├── Notice.php │   │   │   │   ├── Risky.php │   │   │   │   ├── Skipped.php │   │   │   │   ├── Success.php │   │   │   │   ├── TestStatus.php │   │   │   │   ├── Unknown.php │   │   │   │   └── Warning.php │   │   │   ├── TestSuite.php │   │   │   └── TestSuiteIterator.php │   │   ├── Logging │   │   │   ├── EventLogger.php │   │   │   ├── JUnit │   │   │   │   ├── JunitXmlLogger.php │   │   │   │   └── Subscriber │   │   │   │   ├── Subscriber.php │   │   │   │   ├── TestErroredSubscriber.php │   │   │   │   ├── TestFailedSubscriber.php │   │   │   │   ├── TestFinishedSubscriber.php │   │   │   │   ├── TestMarkedIncompleteSubscriber.php │   │   │   │   ├── TestPreparationFailedSubscriber.php │   │   │   │   ├── TestPreparationStartedSubscriber.php │   │   │   │   ├── TestPreparedSubscriber.php │   │   │   │   ├── TestPrintedUnexpectedOutputSubscriber.php │   │   │   │   ├── TestRunnerExecutionFinishedSubscriber.php │   │   │   │   ├── TestSkippedSubscriber.php │   │   │   │   ├── TestSuiteFinishedSubscriber.php │   │   │   │   └── TestSuiteStartedSubscriber.php │   │   │   ├── TeamCity │   │   │   │   ├── Subscriber │   │   │   │   │   ├── Subscriber.php │   │   │   │   │   ├── TestConsideredRiskySubscriber.php │   │   │   │   │   ├── TestErroredSubscriber.php │   │   │   │   │   ├── TestFailedSubscriber.php │   │   │   │   │   ├── TestFinishedSubscriber.php │   │   │   │   │   ├── TestMarkedIncompleteSubscriber.php │   │   │   │   │   ├── TestPreparedSubscriber.php │   │   │   │   │   ├── TestRunnerExecutionFinishedSubscriber.php │   │   │   │   │   ├── TestSkippedSubscriber.php │   │   │   │   │   ├── TestSuiteBeforeFirstTestMethodErroredSubscriber.php │   │   │   │   │   ├── TestSuiteFinishedSubscriber.php │   │   │   │   │   ├── TestSuiteSkippedSubscriber.php │   │   │   │   │   └── TestSuiteStartedSubscriber.php │   │   │   │   └── TeamCityLogger.php │   │   │   └── TestDox │   │   │   ├── HtmlRenderer.php │   │   │   ├── NamePrettifier.php │   │   │   ├── PlainTextRenderer.php │   │   │   └── TestResult │   │   │   ├── Subscriber │   │   │   │   ├── Subscriber.php │   │   │   │   ├── TestConsideredRiskySubscriber.php │   │   │   │   ├── TestErroredSubscriber.php │   │   │   │   ├── TestFailedSubscriber.php │   │   │   │   ├── TestFinishedSubscriber.php │   │   │   │   ├── TestMarkedIncompleteSubscriber.php │   │   │   │   ├── TestPassedSubscriber.php │   │   │   │   ├── TestPreparedSubscriber.php │   │   │   │   ├── TestSkippedSubscriber.php │   │   │   │   ├── TestTriggeredDeprecationSubscriber.php │   │   │   │   ├── TestTriggeredNoticeSubscriber.php │   │   │   │   ├── TestTriggeredPhpDeprecationSubscriber.php │   │   │   │   ├── TestTriggeredPhpNoticeSubscriber.php │   │   │   │   ├── TestTriggeredPhpWarningSubscriber.php │   │   │   │   ├── TestTriggeredPhpunitDeprecationSubscriber.php │   │   │   │   ├── TestTriggeredPhpunitErrorSubscriber.php │   │   │   │   ├── TestTriggeredPhpunitWarningSubscriber.php │   │   │   │   └── TestTriggeredWarningSubscriber.php │   │   │   ├── TestResult.php │   │   │   ├── TestResultCollection.php │   │   │   ├── TestResultCollectionIterator.php │   │   │   └── TestResultCollector.php │   │   ├── Metadata │   │   │   ├── After.php │   │   │   ├── AfterClass.php │   │   │   ├── Api │   │   │   │   ├── CodeCoverage.php │   │   │   │   ├── DataProvider.php │   │   │   │   ├── Dependencies.php │   │   │   │   ├── Groups.php │   │   │   │   ├── HookMethods.php │   │   │   │   └── Requirements.php │   │   │   ├── BackupGlobals.php │   │   │   ├── BackupStaticProperties.php │   │   │   ├── Before.php │   │   │   ├── BeforeClass.php │   │   │   ├── Covers.php │   │   │   ├── CoversClass.php │   │   │   ├── CoversDefaultClass.php │   │   │   ├── CoversFunction.php │   │   │   ├── CoversMethod.php │   │   │   ├── CoversNothing.php │   │   │   ├── CoversTrait.php │   │   │   ├── DataProvider.php │   │   │   ├── DependsOnClass.php │   │   │   ├── DependsOnMethod.php │   │   │   ├── DisableReturnValueGenerationForTestDoubles.php │   │   │   ├── DoesNotPerformAssertions.php │   │   │   ├── Exception │   │   │   │   ├── AnnotationsAreNotSupportedForInternalClassesException.php │   │   │   │   ├── Exception.php │   │   │   │   ├── InvalidAttributeException.php │   │   │   │   ├── InvalidVersionRequirementException.php │   │   │   │   ├── NoVersionRequirementException.php │   │   │   │   └── ReflectionException.php │   │   │   ├── ExcludeGlobalVariableFromBackup.php │   │   │   ├── ExcludeStaticPropertyFromBackup.php │   │   │   ├── Group.php │   │   │   ├── IgnoreDeprecations.php │   │   │   ├── IgnorePhpunitDeprecations.php │   │   │   ├── Metadata.php │   │   │   ├── MetadataCollection.php │   │   │   ├── MetadataCollectionIterator.php │   │   │   ├── Parser │   │   │   │   ├── Annotation │   │   │   │   │   ├── DocBlock.php │   │   │   │   │   └── Registry.php │   │   │   │   ├── AnnotationParser.php │   │   │   │   ├── AttributeParser.php │   │   │   │   ├── CachingParser.php │   │   │   │   ├── Parser.php │   │   │   │   ├── ParserChain.php │   │   │   │   └── Registry.php │   │   │   ├── PostCondition.php │   │   │   ├── PreCondition.php │   │   │   ├── PreserveGlobalState.php │   │   │   ├── RequiresFunction.php │   │   │   ├── RequiresMethod.php │   │   │   ├── RequiresOperatingSystem.php │   │   │   ├── RequiresOperatingSystemFamily.php │   │   │   ├── RequiresPhp.php │   │   │   ├── RequiresPhpExtension.php │   │   │   ├── RequiresPhpunit.php │   │   │   ├── RequiresPhpunitExtension.php │   │   │   ├── RequiresSetting.php │   │   │   ├── RunClassInSeparateProcess.php │   │   │   ├── RunInSeparateProcess.php │   │   │   ├── RunTestsInSeparateProcesses.php │   │   │   ├── Test.php │   │   │   ├── TestDox.php │   │   │   ├── TestWith.php │   │   │   ├── Uses.php │   │   │   ├── UsesClass.php │   │   │   ├── UsesDefaultClass.php │   │   │   ├── UsesFunction.php │   │   │   ├── UsesMethod.php │   │   │   ├── UsesTrait.php │   │   │   ├── Version │   │   │   │   ├── ComparisonRequirement.php │   │   │   │   ├── ConstraintRequirement.php │   │   │   │   └── Requirement.php │   │   │   └── WithoutErrorHandler.php │   │   ├── Runner │   │   │   ├── Baseline │   │   │   │   ├── Baseline.php │   │   │   │   ├── Exception │   │   │   │   │   ├── CannotLoadBaselineException.php │   │   │   │   │   └── FileDoesNotHaveLineException.php │   │   │   │   ├── Generator.php │   │   │   │   ├── Issue.php │   │   │   │   ├── Reader.php │   │   │   │   ├── RelativePathCalculator.php │   │   │   │   ├── Subscriber │   │   │   │   │   ├── Subscriber.php │   │   │   │   │   ├── TestTriggeredDeprecationSubscriber.php │   │   │   │   │   ├── TestTriggeredNoticeSubscriber.php │   │   │   │   │   ├── TestTriggeredPhpDeprecationSubscriber.php │   │   │   │   │   ├── TestTriggeredPhpNoticeSubscriber.php │   │   │   │   │   ├── TestTriggeredPhpWarningSubscriber.php │   │   │   │   │   └── TestTriggeredWarningSubscriber.php │   │   │   │   └── Writer.php │   │   │   ├── CodeCoverage.php │   │   │   ├── DeprecationCollector │   │   │   │   ├── Collector.php │   │   │   │   ├── Facade.php │   │   │   │   └── Subscriber │   │   │   │   ├── Subscriber.php │   │   │   │   ├── TestPreparedSubscriber.php │   │   │   │   └── TestTriggeredDeprecationSubscriber.php │   │   │   ├── ErrorHandler.php │   │   │   ├── Exception │   │   │   │   ├── ClassCannotBeFoundException.php │   │   │   │   ├── ClassDoesNotExtendTestCaseException.php │   │   │   │   ├── ClassIsAbstractException.php │   │   │   │   ├── DirectoryDoesNotExistException.php │   │   │   │   ├── ErrorException.php │   │   │   │   ├── Exception.php │   │   │   │   ├── FileDoesNotExistException.php │   │   │   │   ├── InvalidOrderException.php │   │   │   │   ├── InvalidPhptFileException.php │   │   │   │   ├── ParameterDoesNotExistException.php │   │   │   │   ├── PhptExternalFileCannotBeLoadedException.php │   │   │   │   └── UnsupportedPhptSectionException.php │   │   │   ├── Extension │   │   │   │   ├── Extension.php │   │   │   │   ├── ExtensionBootstrapper.php │   │   │   │   ├── Facade.php │   │   │   │   ├── ParameterCollection.php │   │   │   │   └── PharLoader.php │   │   │   ├── Filter │   │   │   │   ├── ExcludeGroupFilterIterator.php │   │   │   │   ├── ExcludeNameFilterIterator.php │   │   │   │   ├── Factory.php │   │   │   │   ├── GroupFilterIterator.php │   │   │   │   ├── IncludeGroupFilterIterator.php │   │   │   │   ├── IncludeNameFilterIterator.php │   │   │   │   ├── NameFilterIterator.php │   │   │   │   └── TestIdFilterIterator.php │   │   │   ├── GarbageCollection │   │   │   │   ├── GarbageCollectionHandler.php │   │   │   │   └── Subscriber │   │   │   │   ├── ExecutionFinishedSubscriber.php │   │   │   │   ├── ExecutionStartedSubscriber.php │   │   │   │   ├── Subscriber.php │   │   │   │   └── TestFinishedSubscriber.php │   │   │   ├── HookMethod │   │   │   │   ├── HookMethod.php │   │   │   │   └── HookMethodCollection.php │   │   │   ├── IssueFilter.php │   │   │   ├── PHPT │   │   │   │   ├── PhptTestCase.php │   │   │   │   └── templates │   │   │   │   └── phpt.tpl │   │   │   ├── ResultCache │   │   │   │   ├── DefaultResultCache.php │   │   │   │   ├── NullResultCache.php │   │   │   │   ├── ResultCache.php │   │   │   │   ├── ResultCacheHandler.php │   │   │   │   └── Subscriber │   │   │   │   ├── Subscriber.php │   │   │   │   ├── TestConsideredRiskySubscriber.php │   │   │   │   ├── TestErroredSubscriber.php │   │   │   │   ├── TestFailedSubscriber.php │   │   │   │   ├── TestFinishedSubscriber.php │   │   │   │   ├── TestMarkedIncompleteSubscriber.php │   │   │   │   ├── TestPreparedSubscriber.php │   │   │   │   ├── TestSkippedSubscriber.php │   │   │   │   ├── TestSuiteFinishedSubscriber.php │   │   │   │   └── TestSuiteStartedSubscriber.php │   │   │   ├── TestResult │   │   │   │   ├── Collector.php │   │   │   │   ├── Facade.php │   │   │   │   ├── Issue.php │   │   │   │   ├── PassedTests.php │   │   │   │   ├── Subscriber │   │   │   │   │   ├── AfterTestClassMethodErroredSubscriber.php │   │   │   │   │   ├── BeforeTestClassMethodErroredSubscriber.php │   │   │   │   │   ├── ExecutionStartedSubscriber.php │   │   │   │   │   ├── Subscriber.php │   │   │   │   │   ├── TestConsideredRiskySubscriber.php │   │   │   │   │   ├── TestErroredSubscriber.php │   │   │   │   │   ├── TestFailedSubscriber.php │   │   │   │   │   ├── TestFinishedSubscriber.php │   │   │   │   │   ├── TestMarkedIncompleteSubscriber.php │   │   │   │   │   ├── TestPreparedSubscriber.php │   │   │   │   │   ├── TestRunnerTriggeredDeprecationSubscriber.php │   │   │   │   │   ├── TestRunnerTriggeredWarningSubscriber.php │   │   │   │   │   ├── TestSkippedSubscriber.php │   │   │   │   │   ├── TestSuiteFinishedSubscriber.php │   │   │   │   │   ├── TestSuiteSkippedSubscriber.php │   │   │   │   │   ├── TestSuiteStartedSubscriber.php │   │   │   │   │   ├── TestTriggeredDeprecationSubscriber.php │   │   │   │   │   ├── TestTriggeredErrorSubscriber.php │   │   │   │   │   ├── TestTriggeredNoticeSubscriber.php │   │   │   │   │   ├── TestTriggeredPhpDeprecationSubscriber.php │   │   │   │   │   ├── TestTriggeredPhpNoticeSubscriber.php │   │   │   │   │   ├── TestTriggeredPhpWarningSubscriber.php │   │   │   │   │   ├── TestTriggeredPhpunitDeprecationSubscriber.php │   │   │   │   │   ├── TestTriggeredPhpunitErrorSubscriber.php │   │   │   │   │   ├── TestTriggeredPhpunitWarningSubscriber.php │   │   │   │   │   └── TestTriggeredWarningSubscriber.php │   │   │   │   └── TestResult.php │   │   │   ├── TestSuiteLoader.php │   │   │   ├── TestSuiteSorter.php │   │   │   └── Version.php │   │   ├── TextUI │   │   │   ├── Application.php │   │   │   ├── Command │   │   │   │   ├── Command.php │   │   │   │   ├── Commands │   │   │   │   │   ├── AtLeastVersionCommand.php │   │   │   │   │   ├── GenerateConfigurationCommand.php │   │   │   │   │   ├── ListGroupsCommand.php │   │   │   │   │   ├── ListTestFilesCommand.php │   │   │   │   │   ├── ListTestSuitesCommand.php │   │   │   │   │   ├── ListTestsAsTextCommand.php │   │   │   │   │   ├── ListTestsAsXmlCommand.php │   │   │   │   │   ├── MigrateConfigurationCommand.php │   │   │   │   │   ├── ShowHelpCommand.php │   │   │   │   │   ├── ShowVersionCommand.php │   │   │   │   │   ├── VersionCheckCommand.php │   │   │   │   │   └── WarmCodeCoverageCacheCommand.php │   │   │   │   └── Result.php │   │   │   ├── Configuration │   │   │   │   ├── Builder.php │   │   │   │   ├── Cli │   │   │   │   │   ├── Builder.php │   │   │   │   │   ├── Configuration.php │   │   │   │   │   ├── Exception.php │   │   │   │   │   └── XmlConfigurationFileFinder.php │   │   │   │   ├── CodeCoverageFilterRegistry.php │   │   │   │   ├── Configuration.php │   │   │   │   ├── Exception │   │   │   │   │   ├── CannotFindSchemaException.php │   │   │   │   │   ├── CodeCoverageReportNotConfiguredException.php │   │   │   │   │   ├── ConfigurationCannotBeBuiltException.php │   │   │   │   │   ├── Exception.php │   │   │   │   │   ├── FilterNotConfiguredException.php │   │   │   │   │   ├── LoggingNotConfiguredException.php │   │   │   │   │   ├── NoBaselineException.php │   │   │   │   │   ├── NoBootstrapException.php │   │   │   │   │   ├── NoCacheDirectoryException.php │   │   │   │   │   ├── NoConfigurationFileException.php │   │   │   │   │   ├── NoCoverageCacheDirectoryException.php │   │   │   │   │   ├── NoCustomCssFileException.php │   │   │   │   │   ├── NoDefaultTestSuiteException.php │   │   │   │   │   ├── NoPharExtensionDirectoryException.php │   │   │   │   │   └── SpecificDeprecationToStopOnNotConfiguredException.php │   │   │   │   ├── Merger.php │   │   │   │   ├── PhpHandler.php │   │   │   │   ├── Registry.php │   │   │   │   ├── SourceFilter.php │   │   │   │   ├── SourceMapper.php │   │   │   │   ├── TestSuiteBuilder.php │   │   │   │   ├── Value │   │   │   │   │   ├── Constant.php │   │   │   │   │   ├── ConstantCollection.php │   │   │   │   │   ├── ConstantCollectionIterator.php │   │   │   │   │   ├── Directory.php │   │   │   │   │   ├── DirectoryCollection.php │   │   │   │   │   ├── DirectoryCollectionIterator.php │   │   │   │   │   ├── ExtensionBootstrap.php │   │   │   │   │   ├── ExtensionBootstrapCollection.php │   │   │   │   │   ├── ExtensionBootstrapCollectionIterator.php │   │   │   │   │   ├── File.php │   │   │   │   │   ├── FileCollection.php │   │   │   │   │   ├── FileCollectionIterator.php │   │   │   │   │   ├── FilterDirectory.php │   │   │   │   │   ├── FilterDirectoryCollection.php │   │   │   │   │   ├── FilterDirectoryCollectionIterator.php │   │   │   │   │   ├── Group.php │   │   │   │   │   ├── GroupCollection.php │   │   │   │   │   ├── GroupCollectionIterator.php │   │   │   │   │   ├── IniSetting.php │   │   │   │   │   ├── IniSettingCollection.php │   │   │   │   │   ├── IniSettingCollectionIterator.php │   │   │   │   │   ├── Php.php │   │   │   │   │   ├── Source.php │   │   │   │   │   ├── TestDirectory.php │   │   │   │   │   ├── TestDirectoryCollection.php │   │   │   │   │   ├── TestDirectoryCollectionIterator.php │   │   │   │   │   ├── TestFile.php │   │   │   │   │   ├── TestFileCollection.php │   │   │   │   │   ├── TestFileCollectionIterator.php │   │   │   │   │   ├── TestSuite.php │   │   │   │   │   ├── TestSuiteCollection.php │   │   │   │   │   ├── TestSuiteCollectionIterator.php │   │   │   │   │   ├── Variable.php │   │   │   │   │   ├── VariableCollection.php │   │   │   │   │   └── VariableCollectionIterator.php │   │   │   │   └── Xml │   │   │   │   ├── CodeCoverage │   │   │   │   │   ├── CodeCoverage.php │   │   │   │   │   └── Report │   │   │   │   │   ├── Clover.php │   │   │   │   │   ├── Cobertura.php │   │   │   │   │   ├── Crap4j.php │   │   │   │   │   ├── Html.php │   │   │   │   │   ├── Php.php │   │   │   │   │   ├── Text.php │   │   │   │   │   └── Xml.php │   │   │   │   ├── Configuration.php │   │   │   │   ├── DefaultConfiguration.php │   │   │   │   ├── Exception.php │   │   │   │   ├── Generator.php │   │   │   │   ├── Groups.php │   │   │   │   ├── LoadedFromFileConfiguration.php │   │   │   │   ├── Loader.php │   │   │   │   ├── Logging │   │   │   │   │   ├── Junit.php │   │   │   │   │   ├── Logging.php │   │   │   │   │   ├── TeamCity.php │   │   │   │   │   └── TestDox │   │   │   │   │   ├── Html.php │   │   │   │   │   └── Text.php │   │   │   │   ├── Migration │   │   │   │   │   ├── MigrationBuilder.php │   │   │   │   │   ├── MigrationException.php │   │   │   │   │   ├── Migrations │   │   │   │   │   │   ├── ConvertLogTypes.php │   │   │   │   │   │   ├── CoverageCloverToReport.php │   │   │   │   │   │   ├── CoverageCrap4jToReport.php │   │   │   │   │   │   ├── CoverageHtmlToReport.php │   │   │   │   │   │   ├── CoveragePhpToReport.php │   │   │   │   │   │   ├── CoverageTextToReport.php │   │   │   │   │   │   ├── CoverageXmlToReport.php │   │   │   │   │   │   ├── IntroduceCacheDirectoryAttribute.php │   │   │   │   │   │   ├── IntroduceCoverageElement.php │   │   │   │   │   │   ├── LogToReportMigration.php │   │   │   │   │   │   ├── Migration.php │   │   │   │   │   │   ├── MoveAttributesFromFilterWhitelistToCoverage.php │   │   │   │   │   │   ├── MoveAttributesFromRootToCoverage.php │   │   │   │   │   │   ├── MoveCoverageDirectoriesToSource.php │   │   │   │   │   │   ├── MoveWhitelistExcludesToCoverage.php │   │   │   │   │   │   ├── MoveWhitelistIncludesToCoverage.php │   │   │   │   │   │   ├── RemoveBeStrictAboutResourceUsageDuringSmallTestsAttribute.php │   │   │   │   │   │   ├── RemoveBeStrictAboutTodoAnnotatedTestsAttribute.php │   │   │   │   │   │   ├── RemoveCacheResultFileAttribute.php │   │   │   │   │   │   ├── RemoveCacheTokensAttribute.php │   │   │   │   │   │   ├── RemoveConversionToExceptionsAttributes.php │   │   │   │   │   │   ├── RemoveCoverageElementCacheDirectoryAttribute.php │   │   │   │   │   │   ├── RemoveCoverageElementProcessUncoveredFilesAttribute.php │   │   │   │   │   │   ├── RemoveEmptyFilter.php │   │   │   │   │   │   ├── RemoveListeners.php │   │   │   │   │   │   ├── RemoveLogTypes.php │   │   │   │   │   │   ├── RemoveLoggingElements.php │   │   │   │   │   │   ├── RemoveNoInteractionAttribute.php │   │   │   │   │   │   ├── RemovePrinterAttributes.php │   │   │   │   │   │   ├── RemoveRegisterMockObjectsFromTestArgumentsRecursivelyAttribute.php │   │   │   │   │   │   ├── RemoveTestDoxGroupsElement.php │   │   │   │   │   │   ├── RemoveTestSuiteLoaderAttributes.php │   │   │   │   │   │   ├── RemoveVerboseAttribute.php │   │   │   │   │   │   ├── RenameBackupStaticAttributesAttribute.php │   │   │   │   │   │   ├── RenameBeStrictAboutCoversAnnotationAttribute.php │   │   │   │   │   │   ├── RenameForceCoversAnnotationAttribute.php │   │   │   │   │   │   ├── ReplaceRestrictDeprecationsWithIgnoreDeprecations.php │   │   │   │   │   │   └── UpdateSchemaLocation.php │   │   │   │   │   ├── Migrator.php │   │   │   │   │   └── SnapshotNodeList.php │   │   │   │   ├── PHPUnit.php │   │   │   │   ├── SchemaDetector │   │   │   │   │   ├── FailedSchemaDetectionResult.php │   │   │   │   │   ├── SchemaDetectionResult.php │   │   │   │   │   ├── SchemaDetector.php │   │   │   │   │   └── SuccessfulSchemaDetectionResult.php │   │   │   │   ├── SchemaFinder.php │   │   │   │   ├── TestSuiteMapper.php │   │   │   │   └── Validator │   │   │   │   ├── ValidationResult.php │   │   │   │   └── Validator.php │   │   │   ├── Exception │   │   │   │   ├── CannotOpenSocketException.php │   │   │   │   ├── Exception.php │   │   │   │   ├── InvalidSocketException.php │   │   │   │   ├── RuntimeException.php │   │   │   │   ├── TestDirectoryNotFoundException.php │   │   │   │   └── TestFileNotFoundException.php │   │   │   ├── Help.php │   │   │   ├── Output │   │   │   │   ├── Default │   │   │   │   │   ├── ProgressPrinter │   │   │   │   │   │   ├── ProgressPrinter.php │   │   │   │   │   │   └── Subscriber │   │   │   │   │   │   ├── BeforeTestClassMethodErroredSubscriber.php │   │   │   │   │   │   ├── Subscriber.php │   │   │   │   │   │   ├── TestConsideredRiskySubscriber.php │   │   │   │   │   │   ├── TestErroredSubscriber.php │   │   │   │   │   │   ├── TestFailedSubscriber.php │   │   │   │   │   │   ├── TestFinishedSubscriber.php │   │   │   │   │   │   ├── TestMarkedIncompleteSubscriber.php │   │   │   │   │   │   ├── TestPreparedSubscriber.php │   │   │   │   │   │   ├── TestRunnerExecutionStartedSubscriber.php │   │   │   │   │   │   ├── TestSkippedSubscriber.php │   │   │   │   │   │   ├── TestTriggeredDeprecationSubscriber.php │   │   │   │   │   │   ├── TestTriggeredErrorSubscriber.php │   │   │   │   │   │   ├── TestTriggeredNoticeSubscriber.php │   │   │   │   │   │   ├── TestTriggeredPhpDeprecationSubscriber.php │   │   │   │   │   │   ├── TestTriggeredPhpNoticeSubscriber.php │   │   │   │   │   │   ├── TestTriggeredPhpWarningSubscriber.php │   │   │   │   │   │   ├── TestTriggeredPhpunitDeprecationSubscriber.php │   │   │   │   │   │   ├── TestTriggeredPhpunitWarningSubscriber.php │   │   │   │   │   │   └── TestTriggeredWarningSubscriber.php │   │   │   │   │   ├── ResultPrinter.php │   │   │   │   │   └── UnexpectedOutputPrinter.php │   │   │   │   ├── Facade.php │   │   │   │   ├── Printer │   │   │   │   │   ├── DefaultPrinter.php │   │   │   │   │   ├── NullPrinter.php │   │   │   │   │   └── Printer.php │   │   │   │   ├── SummaryPrinter.php │   │   │   │   └── TestDox │   │   │   │   └── ResultPrinter.php │   │   │   ├── ShellExitCodeCalculator.php │   │   │   ├── TestRunner.php │   │   │   └── TestSuiteFilterProcessor.php │   │   └── Util │   │   ├── Cloner.php │   │   ├── Color.php │   │   ├── Exception │   │   │   ├── Exception.php │   │   │   ├── InvalidDirectoryException.php │   │   │   ├── InvalidJsonException.php │   │   │   ├── InvalidVersionOperatorException.php │   │   │   ├── PhpProcessException.php │   │   │   └── XmlException.php │   │   ├── ExcludeList.php │   │   ├── Exporter.php │   │   ├── Filesystem.php │   │   ├── Filter.php │   │   ├── GlobalState.php │   │   ├── Http │   │   │   ├── Downloader.php │   │   │   └── PhpDownloader.php │   │   ├── Json.php │   │   ├── PHP │   │   │   ├── DefaultJobRunner.php │   │   │   ├── Job.php │   │   │   ├── JobRunner.php │   │   │   ├── JobRunnerRegistry.php │   │   │   └── Result.php │   │   ├── Reflection.php │   │   ├── Test.php │   │   ├── ThrowableToStringMapper.php │   │   ├── VersionComparisonOperator.php │   │   └── Xml │   │   ├── Loader.php │   │   └── Xml.php │   ├── psr │   │   ├── cache │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE.txt │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── CacheException.php │   │   │   ├── CacheItemInterface.php │   │   │   ├── CacheItemPoolInterface.php │   │   │   └── InvalidArgumentException.php │   │   ├── clock │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   └── ClockInterface.php │   │   ├── container │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── ContainerExceptionInterface.php │   │   │   ├── ContainerInterface.php │   │   │   └── NotFoundExceptionInterface.php │   │   ├── event-dispatcher │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── EventDispatcherInterface.php │   │   │   ├── ListenerProviderInterface.php │   │   │   └── StoppableEventInterface.php │   │   ├── http-client │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── ClientExceptionInterface.php │   │   │   ├── ClientInterface.php │   │   │   ├── NetworkExceptionInterface.php │   │   │   └── RequestExceptionInterface.php │   │   ├── http-factory │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── RequestFactoryInterface.php │   │   │   ├── ResponseFactoryInterface.php │   │   │   ├── ServerRequestFactoryInterface.php │   │   │   ├── StreamFactoryInterface.php │   │   │   ├── UploadedFileFactoryInterface.php │   │   │   └── UriFactoryInterface.php │   │   ├── http-message │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   ├── docs │   │   │   │   ├── PSR7-Interfaces.md │   │   │   │   └── PSR7-Usage.md │   │   │   └── src │   │   │   ├── MessageInterface.php │   │   │   ├── RequestInterface.php │   │   │   ├── ResponseInterface.php │   │   │   ├── ServerRequestInterface.php │   │   │   ├── StreamInterface.php │   │   │   ├── UploadedFileInterface.php │   │   │   └── UriInterface.php │   │   ├── log │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── AbstractLogger.php │   │   │   ├── InvalidArgumentException.php │   │   │   ├── LogLevel.php │   │   │   ├── LoggerAwareInterface.php │   │   │   ├── LoggerAwareTrait.php │   │   │   ├── LoggerInterface.php │   │   │   ├── LoggerTrait.php │   │   │   └── NullLogger.php │   │   └── simple-cache │   │   ├── LICENSE.md │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   ├── CacheException.php │   │   ├── CacheInterface.php │   │   └── InvalidArgumentException.php │   ├── psy │   │   └── psysh │   │   ├── LICENSE │   │   ├── README.md │   │   ├── bin │   │   │   └── psysh │   │   ├── composer.json │   │   └── src │   │   ├── CodeCleaner │   │   │   ├── AbstractClassPass.php │   │   │   ├── AssignThisVariablePass.php │   │   │   ├── CallTimePassByReferencePass.php │   │   │   ├── CalledClassPass.php │   │   │   ├── CodeCleanerPass.php │   │   │   ├── EmptyArrayDimFetchPass.php │   │   │   ├── ExitPass.php │   │   │   ├── FinalClassPass.php │   │   │   ├── FunctionContextPass.php │   │   │   ├── FunctionReturnInWriteContextPass.php │   │   │   ├── ImplicitReturnPass.php │   │   │   ├── IssetPass.php │   │   │   ├── LabelContextPass.php │   │   │   ├── LeavePsyshAlonePass.php │   │   │   ├── ListPass.php │   │   │   ├── LoopContextPass.php │   │   │   ├── MagicConstantsPass.php │   │   │   ├── NamespaceAwarePass.php │   │   │   ├── NamespacePass.php │   │   │   ├── NoReturnValue.php │   │   │   ├── PassableByReferencePass.php │   │   │   ├── RequirePass.php │   │   │   ├── ReturnTypePass.php │   │   │   ├── StrictTypesPass.php │   │   │   ├── UseStatementPass.php │   │   │   ├── ValidClassNamePass.php │   │   │   ├── ValidConstructorPass.php │   │   │   └── ValidFunctionNamePass.php │   │   ├── CodeCleaner.php │   │   ├── Command │   │   │   ├── BufferCommand.php │   │   │   ├── ClearCommand.php │   │   │   ├── CodeArgumentParser.php │   │   │   ├── Command.php │   │   │   ├── DocCommand.php │   │   │   ├── DumpCommand.php │   │   │   ├── EditCommand.php │   │   │   ├── ExitCommand.php │   │   │   ├── HelpCommand.php │   │   │   ├── HistoryCommand.php │   │   │   ├── ListCommand │   │   │   │   ├── ClassConstantEnumerator.php │   │   │   │   ├── ClassEnumerator.php │   │   │   │   ├── ConstantEnumerator.php │   │   │   │   ├── Enumerator.php │   │   │   │   ├── FunctionEnumerator.php │   │   │   │   ├── GlobalVariableEnumerator.php │   │   │   │   ├── MethodEnumerator.php │   │   │   │   ├── PropertyEnumerator.php │   │   │   │   └── VariableEnumerator.php │   │   │   ├── ListCommand.php │   │   │   ├── ParseCommand.php │   │   │   ├── PsyVersionCommand.php │   │   │   ├── ReflectingCommand.php │   │   │   ├── ShowCommand.php │   │   │   ├── SudoCommand.php │   │   │   ├── ThrowUpCommand.php │   │   │   ├── TimeitCommand │   │   │   │   └── TimeitVisitor.php │   │   │   ├── TimeitCommand.php │   │   │   ├── TraceCommand.php │   │   │   ├── WhereamiCommand.php │   │   │   └── WtfCommand.php │   │   ├── ConfigPaths.php │   │   ├── Configuration.php │   │   ├── Context.php │   │   ├── ContextAware.php │   │   ├── EnvInterface.php │   │   ├── Exception │   │   │   ├── BreakException.php │   │   │   ├── DeprecatedException.php │   │   │   ├── ErrorException.php │   │   │   ├── Exception.php │   │   │   ├── FatalErrorException.php │   │   │   ├── ParseErrorException.php │   │   │   ├── RuntimeException.php │   │   │   ├── ThrowUpException.php │   │   │   └── UnexpectedTargetException.php │   │   ├── ExecutionClosure.php │   │   ├── ExecutionLoop │   │   │   ├── AbstractListener.php │   │   │   ├── Listener.php │   │   │   ├── ProcessForker.php │   │   │   └── RunkitReloader.php │   │   ├── ExecutionLoopClosure.php │   │   ├── Formatter │   │   │   ├── CodeFormatter.php │   │   │   ├── DocblockFormatter.php │   │   │   ├── ReflectorFormatter.php │   │   │   ├── SignatureFormatter.php │   │   │   └── TraceFormatter.php │   │   ├── Input │   │   │   ├── CodeArgument.php │   │   │   ├── FilterOptions.php │   │   │   ├── ShellInput.php │   │   │   └── SilentInput.php │   │   ├── Output │   │   │   ├── OutputPager.php │   │   │   ├── PassthruPager.php │   │   │   ├── ProcOutputPager.php │   │   │   ├── ShellOutput.php │   │   │   └── Theme.php │   │   ├── ParserFactory.php │   │   ├── Readline │   │   │   ├── GNUReadline.php │   │   │   ├── Hoa │   │   │   │   ├── Autocompleter.php │   │   │   │   ├── AutocompleterAggregate.php │   │   │   │   ├── AutocompleterPath.php │   │   │   │   ├── AutocompleterWord.php │   │   │   │   ├── Console.php │   │   │   │   ├── ConsoleCursor.php │   │   │   │   ├── ConsoleException.php │   │   │   │   ├── ConsoleInput.php │   │   │   │   ├── ConsoleOutput.php │   │   │   │   ├── ConsoleProcessus.php │   │   │   │   ├── ConsoleTput.php │   │   │   │   ├── ConsoleWindow.php │   │   │   │   ├── Event.php │   │   │   │   ├── EventBucket.php │   │   │   │   ├── EventException.php │   │   │   │   ├── EventListenable.php │   │   │   │   ├── EventListener.php │   │   │   │   ├── EventListens.php │   │   │   │   ├── EventSource.php │   │   │   │   ├── Exception.php │   │   │   │   ├── ExceptionIdle.php │   │   │   │   ├── File.php │   │   │   │   ├── FileDirectory.php │   │   │   │   ├── FileDoesNotExistException.php │   │   │   │   ├── FileException.php │   │   │   │   ├── FileFinder.php │   │   │   │   ├── FileGeneric.php │   │   │   │   ├── FileLink.php │   │   │   │   ├── FileLinkRead.php │   │   │   │   ├── FileLinkReadWrite.php │   │   │   │   ├── FileRead.php │   │   │   │   ├── FileReadWrite.php │   │   │   │   ├── IStream.php │   │   │   │   ├── IteratorFileSystem.php │   │   │   │   ├── IteratorRecursiveDirectory.php │   │   │   │   ├── IteratorSplFileInfo.php │   │   │   │   ├── Protocol.php │   │   │   │   ├── ProtocolException.php │   │   │   │   ├── ProtocolNode.php │   │   │   │   ├── ProtocolNodeLibrary.php │   │   │   │   ├── ProtocolWrapper.php │   │   │   │   ├── Readline.php │   │   │   │   ├── Stream.php │   │   │   │   ├── StreamBufferable.php │   │   │   │   ├── StreamContext.php │   │   │   │   ├── StreamException.php │   │   │   │   ├── StreamIn.php │   │   │   │   ├── StreamLockable.php │   │   │   │   ├── StreamOut.php │   │   │   │   ├── StreamPathable.php │   │   │   │   ├── StreamPointable.php │   │   │   │   ├── StreamStatable.php │   │   │   │   ├── StreamTouchable.php │   │   │   │   ├── Terminfo │   │   │   │   │   ├── 77 │   │   │   │   │   │   └── windows-ansi │   │   │   │   │   └── 78 │   │   │   │   │   ├── xterm │   │   │   │   │   └── xterm-256color │   │   │   │   ├── Ustring.php │   │   │   │   └── Xcallable.php │   │   │   ├── Libedit.php │   │   │   ├── Readline.php │   │   │   ├── Transient.php │   │   │   └── Userland.php │   │   ├── Reflection │   │   │   ├── ReflectionConstant.php │   │   │   ├── ReflectionLanguageConstruct.php │   │   │   ├── ReflectionLanguageConstructParameter.php │   │   │   └── ReflectionNamespace.php │   │   ├── Shell.php │   │   ├── Sudo │   │   │   └── SudoVisitor.php │   │   ├── Sudo.php │   │   ├── SuperglobalsEnv.php │   │   ├── SystemEnv.php │   │   ├── TabCompletion │   │   │   ├── AutoCompleter.php │   │   │   └── Matcher │   │   │   ├── AbstractContextAwareMatcher.php │   │   │   ├── AbstractDefaultParametersMatcher.php │   │   │   ├── AbstractMatcher.php │   │   │   ├── ClassAttributesMatcher.php │   │   │   ├── ClassMethodDefaultParametersMatcher.php │   │   │   ├── ClassMethodsMatcher.php │   │   │   ├── ClassNamesMatcher.php │   │   │   ├── CommandsMatcher.php │   │   │   ├── ConstantsMatcher.php │   │   │   ├── FunctionDefaultParametersMatcher.php │   │   │   ├── FunctionsMatcher.php │   │   │   ├── KeywordsMatcher.php │   │   │   ├── MongoClientMatcher.php │   │   │   ├── MongoDatabaseMatcher.php │   │   │   ├── ObjectAttributesMatcher.php │   │   │   ├── ObjectMethodDefaultParametersMatcher.php │   │   │   ├── ObjectMethodsMatcher.php │   │   │   └── VariablesMatcher.php │   │   ├── Util │   │   │   ├── Docblock.php │   │   │   ├── Json.php │   │   │   ├── Mirror.php │   │   │   └── Str.php │   │   ├── VarDumper │   │   │   ├── Cloner.php │   │   │   ├── Dumper.php │   │   │   ├── Presenter.php │   │   │   └── PresenterAware.php │   │   ├── VersionUpdater │   │   │   ├── Checker.php │   │   │   ├── Downloader │   │   │   │   ├── CurlDownloader.php │   │   │   │   ├── Factory.php │   │   │   │   └── FileDownloader.php │   │   │   ├── Downloader.php │   │   │   ├── GitHubChecker.php │   │   │   ├── Installer.php │   │   │   ├── IntervalChecker.php │   │   │   ├── NoopChecker.php │   │   │   └── SelfUpdate.php │   │   └── functions.php │   ├── ralouphie │   │   └── getallheaders │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   └── getallheaders.php │   ├── ramsey │   │   ├── collection │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── AbstractArray.php │   │   │   ├── AbstractCollection.php │   │   │   ├── AbstractSet.php │   │   │   ├── ArrayInterface.php │   │   │   ├── Collection.php │   │   │   ├── CollectionInterface.php │   │   │   ├── DoubleEndedQueue.php │   │   │   ├── DoubleEndedQueueInterface.php │   │   │   ├── Exception │   │   │   │   ├── CollectionException.php │   │   │   │   ├── CollectionMismatchException.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── InvalidPropertyOrMethod.php │   │   │   │   ├── NoSuchElementException.php │   │   │   │   ├── OutOfBoundsException.php │   │   │   │   └── UnsupportedOperationException.php │   │   │   ├── GenericArray.php │   │   │   ├── Map │   │   │   │   ├── AbstractMap.php │   │   │   │   ├── AbstractTypedMap.php │   │   │   │   ├── AssociativeArrayMap.php │   │   │   │   ├── MapInterface.php │   │   │   │   ├── NamedParameterMap.php │   │   │   │   ├── TypedMap.php │   │   │   │   └── TypedMapInterface.php │   │   │   ├── Queue.php │   │   │   ├── QueueInterface.php │   │   │   ├── Set.php │   │   │   ├── Sort.php │   │   │   └── Tool │   │   │   ├── TypeTrait.php │   │   │   ├── ValueExtractorTrait.php │   │   │   └── ValueToStringTrait.php │   │   └── uuid │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   ├── BinaryUtils.php │   │   ├── Builder │   │   │   ├── BuilderCollection.php │   │   │   ├── DefaultUuidBuilder.php │   │   │   ├── DegradedUuidBuilder.php │   │   │   ├── FallbackBuilder.php │   │   │   └── UuidBuilderInterface.php │   │   ├── Codec │   │   │   ├── CodecInterface.php │   │   │   ├── GuidStringCodec.php │   │   │   ├── OrderedTimeCodec.php │   │   │   ├── StringCodec.php │   │   │   ├── TimestampFirstCombCodec.php │   │   │   └── TimestampLastCombCodec.php │   │   ├── Converter │   │   │   ├── Number │   │   │   │   ├── BigNumberConverter.php │   │   │   │   ├── DegradedNumberConverter.php │   │   │   │   └── GenericNumberConverter.php │   │   │   ├── NumberConverterInterface.php │   │   │   ├── Time │   │   │   │   ├── BigNumberTimeConverter.php │   │   │   │   ├── DegradedTimeConverter.php │   │   │   │   ├── GenericTimeConverter.php │   │   │   │   ├── PhpTimeConverter.php │   │   │   │   └── UnixTimeConverter.php │   │   │   └── TimeConverterInterface.php │   │   ├── DegradedUuid.php │   │   ├── DeprecatedUuidInterface.php │   │   ├── DeprecatedUuidMethodsTrait.php │   │   ├── Exception │   │   │   ├── BuilderNotFoundException.php │   │   │   ├── DateTimeException.php │   │   │   ├── DceSecurityException.php │   │   │   ├── InvalidArgumentException.php │   │   │   ├── InvalidBytesException.php │   │   │   ├── InvalidUuidStringException.php │   │   │   ├── NameException.php │   │   │   ├── NodeException.php │   │   │   ├── RandomSourceException.php │   │   │   ├── TimeSourceException.php │   │   │   ├── UnableToBuildUuidException.php │   │   │   ├── UnsupportedOperationException.php │   │   │   └── UuidExceptionInterface.php │   │   ├── FeatureSet.php │   │   ├── Fields │   │   │   ├── FieldsInterface.php │   │   │   └── SerializableFieldsTrait.php │   │   ├── Generator │   │   │   ├── CombGenerator.php │   │   │   ├── DceSecurityGenerator.php │   │   │   ├── DceSecurityGeneratorInterface.php │   │   │   ├── DefaultNameGenerator.php │   │   │   ├── DefaultTimeGenerator.php │   │   │   ├── NameGeneratorFactory.php │   │   │   ├── NameGeneratorInterface.php │   │   │   ├── PeclUuidNameGenerator.php │   │   │   ├── PeclUuidRandomGenerator.php │   │   │   ├── PeclUuidTimeGenerator.php │   │   │   ├── RandomBytesGenerator.php │   │   │   ├── RandomGeneratorFactory.php │   │   │   ├── RandomGeneratorInterface.php │   │   │   ├── RandomLibAdapter.php │   │   │   ├── TimeGeneratorFactory.php │   │   │   ├── TimeGeneratorInterface.php │   │   │   └── UnixTimeGenerator.php │   │   ├── Guid │   │   │   ├── Fields.php │   │   │   ├── Guid.php │   │   │   └── GuidBuilder.php │   │   ├── Lazy │   │   │   └── LazyUuidFromString.php │   │   ├── Math │   │   │   ├── BrickMathCalculator.php │   │   │   ├── CalculatorInterface.php │   │   │   └── RoundingMode.php │   │   ├── Nonstandard │   │   │   ├── Fields.php │   │   │   ├── Uuid.php │   │   │   ├── UuidBuilder.php │   │   │   └── UuidV6.php │   │   ├── Provider │   │   │   ├── Dce │   │   │   │   └── SystemDceSecurityProvider.php │   │   │   ├── DceSecurityProviderInterface.php │   │   │   ├── Node │   │   │   │   ├── FallbackNodeProvider.php │   │   │   │   ├── NodeProviderCollection.php │   │   │   │   ├── RandomNodeProvider.php │   │   │   │   ├── StaticNodeProvider.php │   │   │   │   └── SystemNodeProvider.php │   │   │   ├── NodeProviderInterface.php │   │   │   ├── Time │   │   │   │   ├── FixedTimeProvider.php │   │   │   │   └── SystemTimeProvider.php │   │   │   └── TimeProviderInterface.php │   │   ├── Rfc4122 │   │   │   ├── Fields.php │   │   │   ├── FieldsInterface.php │   │   │   ├── MaxTrait.php │   │   │   ├── MaxUuid.php │   │   │   ├── NilTrait.php │   │   │   ├── NilUuid.php │   │   │   ├── TimeTrait.php │   │   │   ├── UuidBuilder.php │   │   │   ├── UuidInterface.php │   │   │   ├── UuidV1.php │   │   │   ├── UuidV2.php │   │   │   ├── UuidV3.php │   │   │   ├── UuidV4.php │   │   │   ├── UuidV5.php │   │   │   ├── UuidV6.php │   │   │   ├── UuidV7.php │   │   │   ├── UuidV8.php │   │   │   ├── Validator.php │   │   │   ├── VariantTrait.php │   │   │   └── VersionTrait.php │   │   ├── Type │   │   │   ├── Decimal.php │   │   │   ├── Hexadecimal.php │   │   │   ├── Integer.php │   │   │   ├── NumberInterface.php │   │   │   ├── Time.php │   │   │   └── TypeInterface.php │   │   ├── Uuid.php │   │   ├── UuidFactory.php │   │   ├── UuidFactoryInterface.php │   │   ├── UuidInterface.php │   │   ├── Validator │   │   │   ├── GenericValidator.php │   │   │   └── ValidatorInterface.php │   │   └── functions.php │   ├── ryangjchandler │   │   └── blade-capture-directive │   │   ├── CHANGELOG.md │   │   ├── LICENSE.md │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   ├── BladeCaptureDirective.php │   │   └── BladeCaptureDirectiveServiceProvider.php │   ├── sebastian │   │   ├── cli-parser │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Parser.php │   │   │   └── exceptions │   │   │   ├── AmbiguousOptionException.php │   │   │   ├── Exception.php │   │   │   ├── OptionDoesNotAllowArgumentException.php │   │   │   ├── RequiredOptionArgumentMissingException.php │   │   │   └── UnknownOptionException.php │   │   ├── code-unit │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── ClassMethodUnit.php │   │   │   ├── ClassUnit.php │   │   │   ├── CodeUnit.php │   │   │   ├── CodeUnitCollection.php │   │   │   ├── CodeUnitCollectionIterator.php │   │   │   ├── FileUnit.php │   │   │   ├── FunctionUnit.php │   │   │   ├── InterfaceMethodUnit.php │   │   │   ├── InterfaceUnit.php │   │   │   ├── Mapper.php │   │   │   ├── TraitMethodUnit.php │   │   │   ├── TraitUnit.php │   │   │   └── exceptions │   │   │   ├── Exception.php │   │   │   ├── InvalidCodeUnitException.php │   │   │   ├── NoTraitException.php │   │   │   └── ReflectionException.php │   │   ├── code-unit-reverse-lookup │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   └── Wizard.php │   │   ├── comparator │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── ArrayComparator.php │   │   │   ├── Comparator.php │   │   │   ├── ComparisonFailure.php │   │   │   ├── DOMNodeComparator.php │   │   │   ├── DateTimeComparator.php │   │   │   ├── EnumerationComparator.php │   │   │   ├── ExceptionComparator.php │   │   │   ├── Factory.php │   │   │   ├── MockObjectComparator.php │   │   │   ├── NumberComparator.php │   │   │   ├── NumericComparator.php │   │   │   ├── ObjectComparator.php │   │   │   ├── ResourceComparator.php │   │   │   ├── ScalarComparator.php │   │   │   ├── SplObjectStorageComparator.php │   │   │   ├── TypeComparator.php │   │   │   └── exceptions │   │   │   ├── Exception.php │   │   │   └── RuntimeException.php │   │   ├── complexity │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Calculator.php │   │   │   ├── Complexity │   │   │   │   ├── Complexity.php │   │   │   │   ├── ComplexityCollection.php │   │   │   │   └── ComplexityCollectionIterator.php │   │   │   ├── Exception │   │   │   │   ├── Exception.php │   │   │   │   └── RuntimeException.php │   │   │   └── Visitor │   │   │   ├── ComplexityCalculatingVisitor.php │   │   │   └── CyclomaticComplexityCalculatingVisitor.php │   │   ├── diff │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Chunk.php │   │   │   ├── Diff.php │   │   │   ├── Differ.php │   │   │   ├── Exception │   │   │   │   ├── ConfigurationException.php │   │   │   │   ├── Exception.php │   │   │   │   └── InvalidArgumentException.php │   │   │   ├── Line.php │   │   │   ├── LongestCommonSubsequenceCalculator.php │   │   │   ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │   │   │   ├── Output │   │   │   │   ├── AbstractChunkOutputBuilder.php │   │   │   │   ├── DiffOnlyOutputBuilder.php │   │   │   │   ├── DiffOutputBuilderInterface.php │   │   │   │   ├── StrictUnifiedDiffOutputBuilder.php │   │   │   │   └── UnifiedDiffOutputBuilder.php │   │   │   ├── Parser.php │   │   │   └── TimeEfficientLongestCommonSubsequenceCalculator.php │   │   ├── environment │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Console.php │   │   │   └── Runtime.php │   │   ├── exporter │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   └── Exporter.php │   │   ├── global-state │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── CodeExporter.php │   │   │   ├── ExcludeList.php │   │   │   ├── Restorer.php │   │   │   ├── Snapshot.php │   │   │   └── exceptions │   │   │   ├── Exception.php │   │   │   └── RuntimeException.php │   │   ├── lines-of-code │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── Counter.php │   │   │   ├── Exception │   │   │   │   ├── Exception.php │   │   │   │   ├── IllogicalValuesException.php │   │   │   │   ├── NegativeValueException.php │   │   │   │   └── RuntimeException.php │   │   │   ├── LineCountingVisitor.php │   │   │   └── LinesOfCode.php │   │   ├── object-enumerator │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   └── Enumerator.php │   │   ├── object-reflector │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   └── ObjectReflector.php │   │   ├── recursion-context │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   └── Context.php │   │   ├── type │   │   │   ├── ChangeLog.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   ├── composer.json │   │   │   ├── infection.json │   │   │   └── src │   │   │   ├── Parameter.php │   │   │   ├── ReflectionMapper.php │   │   │   ├── TypeName.php │   │   │   ├── exception │   │   │   │   ├── Exception.php │   │   │   │   └── RuntimeException.php │   │   │   └── type │   │   │   ├── CallableType.php │   │   │   ├── FalseType.php │   │   │   ├── GenericObjectType.php │   │   │   ├── IntersectionType.php │   │   │   ├── IterableType.php │   │   │   ├── MixedType.php │   │   │   ├── NeverType.php │   │   │   ├── NullType.php │   │   │   ├── ObjectType.php │   │   │   ├── SimpleType.php │   │   │   ├── StaticType.php │   │   │   ├── TrueType.php │   │   │   ├── Type.php │   │   │   ├── UnionType.php │   │   │   ├── UnknownType.php │   │   │   └── VoidType.php │   │   └── version │   │   ├── ChangeLog.md │   │   ├── LICENSE │   │   ├── README.md │   │   ├── SECURITY.md │   │   ├── composer.json │   │   └── src │   │   └── Version.php │   ├── spatie │   │   ├── color │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── src │   │   │   ├── CIELab.php │   │   │   ├── Cmyk.php │   │   │   ├── Color.php │   │   │   ├── Contrast.php │   │   │   ├── Convert.php │   │   │   ├── Distance.php │   │   │   ├── Exceptions │   │   │   │   └── InvalidColorValue.php │   │   │   ├── Factory.php │   │   │   ├── Hex.php │   │   │   ├── HsPatterns.php │   │   │   ├── Hsb.php │   │   │   ├── Hsl.php │   │   │   ├── Hsla.php │   │   │   ├── Named.php │   │   │   ├── Names.php │   │   │   ├── Rgb.php │   │   │   ├── Rgba.php │   │   │   ├── Validate.php │   │   │   └── Xyz.php │   │   ├── invade │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   ├── phpstan-baseline.neon │   │   │   ├── phpstan.neon.dist │   │   │   └── src │   │   │   ├── Invader.php │   │   │   ├── StaticInvader.php │   │   │   └── functions.php │   │   └── laravel-package-tools │   │   ├── LICENSE.md │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   ├── Commands │   │   │   ├── Concerns │   │   │   │   ├── AskToRunMigrations.php │   │   │   │   ├── AskToStarRepoOnGitHub.php │   │   │   │   ├── PublishesResources.php │   │   │   │   ├── SupportsServiceProviderInApp.php │   │   │   │   └── SupportsStartWithEndWith.php │   │   │   └── InstallCommand.php │   │   ├── Concerns │   │   │   ├── Package │   │   │   │   ├── HasAssets.php │   │   │   │   ├── HasBladeComponents.php │   │   │   │   ├── HasCommands.php │   │   │   │   ├── HasConfigs.php │   │   │   │   ├── HasInertia.php │   │   │   │   ├── HasInstallCommand.php │   │   │   │   ├── HasMigrations.php │   │   │   │   ├── HasRoutes.php │   │   │   │   ├── HasServiceProviders.php │   │   │   │   ├── HasTranslations.php │   │   │   │   ├── HasViewComposers.php │   │   │   │   ├── HasViewSharedData.php │   │   │   │   └── HasViews.php │   │   │   └── PackageServiceProvider │   │   │   ├── ProcessAssets.php │   │   │   ├── ProcessBladeComponents.php │   │   │   ├── ProcessCommands.php │   │   │   ├── ProcessConfigs.php │   │   │   ├── ProcessInertia.php │   │   │   ├── ProcessMigrations.php │   │   │   ├── ProcessRoutes.php │   │   │   ├── ProcessServiceProviders.php │   │   │   ├── ProcessTranslations.php │   │   │   ├── ProcessViewComposers.php │   │   │   ├── ProcessViewSharedData.php │   │   │   └── ProcessViews.php │   │   ├── Exceptions │   │   │   └── InvalidPackage.php │   │   ├── Package.php │   │   └── PackageServiceProvider.php │   ├── staabm │   │   └── side-effects-detector │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   └── lib │   │   ├── SideEffect.php │   │   ├── SideEffectsDetector.php │   │   └── functionMetadata.php │   ├── symfony │   │   ├── clock │   │   │   ├── CHANGELOG.md │   │   │   ├── Clock.php │   │   │   ├── ClockAwareTrait.php │   │   │   ├── ClockInterface.php │   │   │   ├── DatePoint.php │   │   │   ├── LICENSE │   │   │   ├── MockClock.php │   │   │   ├── MonotonicClock.php │   │   │   ├── NativeClock.php │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   └── now.php │   │   │   ├── Test │   │   │   │   └── ClockSensitiveTrait.php │   │   │   └── composer.json │   │   ├── console │   │   │   ├── Application.php │   │   │   ├── Attribute │   │   │   │   ├── Argument.php │   │   │   │   ├── AsCommand.php │   │   │   │   └── Option.php │   │   │   ├── CHANGELOG.md │   │   │   ├── CI │   │   │   │   └── GithubActionReporter.php │   │   │   ├── Color.php │   │   │   ├── Command │   │   │   │   ├── Command.php │   │   │   │   ├── CompleteCommand.php │   │   │   │   ├── DumpCompletionCommand.php │   │   │   │   ├── HelpCommand.php │   │   │   │   ├── InvokableCommand.php │   │   │   │   ├── LazyCommand.php │   │   │   │   ├── ListCommand.php │   │   │   │   ├── LockableTrait.php │   │   │   │   ├── SignalableCommandInterface.php │   │   │   │   └── TraceableCommand.php │   │   │   ├── CommandLoader │   │   │   │   ├── CommandLoaderInterface.php │   │   │   │   ├── ContainerCommandLoader.php │   │   │   │   └── FactoryCommandLoader.php │   │   │   ├── Completion │   │   │   │   ├── CompletionInput.php │   │   │   │   ├── CompletionSuggestions.php │   │   │   │   ├── Output │   │   │   │   │   ├── BashCompletionOutput.php │   │   │   │   │   ├── CompletionOutputInterface.php │   │   │   │   │   ├── FishCompletionOutput.php │   │   │   │   │   └── ZshCompletionOutput.php │   │   │   │   └── Suggestion.php │   │   │   ├── ConsoleEvents.php │   │   │   ├── Cursor.php │   │   │   ├── DataCollector │   │   │   │   └── CommandDataCollector.php │   │   │   ├── Debug │   │   │   │   └── CliRequest.php │   │   │   ├── DependencyInjection │   │   │   │   └── AddConsoleCommandPass.php │   │   │   ├── Descriptor │   │   │   │   ├── ApplicationDescription.php │   │   │   │   ├── Descriptor.php │   │   │   │   ├── DescriptorInterface.php │   │   │   │   ├── JsonDescriptor.php │   │   │   │   ├── MarkdownDescriptor.php │   │   │   │   ├── ReStructuredTextDescriptor.php │   │   │   │   ├── TextDescriptor.php │   │   │   │   └── XmlDescriptor.php │   │   │   ├── Event │   │   │   │   ├── ConsoleAlarmEvent.php │   │   │   │   ├── ConsoleCommandEvent.php │   │   │   │   ├── ConsoleErrorEvent.php │   │   │   │   ├── ConsoleEvent.php │   │   │   │   ├── ConsoleSignalEvent.php │   │   │   │   └── ConsoleTerminateEvent.php │   │   │   ├── EventListener │   │   │   │   └── ErrorListener.php │   │   │   ├── Exception │   │   │   │   ├── CommandNotFoundException.php │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── InvalidOptionException.php │   │   │   │   ├── LogicException.php │   │   │   │   ├── MissingInputException.php │   │   │   │   ├── NamespaceNotFoundException.php │   │   │   │   ├── RunCommandFailedException.php │   │   │   │   └── RuntimeException.php │   │   │   ├── Formatter │   │   │   │   ├── NullOutputFormatter.php │   │   │   │   ├── NullOutputFormatterStyle.php │   │   │   │   ├── OutputFormatter.php │   │   │   │   ├── OutputFormatterInterface.php │   │   │   │   ├── OutputFormatterStyle.php │   │   │   │   ├── OutputFormatterStyleInterface.php │   │   │   │   ├── OutputFormatterStyleStack.php │   │   │   │   └── WrappableOutputFormatterInterface.php │   │   │   ├── Helper │   │   │   │   ├── DebugFormatterHelper.php │   │   │   │   ├── DescriptorHelper.php │   │   │   │   ├── Dumper.php │   │   │   │   ├── FormatterHelper.php │   │   │   │   ├── Helper.php │   │   │   │   ├── HelperInterface.php │   │   │   │   ├── HelperSet.php │   │   │   │   ├── InputAwareHelper.php │   │   │   │   ├── OutputWrapper.php │   │   │   │   ├── ProcessHelper.php │   │   │   │   ├── ProgressBar.php │   │   │   │   ├── ProgressIndicator.php │   │   │   │   ├── QuestionHelper.php │   │   │   │   ├── SymfonyQuestionHelper.php │   │   │   │   ├── Table.php │   │   │   │   ├── TableCell.php │   │   │   │   ├── TableCellStyle.php │   │   │   │   ├── TableRows.php │   │   │   │   ├── TableSeparator.php │   │   │   │   ├── TableStyle.php │   │   │   │   ├── TreeHelper.php │   │   │   │   ├── TreeNode.php │   │   │   │   └── TreeStyle.php │   │   │   ├── Input │   │   │   │   ├── ArgvInput.php │   │   │   │   ├── ArrayInput.php │   │   │   │   ├── Input.php │   │   │   │   ├── InputArgument.php │   │   │   │   ├── InputAwareInterface.php │   │   │   │   ├── InputDefinition.php │   │   │   │   ├── InputInterface.php │   │   │   │   ├── InputOption.php │   │   │   │   ├── StreamableInputInterface.php │   │   │   │   └── StringInput.php │   │   │   ├── LICENSE │   │   │   ├── Logger │   │   │   │   └── ConsoleLogger.php │   │   │   ├── Messenger │   │   │   │   ├── RunCommandContext.php │   │   │   │   ├── RunCommandMessage.php │   │   │   │   └── RunCommandMessageHandler.php │   │   │   ├── Output │   │   │   │   ├── AnsiColorMode.php │   │   │   │   ├── BufferedOutput.php │   │   │   │   ├── ConsoleOutput.php │   │   │   │   ├── ConsoleOutputInterface.php │   │   │   │   ├── ConsoleSectionOutput.php │   │   │   │   ├── NullOutput.php │   │   │   │   ├── Output.php │   │   │   │   ├── OutputInterface.php │   │   │   │   ├── StreamOutput.php │   │   │   │   └── TrimmedBufferOutput.php │   │   │   ├── Question │   │   │   │   ├── ChoiceQuestion.php │   │   │   │   ├── ConfirmationQuestion.php │   │   │   │   └── Question.php │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   ├── bin │   │   │   │   │   └── hiddeninput.exe │   │   │   │   ├── completion.bash │   │   │   │   ├── completion.fish │   │   │   │   └── completion.zsh │   │   │   ├── SignalRegistry │   │   │   │   ├── SignalMap.php │   │   │   │   └── SignalRegistry.php │   │   │   ├── SingleCommandApplication.php │   │   │   ├── Style │   │   │   │   ├── OutputStyle.php │   │   │   │   ├── StyleInterface.php │   │   │   │   └── SymfonyStyle.php │   │   │   ├── Terminal.php │   │   │   ├── Tester │   │   │   │   ├── ApplicationTester.php │   │   │   │   ├── CommandCompletionTester.php │   │   │   │   ├── CommandTester.php │   │   │   │   ├── Constraint │   │   │   │   │   └── CommandIsSuccessful.php │   │   │   │   └── TesterTrait.php │   │   │   └── composer.json │   │   ├── css-selector │   │   │   ├── CHANGELOG.md │   │   │   ├── CssSelectorConverter.php │   │   │   ├── Exception │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── ExpressionErrorException.php │   │   │   │   ├── InternalErrorException.php │   │   │   │   ├── ParseException.php │   │   │   │   └── SyntaxErrorException.php │   │   │   ├── LICENSE │   │   │   ├── Node │   │   │   │   ├── AbstractNode.php │   │   │   │   ├── AttributeNode.php │   │   │   │   ├── ClassNode.php │   │   │   │   ├── CombinedSelectorNode.php │   │   │   │   ├── ElementNode.php │   │   │   │   ├── FunctionNode.php │   │   │   │   ├── HashNode.php │   │   │   │   ├── MatchingNode.php │   │   │   │   ├── NegationNode.php │   │   │   │   ├── NodeInterface.php │   │   │   │   ├── PseudoNode.php │   │   │   │   ├── SelectorNode.php │   │   │   │   ├── Specificity.php │   │   │   │   └── SpecificityAdjustmentNode.php │   │   │   ├── Parser │   │   │   │   ├── Handler │   │   │   │   │   ├── CommentHandler.php │   │   │   │   │   ├── HandlerInterface.php │   │   │   │   │   ├── HashHandler.php │   │   │   │   │   ├── IdentifierHandler.php │   │   │   │   │   ├── NumberHandler.php │   │   │   │   │   ├── StringHandler.php │   │   │   │   │   └── WhitespaceHandler.php │   │   │   │   ├── Parser.php │   │   │   │   ├── ParserInterface.php │   │   │   │   ├── Reader.php │   │   │   │   ├── Shortcut │   │   │   │   │   ├── ClassParser.php │   │   │   │   │   ├── ElementParser.php │   │   │   │   │   ├── EmptyStringParser.php │   │   │   │   │   └── HashParser.php │   │   │   │   ├── Token.php │   │   │   │   ├── TokenStream.php │   │   │   │   └── Tokenizer │   │   │   │   ├── Tokenizer.php │   │   │   │   ├── TokenizerEscaping.php │   │   │   │   └── TokenizerPatterns.php │   │   │   ├── README.md │   │   │   ├── XPath │   │   │   │   ├── Extension │   │   │   │   │   ├── AbstractExtension.php │   │   │   │   │   ├── AttributeMatchingExtension.php │   │   │   │   │   ├── CombinationExtension.php │   │   │   │   │   ├── ExtensionInterface.php │   │   │   │   │   ├── FunctionExtension.php │   │   │   │   │   ├── HtmlExtension.php │   │   │   │   │   ├── NodeExtension.php │   │   │   │   │   └── PseudoClassExtension.php │   │   │   │   ├── Translator.php │   │   │   │   ├── TranslatorInterface.php │   │   │   │   └── XPathExpr.php │   │   │   └── composer.json │   │   ├── deprecation-contracts │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── composer.json │   │   │   └── function.php │   │   ├── error-handler │   │   │   ├── BufferingLogger.php │   │   │   ├── CHANGELOG.md │   │   │   ├── Command │   │   │   │   └── ErrorDumpCommand.php │   │   │   ├── Debug.php │   │   │   ├── DebugClassLoader.php │   │   │   ├── Error │   │   │   │   ├── ClassNotFoundError.php │   │   │   │   ├── FatalError.php │   │   │   │   ├── OutOfMemoryError.php │   │   │   │   ├── UndefinedFunctionError.php │   │   │   │   └── UndefinedMethodError.php │   │   │   ├── ErrorEnhancer │   │   │   │   ├── ClassNotFoundErrorEnhancer.php │   │   │   │   ├── ErrorEnhancerInterface.php │   │   │   │   ├── UndefinedFunctionErrorEnhancer.php │   │   │   │   └── UndefinedMethodErrorEnhancer.php │   │   │   ├── ErrorHandler.php │   │   │   ├── ErrorRenderer │   │   │   │   ├── CliErrorRenderer.php │   │   │   │   ├── ErrorRendererInterface.php │   │   │   │   ├── FileLinkFormatter.php │   │   │   │   ├── HtmlErrorRenderer.php │   │   │   │   └── SerializerErrorRenderer.php │   │   │   ├── Exception │   │   │   │   ├── FlattenException.php │   │   │   │   └── SilencedErrorContext.php │   │   │   ├── Internal │   │   │   │   └── TentativeTypes.php │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   ├── assets │   │   │   │   │   ├── css │   │   │   │   │   │   ├── error.css │   │   │   │   │   │   ├── exception.css │   │   │   │   │   │   └── exception_full.css │   │   │   │   │   ├── images │   │   │   │   │   │   ├── chevron-right.svg │   │   │   │   │   │   ├── favicon.png.base64 │   │   │   │   │   │   ├── icon-book.svg │   │   │   │   │   │   ├── icon-copy.svg │   │   │   │   │   │   ├── icon-minus-square-o.svg │   │   │   │   │   │   ├── icon-minus-square.svg │   │   │   │   │   │   ├── icon-plus-square-o.svg │   │   │   │   │   │   ├── icon-plus-square.svg │   │   │   │   │   │   ├── icon-support.svg │   │   │   │   │   │   ├── symfony-ghost.svg.php │   │   │   │   │   │   └── symfony-logo.svg │   │   │   │   │   └── js │   │   │   │   │   └── exception.js │   │   │   │   ├── bin │   │   │   │   │   ├── extract-tentative-return-types.php │   │   │   │   │   └── patch-type-declarations │   │   │   │   └── views │   │   │   │   ├── error.html.php │   │   │   │   ├── exception.html.php │   │   │   │   ├── exception_full.html.php │   │   │   │   ├── logs.html.php │   │   │   │   ├── trace.html.php │   │   │   │   ├── traces.html.php │   │   │   │   └── traces_text.html.php │   │   │   ├── ThrowableUtils.php │   │   │   └── composer.json │   │   ├── event-dispatcher │   │   │   ├── Attribute │   │   │   │   └── AsEventListener.php │   │   │   ├── CHANGELOG.md │   │   │   ├── Debug │   │   │   │   ├── TraceableEventDispatcher.php │   │   │   │   └── WrappedListener.php │   │   │   ├── DependencyInjection │   │   │   │   ├── AddEventAliasesPass.php │   │   │   │   └── RegisterListenersPass.php │   │   │   ├── EventDispatcher.php │   │   │   ├── EventDispatcherInterface.php │   │   │   ├── EventSubscriberInterface.php │   │   │   ├── GenericEvent.php │   │   │   ├── ImmutableEventDispatcher.php │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   └── composer.json │   │   ├── event-dispatcher-contracts │   │   │   ├── CHANGELOG.md │   │   │   ├── Event.php │   │   │   ├── EventDispatcherInterface.php │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   └── composer.json │   │   ├── finder │   │   │   ├── CHANGELOG.md │   │   │   ├── Comparator │   │   │   │   ├── Comparator.php │   │   │   │   ├── DateComparator.php │   │   │   │   └── NumberComparator.php │   │   │   ├── Exception │   │   │   │   ├── AccessDeniedException.php │   │   │   │   └── DirectoryNotFoundException.php │   │   │   ├── Finder.php │   │   │   ├── Gitignore.php │   │   │   ├── Glob.php │   │   │   ├── Iterator │   │   │   │   ├── CustomFilterIterator.php │   │   │   │   ├── DateRangeFilterIterator.php │   │   │   │   ├── DepthRangeFilterIterator.php │   │   │   │   ├── ExcludeDirectoryFilterIterator.php │   │   │   │   ├── FileTypeFilterIterator.php │   │   │   │   ├── FilecontentFilterIterator.php │   │   │   │   ├── FilenameFilterIterator.php │   │   │   │   ├── LazyIterator.php │   │   │   │   ├── MultiplePcreFilterIterator.php │   │   │   │   ├── PathFilterIterator.php │   │   │   │   ├── RecursiveDirectoryIterator.php │   │   │   │   ├── SizeRangeFilterIterator.php │   │   │   │   ├── SortableIterator.php │   │   │   │   └── VcsIgnoredFilterIterator.php │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SplFileInfo.php │   │   │   └── composer.json │   │   ├── html-sanitizer │   │   │   ├── CHANGELOG.md │   │   │   ├── HtmlSanitizer.php │   │   │   ├── HtmlSanitizerAction.php │   │   │   ├── HtmlSanitizerConfig.php │   │   │   ├── HtmlSanitizerInterface.php │   │   │   ├── LICENSE │   │   │   ├── Parser │   │   │   │   ├── MastermindsParser.php │   │   │   │   └── ParserInterface.php │   │   │   ├── README.md │   │   │   ├── Reference │   │   │   │   └── W3CReference.php │   │   │   ├── TextSanitizer │   │   │   │   ├── StringSanitizer.php │   │   │   │   └── UrlSanitizer.php │   │   │   ├── Visitor │   │   │   │   ├── AttributeSanitizer │   │   │   │   │   ├── AttributeSanitizerInterface.php │   │   │   │   │   └── UrlAttributeSanitizer.php │   │   │   │   ├── DomVisitor.php │   │   │   │   ├── Model │   │   │   │   │   └── Cursor.php │   │   │   │   └── Node │   │   │   │   ├── BlockedNode.php │   │   │   │   ├── DocumentNode.php │   │   │   │   ├── Node.php │   │   │   │   ├── NodeInterface.php │   │   │   │   └── TextNode.php │   │   │   └── composer.json │   │   ├── http-foundation │   │   │   ├── AcceptHeader.php │   │   │   ├── AcceptHeaderItem.php │   │   │   ├── BinaryFileResponse.php │   │   │   ├── CHANGELOG.md │   │   │   ├── ChainRequestMatcher.php │   │   │   ├── Cookie.php │   │   │   ├── EventStreamResponse.php │   │   │   ├── Exception │   │   │   │   ├── BadRequestException.php │   │   │   │   ├── ConflictingHeadersException.php │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── ExpiredSignedUriException.php │   │   │   │   ├── JsonException.php │   │   │   │   ├── LogicException.php │   │   │   │   ├── RequestExceptionInterface.php │   │   │   │   ├── SessionNotFoundException.php │   │   │   │   ├── SignedUriException.php │   │   │   │   ├── SuspiciousOperationException.php │   │   │   │   ├── UnexpectedValueException.php │   │   │   │   ├── UnsignedUriException.php │   │   │   │   └── UnverifiedSignedUriException.php │   │   │   ├── File │   │   │   │   ├── Exception │   │   │   │   │   ├── AccessDeniedException.php │   │   │   │   │   ├── CannotWriteFileException.php │   │   │   │   │   ├── ExtensionFileException.php │   │   │   │   │   ├── FileException.php │   │   │   │   │   ├── FileNotFoundException.php │   │   │   │   │   ├── FormSizeFileException.php │   │   │   │   │   ├── IniSizeFileException.php │   │   │   │   │   ├── NoFileException.php │   │   │   │   │   ├── NoTmpDirFileException.php │   │   │   │   │   ├── PartialFileException.php │   │   │   │   │   ├── UnexpectedTypeException.php │   │   │   │   │   └── UploadException.php │   │   │   │   ├── File.php │   │   │   │   ├── Stream.php │   │   │   │   └── UploadedFile.php │   │   │   ├── FileBag.php │   │   │   ├── HeaderBag.php │   │   │   ├── HeaderUtils.php │   │   │   ├── InputBag.php │   │   │   ├── IpUtils.php │   │   │   ├── JsonResponse.php │   │   │   ├── LICENSE │   │   │   ├── ParameterBag.php │   │   │   ├── README.md │   │   │   ├── RateLimiter │   │   │   │   ├── AbstractRequestRateLimiter.php │   │   │   │   ├── PeekableRequestRateLimiterInterface.php │   │   │   │   └── RequestRateLimiterInterface.php │   │   │   ├── RedirectResponse.php │   │   │   ├── Request.php │   │   │   ├── RequestMatcher │   │   │   │   ├── AttributesRequestMatcher.php │   │   │   │   ├── ExpressionRequestMatcher.php │   │   │   │   ├── HeaderRequestMatcher.php │   │   │   │   ├── HostRequestMatcher.php │   │   │   │   ├── IpsRequestMatcher.php │   │   │   │   ├── IsJsonRequestMatcher.php │   │   │   │   ├── MethodRequestMatcher.php │   │   │   │   ├── PathRequestMatcher.php │   │   │   │   ├── PortRequestMatcher.php │   │   │   │   ├── QueryParameterRequestMatcher.php │   │   │   │   └── SchemeRequestMatcher.php │   │   │   ├── RequestMatcherInterface.php │   │   │   ├── RequestStack.php │   │   │   ├── Response.php │   │   │   ├── ResponseHeaderBag.php │   │   │   ├── ServerBag.php │   │   │   ├── ServerEvent.php │   │   │   ├── Session │   │   │   │   ├── Attribute │   │   │   │   │   ├── AttributeBag.php │   │   │   │   │   └── AttributeBagInterface.php │   │   │   │   ├── Flash │   │   │   │   │   ├── AutoExpireFlashBag.php │   │   │   │   │   ├── FlashBag.php │   │   │   │   │   └── FlashBagInterface.php │   │   │   │   ├── FlashBagAwareSessionInterface.php │   │   │   │   ├── Session.php │   │   │   │   ├── SessionBagInterface.php │   │   │   │   ├── SessionBagProxy.php │   │   │   │   ├── SessionFactory.php │   │   │   │   ├── SessionFactoryInterface.php │   │   │   │   ├── SessionInterface.php │   │   │   │   ├── SessionUtils.php │   │   │   │   └── Storage │   │   │   │   ├── Handler │   │   │   │   │   ├── AbstractSessionHandler.php │   │   │   │   │   ├── IdentityMarshaller.php │   │   │   │   │   ├── MarshallingSessionHandler.php │   │   │   │   │   ├── MemcachedSessionHandler.php │   │   │   │   │   ├── MigratingSessionHandler.php │   │   │   │   │   ├── MongoDbSessionHandler.php │   │   │   │   │   ├── NativeFileSessionHandler.php │   │   │   │   │   ├── NullSessionHandler.php │   │   │   │   │   ├── PdoSessionHandler.php │   │   │   │   │   ├── RedisSessionHandler.php │   │   │   │   │   ├── SessionHandlerFactory.php │   │   │   │   │   └── StrictSessionHandler.php │   │   │   │   ├── MetadataBag.php │   │   │   │   ├── MockArraySessionStorage.php │   │   │   │   ├── MockFileSessionStorage.php │   │   │   │   ├── MockFileSessionStorageFactory.php │   │   │   │   ├── NativeSessionStorage.php │   │   │   │   ├── NativeSessionStorageFactory.php │   │   │   │   ├── PhpBridgeSessionStorage.php │   │   │   │   ├── PhpBridgeSessionStorageFactory.php │   │   │   │   ├── Proxy │   │   │   │   │   ├── AbstractProxy.php │   │   │   │   │   └── SessionHandlerProxy.php │   │   │   │   ├── SessionStorageFactoryInterface.php │   │   │   │   └── SessionStorageInterface.php │   │   │   ├── StreamedJsonResponse.php │   │   │   ├── StreamedResponse.php │   │   │   ├── Test │   │   │   │   └── Constraint │   │   │   │   ├── RequestAttributeValueSame.php │   │   │   │   ├── ResponseCookieValueSame.php │   │   │   │   ├── ResponseFormatSame.php │   │   │   │   ├── ResponseHasCookie.php │   │   │   │   ├── ResponseHasHeader.php │   │   │   │   ├── ResponseHeaderLocationSame.php │   │   │   │   ├── ResponseHeaderSame.php │   │   │   │   ├── ResponseIsRedirected.php │   │   │   │   ├── ResponseIsSuccessful.php │   │   │   │   ├── ResponseIsUnprocessable.php │   │   │   │   └── ResponseStatusCodeSame.php │   │   │   ├── UriSigner.php │   │   │   ├── UrlHelper.php │   │   │   └── composer.json │   │   ├── http-kernel │   │   │   ├── Attribute │   │   │   │   ├── AsController.php │   │   │   │   ├── AsTargetedValueResolver.php │   │   │   │   ├── Cache.php │   │   │   │   ├── MapDateTime.php │   │   │   │   ├── MapQueryParameter.php │   │   │   │   ├── MapQueryString.php │   │   │   │   ├── MapRequestPayload.php │   │   │   │   ├── MapUploadedFile.php │   │   │   │   ├── ValueResolver.php │   │   │   │   ├── WithHttpStatus.php │   │   │   │   └── WithLogLevel.php │   │   │   ├── Bundle │   │   │   │   ├── AbstractBundle.php │   │   │   │   ├── Bundle.php │   │   │   │   ├── BundleExtension.php │   │   │   │   └── BundleInterface.php │   │   │   ├── CHANGELOG.md │   │   │   ├── CacheClearer │   │   │   │   ├── CacheClearerInterface.php │   │   │   │   ├── ChainCacheClearer.php │   │   │   │   └── Psr6CacheClearer.php │   │   │   ├── CacheWarmer │   │   │   │   ├── CacheWarmer.php │   │   │   │   ├── CacheWarmerAggregate.php │   │   │   │   ├── CacheWarmerInterface.php │   │   │   │   └── WarmableInterface.php │   │   │   ├── Config │   │   │   │   └── FileLocator.php │   │   │   ├── Controller │   │   │   │   ├── ArgumentResolver │   │   │   │   │   ├── BackedEnumValueResolver.php │   │   │   │   │   ├── DateTimeValueResolver.php │   │   │   │   │   ├── DefaultValueResolver.php │   │   │   │   │   ├── NotTaggedControllerValueResolver.php │   │   │   │   │   ├── QueryParameterValueResolver.php │   │   │   │   │   ├── RequestAttributeValueResolver.php │   │   │   │   │   ├── RequestPayloadValueResolver.php │   │   │   │   │   ├── RequestValueResolver.php │   │   │   │   │   ├── ServiceValueResolver.php │   │   │   │   │   ├── SessionValueResolver.php │   │   │   │   │   ├── TraceableValueResolver.php │   │   │   │   │   ├── UidValueResolver.php │   │   │   │   │   └── VariadicValueResolver.php │   │   │   │   ├── ArgumentResolver.php │   │   │   │   ├── ArgumentResolverInterface.php │   │   │   │   ├── ContainerControllerResolver.php │   │   │   │   ├── ControllerReference.php │   │   │   │   ├── ControllerResolver.php │   │   │   │   ├── ControllerResolverInterface.php │   │   │   │   ├── ErrorController.php │   │   │   │   ├── TraceableArgumentResolver.php │   │   │   │   ├── TraceableControllerResolver.php │   │   │   │   └── ValueResolverInterface.php │   │   │   ├── ControllerMetadata │   │   │   │   ├── ArgumentMetadata.php │   │   │   │   ├── ArgumentMetadataFactory.php │   │   │   │   └── ArgumentMetadataFactoryInterface.php │   │   │   ├── DataCollector │   │   │   │   ├── AjaxDataCollector.php │   │   │   │   ├── ConfigDataCollector.php │   │   │   │   ├── DataCollector.php │   │   │   │   ├── DataCollectorInterface.php │   │   │   │   ├── DumpDataCollector.php │   │   │   │   ├── EventDataCollector.php │   │   │   │   ├── ExceptionDataCollector.php │   │   │   │   ├── LateDataCollectorInterface.php │   │   │   │   ├── LoggerDataCollector.php │   │   │   │   ├── MemoryDataCollector.php │   │   │   │   ├── RequestDataCollector.php │   │   │   │   ├── RouterDataCollector.php │   │   │   │   └── TimeDataCollector.php │   │   │   ├── Debug │   │   │   │   ├── ErrorHandlerConfigurator.php │   │   │   │   ├── TraceableEventDispatcher.php │   │   │   │   └── VirtualRequestStack.php │   │   │   ├── DependencyInjection │   │   │   │   ├── AddAnnotatedClassesToCachePass.php │   │   │   │   ├── ConfigurableExtension.php │   │   │   │   ├── ControllerArgumentValueResolverPass.php │   │   │   │   ├── Extension.php │   │   │   │   ├── FragmentRendererPass.php │   │   │   │   ├── LazyLoadingFragmentHandler.php │   │   │   │   ├── LoggerPass.php │   │   │   │   ├── MergeExtensionConfigurationPass.php │   │   │   │   ├── RegisterControllerArgumentLocatorsPass.php │   │   │   │   ├── RegisterLocaleAwareServicesPass.php │   │   │   │   ├── RemoveEmptyControllerArgumentLocatorsPass.php │   │   │   │   ├── ResettableServicePass.php │   │   │   │   ├── ServicesResetter.php │   │   │   │   └── ServicesResetterInterface.php │   │   │   ├── Event │   │   │   │   ├── ControllerArgumentsEvent.php │   │   │   │   ├── ControllerEvent.php │   │   │   │   ├── ExceptionEvent.php │   │   │   │   ├── FinishRequestEvent.php │   │   │   │   ├── KernelEvent.php │   │   │   │   ├── RequestEvent.php │   │   │   │   ├── ResponseEvent.php │   │   │   │   ├── TerminateEvent.php │   │   │   │   └── ViewEvent.php │   │   │   ├── EventListener │   │   │   │   ├── AbstractSessionListener.php │   │   │   │   ├── AddRequestFormatsListener.php │   │   │   │   ├── CacheAttributeListener.php │   │   │   │   ├── DebugHandlersListener.php │   │   │   │   ├── DisallowRobotsIndexingListener.php │   │   │   │   ├── DumpListener.php │   │   │   │   ├── ErrorListener.php │   │   │   │   ├── FragmentListener.php │   │   │   │   ├── LocaleAwareListener.php │   │   │   │   ├── LocaleListener.php │   │   │   │   ├── ProfilerListener.php │   │   │   │   ├── ResponseListener.php │   │   │   │   ├── RouterListener.php │   │   │   │   ├── SessionListener.php │   │   │   │   ├── SurrogateListener.php │   │   │   │   └── ValidateRequestListener.php │   │   │   ├── Exception │   │   │   │   ├── AccessDeniedHttpException.php │   │   │   │   ├── BadRequestHttpException.php │   │   │   │   ├── ConflictHttpException.php │   │   │   │   ├── ControllerDoesNotReturnResponseException.php │   │   │   │   ├── GoneHttpException.php │   │   │   │   ├── HttpException.php │   │   │   │   ├── HttpExceptionInterface.php │   │   │   │   ├── InvalidMetadataException.php │   │   │   │   ├── LengthRequiredHttpException.php │   │   │   │   ├── LockedHttpException.php │   │   │   │   ├── MethodNotAllowedHttpException.php │   │   │   │   ├── NearMissValueResolverException.php │   │   │   │   ├── NotAcceptableHttpException.php │   │   │   │   ├── NotFoundHttpException.php │   │   │   │   ├── PreconditionFailedHttpException.php │   │   │   │   ├── PreconditionRequiredHttpException.php │   │   │   │   ├── ResolverNotFoundException.php │   │   │   │   ├── ServiceUnavailableHttpException.php │   │   │   │   ├── TooManyRequestsHttpException.php │   │   │   │   ├── UnauthorizedHttpException.php │   │   │   │   ├── UnexpectedSessionUsageException.php │   │   │   │   ├── UnprocessableEntityHttpException.php │   │   │   │   └── UnsupportedMediaTypeHttpException.php │   │   │   ├── Fragment │   │   │   │   ├── AbstractSurrogateFragmentRenderer.php │   │   │   │   ├── EsiFragmentRenderer.php │   │   │   │   ├── FragmentHandler.php │   │   │   │   ├── FragmentRendererInterface.php │   │   │   │   ├── FragmentUriGenerator.php │   │   │   │   ├── FragmentUriGeneratorInterface.php │   │   │   │   ├── HIncludeFragmentRenderer.php │   │   │   │   ├── InlineFragmentRenderer.php │   │   │   │   ├── RoutableFragmentRenderer.php │   │   │   │   └── SsiFragmentRenderer.php │   │   │   ├── HttpCache │   │   │   │   ├── AbstractSurrogate.php │   │   │   │   ├── CacheWasLockedException.php │   │   │   │   ├── Esi.php │   │   │   │   ├── HttpCache.php │   │   │   │   ├── ResponseCacheStrategy.php │   │   │   │   ├── ResponseCacheStrategyInterface.php │   │   │   │   ├── Ssi.php │   │   │   │   ├── Store.php │   │   │   │   ├── StoreInterface.php │   │   │   │   ├── SubRequestHandler.php │   │   │   │   └── SurrogateInterface.php │   │   │   ├── HttpClientKernel.php │   │   │   ├── HttpKernel.php │   │   │   ├── HttpKernelBrowser.php │   │   │   ├── HttpKernelInterface.php │   │   │   ├── Kernel.php │   │   │   ├── KernelEvents.php │   │   │   ├── KernelInterface.php │   │   │   ├── LICENSE │   │   │   ├── Log │   │   │   │   ├── DebugLoggerConfigurator.php │   │   │   │   ├── DebugLoggerInterface.php │   │   │   │   └── Logger.php │   │   │   ├── Profiler │   │   │   │   ├── FileProfilerStorage.php │   │   │   │   ├── Profile.php │   │   │   │   ├── Profiler.php │   │   │   │   ├── ProfilerStateChecker.php │   │   │   │   └── ProfilerStorageInterface.php │   │   │   ├── README.md │   │   │   ├── RebootableInterface.php │   │   │   ├── Resources │   │   │   │   └── welcome.html.php │   │   │   ├── TerminableInterface.php │   │   │   └── composer.json │   │   ├── mailer │   │   │   ├── CHANGELOG.md │   │   │   ├── Command │   │   │   │   └── MailerTestCommand.php │   │   │   ├── DataCollector │   │   │   │   └── MessageDataCollector.php │   │   │   ├── DelayedEnvelope.php │   │   │   ├── Envelope.php │   │   │   ├── Event │   │   │   │   ├── FailedMessageEvent.php │   │   │   │   ├── MessageEvent.php │   │   │   │   ├── MessageEvents.php │   │   │   │   └── SentMessageEvent.php │   │   │   ├── EventListener │   │   │   │   ├── DkimSignedMessageListener.php │   │   │   │   ├── EnvelopeListener.php │   │   │   │   ├── MessageListener.php │   │   │   │   ├── MessageLoggerListener.php │   │   │   │   ├── MessengerTransportListener.php │   │   │   │   ├── SmimeCertificateRepositoryInterface.php │   │   │   │   ├── SmimeEncryptedMessageListener.php │   │   │   │   └── SmimeSignedMessageListener.php │   │   │   ├── Exception │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── HttpTransportException.php │   │   │   │   ├── IncompleteDsnException.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── LogicException.php │   │   │   │   ├── RuntimeException.php │   │   │   │   ├── TransportException.php │   │   │   │   ├── TransportExceptionInterface.php │   │   │   │   ├── UnexpectedResponseException.php │   │   │   │   └── UnsupportedSchemeException.php │   │   │   ├── Header │   │   │   │   ├── MetadataHeader.php │   │   │   │   └── TagHeader.php │   │   │   ├── LICENSE │   │   │   ├── Mailer.php │   │   │   ├── MailerInterface.php │   │   │   ├── Messenger │   │   │   │   ├── MessageHandler.php │   │   │   │   └── SendEmailMessage.php │   │   │   ├── README.md │   │   │   ├── SentMessage.php │   │   │   ├── Test │   │   │   │   ├── AbstractTransportFactoryTestCase.php │   │   │   │   ├── Constraint │   │   │   │   │   ├── EmailCount.php │   │   │   │   │   └── EmailIsQueued.php │   │   │   │   ├── IncompleteDsnTestTrait.php │   │   │   │   └── TransportFactoryTestCase.php │   │   │   ├── Transport │   │   │   │   ├── AbstractApiTransport.php │   │   │   │   ├── AbstractHttpTransport.php │   │   │   │   ├── AbstractTransport.php │   │   │   │   ├── AbstractTransportFactory.php │   │   │   │   ├── Dsn.php │   │   │   │   ├── FailoverTransport.php │   │   │   │   ├── NativeTransportFactory.php │   │   │   │   ├── NullTransport.php │   │   │   │   ├── NullTransportFactory.php │   │   │   │   ├── RoundRobinTransport.php │   │   │   │   ├── SendmailTransport.php │   │   │   │   ├── SendmailTransportFactory.php │   │   │   │   ├── Smtp │   │   │   │   │   ├── Auth │   │   │   │   │   │   ├── AuthenticatorInterface.php │   │   │   │   │   │   ├── CramMd5Authenticator.php │   │   │   │   │   │   ├── LoginAuthenticator.php │   │   │   │   │   │   ├── PlainAuthenticator.php │   │   │   │   │   │   └── XOAuth2Authenticator.php │   │   │   │   │   ├── EsmtpTransport.php │   │   │   │   │   ├── EsmtpTransportFactory.php │   │   │   │   │   ├── SmtpTransport.php │   │   │   │   │   └── Stream │   │   │   │   │   ├── AbstractStream.php │   │   │   │   │   ├── ProcessStream.php │   │   │   │   │   └── SocketStream.php │   │   │   │   ├── TransportFactoryInterface.php │   │   │   │   ├── TransportInterface.php │   │   │   │   └── Transports.php │   │   │   ├── Transport.php │   │   │   └── composer.json │   │   ├── mime │   │   │   ├── Address.php │   │   │   ├── BodyRendererInterface.php │   │   │   ├── CHANGELOG.md │   │   │   ├── CharacterStream.php │   │   │   ├── Crypto │   │   │   │   ├── DkimOptions.php │   │   │   │   ├── DkimSigner.php │   │   │   │   ├── SMime.php │   │   │   │   ├── SMimeEncrypter.php │   │   │   │   └── SMimeSigner.php │   │   │   ├── DependencyInjection │   │   │   │   └── AddMimeTypeGuesserPass.php │   │   │   ├── DraftEmail.php │   │   │   ├── Email.php │   │   │   ├── Encoder │   │   │   │   ├── AddressEncoderInterface.php │   │   │   │   ├── Base64ContentEncoder.php │   │   │   │   ├── Base64Encoder.php │   │   │   │   ├── Base64MimeHeaderEncoder.php │   │   │   │   ├── ContentEncoderInterface.php │   │   │   │   ├── EightBitContentEncoder.php │   │   │   │   ├── EncoderInterface.php │   │   │   │   ├── IdnAddressEncoder.php │   │   │   │   ├── MimeHeaderEncoderInterface.php │   │   │   │   ├── QpContentEncoder.php │   │   │   │   ├── QpEncoder.php │   │   │   │   ├── QpMimeHeaderEncoder.php │   │   │   │   └── Rfc2231Encoder.php │   │   │   ├── Exception │   │   │   │   ├── AddressEncoderException.php │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── LogicException.php │   │   │   │   ├── RfcComplianceException.php │   │   │   │   └── RuntimeException.php │   │   │   ├── FileBinaryMimeTypeGuesser.php │   │   │   ├── FileinfoMimeTypeGuesser.php │   │   │   ├── Header │   │   │   │   ├── AbstractHeader.php │   │   │   │   ├── DateHeader.php │   │   │   │   ├── HeaderInterface.php │   │   │   │   ├── Headers.php │   │   │   │   ├── IdentificationHeader.php │   │   │   │   ├── MailboxHeader.php │   │   │   │   ├── MailboxListHeader.php │   │   │   │   ├── ParameterizedHeader.php │   │   │   │   ├── PathHeader.php │   │   │   │   └── UnstructuredHeader.php │   │   │   ├── HtmlToTextConverter │   │   │   │   ├── DefaultHtmlToTextConverter.php │   │   │   │   ├── HtmlToTextConverterInterface.php │   │   │   │   └── LeagueHtmlToMarkdownConverter.php │   │   │   ├── LICENSE │   │   │   ├── Message.php │   │   │   ├── MessageConverter.php │   │   │   ├── MimeTypeGuesserInterface.php │   │   │   ├── MimeTypes.php │   │   │   ├── MimeTypesInterface.php │   │   │   ├── Part │   │   │   │   ├── AbstractMultipartPart.php │   │   │   │   ├── AbstractPart.php │   │   │   │   ├── DataPart.php │   │   │   │   ├── File.php │   │   │   │   ├── MessagePart.php │   │   │   │   ├── Multipart │   │   │   │   │   ├── AlternativePart.php │   │   │   │   │   ├── DigestPart.php │   │   │   │   │   ├── FormDataPart.php │   │   │   │   │   ├── MixedPart.php │   │   │   │   │   └── RelatedPart.php │   │   │   │   ├── SMimePart.php │   │   │   │   └── TextPart.php │   │   │   ├── README.md │   │   │   ├── RawMessage.php │   │   │   ├── Resources │   │   │   │   └── bin │   │   │   ├── Test │   │   │   │   └── Constraint │   │   │   │   ├── EmailAddressContains.php │   │   │   │   ├── EmailAttachmentCount.php │   │   │   │   ├── EmailHasHeader.php │   │   │   │   ├── EmailHeaderSame.php │   │   │   │   ├── EmailHtmlBodyContains.php │   │   │   │   ├── EmailSubjectContains.php │   │   │   │   └── EmailTextBodyContains.php │   │   │   └── composer.json │   │   ├── polyfill-ctype │   │   │   ├── Ctype.php │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── bootstrap.php │   │   │   ├── bootstrap80.php │   │   │   └── composer.json │   │   ├── polyfill-intl-grapheme │   │   │   ├── Grapheme.php │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── bootstrap.php │   │   │   ├── bootstrap80.php │   │   │   └── composer.json │   │   ├── polyfill-intl-idn │   │   │   ├── Idn.php │   │   │   ├── Info.php │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   └── unidata │   │   │   │   ├── DisallowedRanges.php │   │   │   │   ├── Regex.php │   │   │   │   ├── deviation.php │   │   │   │   ├── disallowed.php │   │   │   │   ├── disallowed_STD3_mapped.php │   │   │   │   ├── disallowed_STD3_valid.php │   │   │   │   ├── ignored.php │   │   │   │   ├── mapped.php │   │   │   │   └── virama.php │   │   │   ├── bootstrap.php │   │   │   ├── bootstrap80.php │   │   │   └── composer.json │   │   ├── polyfill-intl-normalizer │   │   │   ├── LICENSE │   │   │   ├── Normalizer.php │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   ├── stubs │   │   │   │   │   └── Normalizer.php │   │   │   │   └── unidata │   │   │   │   ├── canonicalComposition.php │   │   │   │   ├── canonicalDecomposition.php │   │   │   │   ├── combiningClass.php │   │   │   │   └── compatibilityDecomposition.php │   │   │   ├── bootstrap.php │   │   │   ├── bootstrap80.php │   │   │   └── composer.json │   │   ├── polyfill-mbstring │   │   │   ├── LICENSE │   │   │   ├── Mbstring.php │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   └── unidata │   │   │   │   ├── caseFolding.php │   │   │   │   ├── lowerCase.php │   │   │   │   ├── titleCaseRegexp.php │   │   │   │   └── upperCase.php │   │   │   ├── bootstrap.php │   │   │   ├── bootstrap80.php │   │   │   └── composer.json │   │   ├── polyfill-php80 │   │   │   ├── LICENSE │   │   │   ├── Php80.php │   │   │   ├── PhpToken.php │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   └── stubs │   │   │   │   ├── Attribute.php │   │   │   │   ├── PhpToken.php │   │   │   │   ├── Stringable.php │   │   │   │   ├── UnhandledMatchError.php │   │   │   │   └── ValueError.php │   │   │   ├── bootstrap.php │   │   │   └── composer.json │   │   ├── polyfill-php83 │   │   │   ├── LICENSE │   │   │   ├── Php83.php │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   └── stubs │   │   │   │   ├── DateError.php │   │   │   │   ├── DateException.php │   │   │   │   ├── DateInvalidOperationException.php │   │   │   │   ├── DateInvalidTimeZoneException.php │   │   │   │   ├── DateMalformedIntervalStringException.php │   │   │   │   ├── DateMalformedPeriodStringException.php │   │   │   │   ├── DateMalformedStringException.php │   │   │   │   ├── DateObjectError.php │   │   │   │   ├── DateRangeError.php │   │   │   │   ├── Override.php │   │   │   │   └── SQLite3Exception.php │   │   │   ├── bootstrap.php │   │   │   ├── bootstrap81.php │   │   │   └── composer.json │   │   ├── polyfill-uuid │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── Uuid.php │   │   │   ├── bootstrap.php │   │   │   ├── bootstrap80.php │   │   │   └── composer.json │   │   ├── process │   │   │   ├── CHANGELOG.md │   │   │   ├── Exception │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── LogicException.php │   │   │   │   ├── ProcessFailedException.php │   │   │   │   ├── ProcessSignaledException.php │   │   │   │   ├── ProcessStartFailedException.php │   │   │   │   ├── ProcessTimedOutException.php │   │   │   │   ├── RunProcessFailedException.php │   │   │   │   └── RuntimeException.php │   │   │   ├── ExecutableFinder.php │   │   │   ├── InputStream.php │   │   │   ├── LICENSE │   │   │   ├── Messenger │   │   │   │   ├── RunProcessContext.php │   │   │   │   ├── RunProcessMessage.php │   │   │   │   └── RunProcessMessageHandler.php │   │   │   ├── PhpExecutableFinder.php │   │   │   ├── PhpProcess.php │   │   │   ├── PhpSubprocess.php │   │   │   ├── Pipes │   │   │   │   ├── AbstractPipes.php │   │   │   │   ├── PipesInterface.php │   │   │   │   ├── UnixPipes.php │   │   │   │   └── WindowsPipes.php │   │   │   ├── Process.php │   │   │   ├── ProcessUtils.php │   │   │   ├── README.md │   │   │   └── composer.json │   │   ├── routing │   │   │   ├── Alias.php │   │   │   ├── Annotation │   │   │   │   └── Route.php │   │   │   ├── Attribute │   │   │   │   ├── DeprecatedAlias.php │   │   │   │   └── Route.php │   │   │   ├── CHANGELOG.md │   │   │   ├── CompiledRoute.php │   │   │   ├── DependencyInjection │   │   │   │   ├── AddExpressionLanguageProvidersPass.php │   │   │   │   └── RoutingResolverPass.php │   │   │   ├── Exception │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── InvalidParameterException.php │   │   │   │   ├── LogicException.php │   │   │   │   ├── MethodNotAllowedException.php │   │   │   │   ├── MissingMandatoryParametersException.php │   │   │   │   ├── NoConfigurationException.php │   │   │   │   ├── ResourceNotFoundException.php │   │   │   │   ├── RouteCircularReferenceException.php │   │   │   │   ├── RouteNotFoundException.php │   │   │   │   └── RuntimeException.php │   │   │   ├── Generator │   │   │   │   ├── CompiledUrlGenerator.php │   │   │   │   ├── ConfigurableRequirementsInterface.php │   │   │   │   ├── Dumper │   │   │   │   │   ├── CompiledUrlGeneratorDumper.php │   │   │   │   │   ├── GeneratorDumper.php │   │   │   │   │   └── GeneratorDumperInterface.php │   │   │   │   ├── UrlGenerator.php │   │   │   │   └── UrlGeneratorInterface.php │   │   │   ├── LICENSE │   │   │   ├── Loader │   │   │   │   ├── AttributeClassLoader.php │   │   │   │   ├── AttributeDirectoryLoader.php │   │   │   │   ├── AttributeFileLoader.php │   │   │   │   ├── ClosureLoader.php │   │   │   │   ├── Configurator │   │   │   │   │   ├── AliasConfigurator.php │   │   │   │   │   ├── CollectionConfigurator.php │   │   │   │   │   ├── ImportConfigurator.php │   │   │   │   │   ├── RouteConfigurator.php │   │   │   │   │   ├── RoutingConfigurator.php │   │   │   │   │   └── Traits │   │   │   │   │   ├── AddTrait.php │   │   │   │   │   ├── HostTrait.php │   │   │   │   │   ├── LocalizedRouteTrait.php │   │   │   │   │   ├── PrefixTrait.php │   │   │   │   │   └── RouteTrait.php │   │   │   │   ├── ContainerLoader.php │   │   │   │   ├── DirectoryLoader.php │   │   │   │   ├── GlobFileLoader.php │   │   │   │   ├── ObjectLoader.php │   │   │   │   ├── PhpFileLoader.php │   │   │   │   ├── Psr4DirectoryLoader.php │   │   │   │   ├── XmlFileLoader.php │   │   │   │   ├── YamlFileLoader.php │   │   │   │   └── schema │   │   │   │   └── routing │   │   │   │   └── routing-1.0.xsd │   │   │   ├── Matcher │   │   │   │   ├── CompiledUrlMatcher.php │   │   │   │   ├── Dumper │   │   │   │   │   ├── CompiledUrlMatcherDumper.php │   │   │   │   │   ├── CompiledUrlMatcherTrait.php │   │   │   │   │   ├── MatcherDumper.php │   │   │   │   │   ├── MatcherDumperInterface.php │   │   │   │   │   └── StaticPrefixCollection.php │   │   │   │   ├── ExpressionLanguageProvider.php │   │   │   │   ├── RedirectableUrlMatcher.php │   │   │   │   ├── RedirectableUrlMatcherInterface.php │   │   │   │   ├── RequestMatcherInterface.php │   │   │   │   ├── TraceableUrlMatcher.php │   │   │   │   ├── UrlMatcher.php │   │   │   │   └── UrlMatcherInterface.php │   │   │   ├── README.md │   │   │   ├── RequestContext.php │   │   │   ├── RequestContextAwareInterface.php │   │   │   ├── Requirement │   │   │   │   ├── EnumRequirement.php │   │   │   │   └── Requirement.php │   │   │   ├── Route.php │   │   │   ├── RouteCollection.php │   │   │   ├── RouteCompiler.php │   │   │   ├── RouteCompilerInterface.php │   │   │   ├── Router.php │   │   │   ├── RouterInterface.php │   │   │   └── composer.json │   │   ├── service-contracts │   │   │   ├── Attribute │   │   │   │   ├── Required.php │   │   │   │   └── SubscribedService.php │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── ResetInterface.php │   │   │   ├── ServiceCollectionInterface.php │   │   │   ├── ServiceLocatorTrait.php │   │   │   ├── ServiceMethodsSubscriberTrait.php │   │   │   ├── ServiceProviderInterface.php │   │   │   ├── ServiceSubscriberInterface.php │   │   │   ├── ServiceSubscriberTrait.php │   │   │   ├── Test │   │   │   │   ├── ServiceLocatorTest.php │   │   │   │   └── ServiceLocatorTestCase.php │   │   │   └── composer.json │   │   ├── string │   │   │   ├── AbstractString.php │   │   │   ├── AbstractUnicodeString.php │   │   │   ├── ByteString.php │   │   │   ├── CHANGELOG.md │   │   │   ├── CodePointString.php │   │   │   ├── Exception │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   └── RuntimeException.php │   │   │   ├── Inflector │   │   │   │   ├── EnglishInflector.php │   │   │   │   ├── FrenchInflector.php │   │   │   │   ├── InflectorInterface.php │   │   │   │   └── SpanishInflector.php │   │   │   ├── LICENSE │   │   │   ├── LazyString.php │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   ├── bin │   │   │   │   ├── data │   │   │   │   │   ├── wcswidth_table_wide.php │   │   │   │   │   └── wcswidth_table_zero.php │   │   │   │   └── functions.php │   │   │   ├── Slugger │   │   │   │   ├── AsciiSlugger.php │   │   │   │   └── SluggerInterface.php │   │   │   ├── TruncateMode.php │   │   │   ├── UnicodeString.php │   │   │   └── composer.json │   │   ├── translation │   │   │   ├── CHANGELOG.md │   │   │   ├── Catalogue │   │   │   │   ├── AbstractOperation.php │   │   │   │   ├── MergeOperation.php │   │   │   │   ├── OperationInterface.php │   │   │   │   └── TargetOperation.php │   │   │   ├── CatalogueMetadataAwareInterface.php │   │   │   ├── Command │   │   │   │   ├── TranslationLintCommand.php │   │   │   │   ├── TranslationPullCommand.php │   │   │   │   ├── TranslationPushCommand.php │   │   │   │   ├── TranslationTrait.php │   │   │   │   └── XliffLintCommand.php │   │   │   ├── DataCollector │   │   │   │   └── TranslationDataCollector.php │   │   │   ├── DataCollectorTranslator.php │   │   │   ├── DependencyInjection │   │   │   │   ├── DataCollectorTranslatorPass.php │   │   │   │   ├── LoggingTranslatorPass.php │   │   │   │   ├── TranslationDumperPass.php │   │   │   │   ├── TranslationExtractorPass.php │   │   │   │   ├── TranslatorPass.php │   │   │   │   └── TranslatorPathsPass.php │   │   │   ├── Dumper │   │   │   │   ├── CsvFileDumper.php │   │   │   │   ├── DumperInterface.php │   │   │   │   ├── FileDumper.php │   │   │   │   ├── IcuResFileDumper.php │   │   │   │   ├── IniFileDumper.php │   │   │   │   ├── JsonFileDumper.php │   │   │   │   ├── MoFileDumper.php │   │   │   │   ├── PhpFileDumper.php │   │   │   │   ├── PoFileDumper.php │   │   │   │   ├── QtFileDumper.php │   │   │   │   ├── XliffFileDumper.php │   │   │   │   └── YamlFileDumper.php │   │   │   ├── Exception │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── IncompleteDsnException.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── InvalidResourceException.php │   │   │   │   ├── LogicException.php │   │   │   │   ├── MissingRequiredOptionException.php │   │   │   │   ├── NotFoundResourceException.php │   │   │   │   ├── ProviderException.php │   │   │   │   ├── ProviderExceptionInterface.php │   │   │   │   ├── RuntimeException.php │   │   │   │   └── UnsupportedSchemeException.php │   │   │   ├── Extractor │   │   │   │   ├── AbstractFileExtractor.php │   │   │   │   ├── ChainExtractor.php │   │   │   │   ├── ExtractorInterface.php │   │   │   │   ├── PhpAstExtractor.php │   │   │   │   └── Visitor │   │   │   │   ├── AbstractVisitor.php │   │   │   │   ├── ConstraintVisitor.php │   │   │   │   ├── TransMethodVisitor.php │   │   │   │   └── TranslatableMessageVisitor.php │   │   │   ├── Formatter │   │   │   │   ├── IntlFormatter.php │   │   │   │   ├── IntlFormatterInterface.php │   │   │   │   ├── MessageFormatter.php │   │   │   │   └── MessageFormatterInterface.php │   │   │   ├── IdentityTranslator.php │   │   │   ├── LICENSE │   │   │   ├── Loader │   │   │   │   ├── ArrayLoader.php │   │   │   │   ├── CsvFileLoader.php │   │   │   │   ├── FileLoader.php │   │   │   │   ├── IcuDatFileLoader.php │   │   │   │   ├── IcuResFileLoader.php │   │   │   │   ├── IniFileLoader.php │   │   │   │   ├── JsonFileLoader.php │   │   │   │   ├── LoaderInterface.php │   │   │   │   ├── MoFileLoader.php │   │   │   │   ├── PhpFileLoader.php │   │   │   │   ├── PoFileLoader.php │   │   │   │   ├── QtFileLoader.php │   │   │   │   ├── XliffFileLoader.php │   │   │   │   └── YamlFileLoader.php │   │   │   ├── LocaleSwitcher.php │   │   │   ├── LoggingTranslator.php │   │   │   ├── MessageCatalogue.php │   │   │   ├── MessageCatalogueInterface.php │   │   │   ├── MetadataAwareInterface.php │   │   │   ├── Provider │   │   │   │   ├── AbstractProviderFactory.php │   │   │   │   ├── Dsn.php │   │   │   │   ├── FilteringProvider.php │   │   │   │   ├── NullProvider.php │   │   │   │   ├── NullProviderFactory.php │   │   │   │   ├── ProviderFactoryInterface.php │   │   │   │   ├── ProviderInterface.php │   │   │   │   ├── TranslationProviderCollection.php │   │   │   │   └── TranslationProviderCollectionFactory.php │   │   │   ├── PseudoLocalizationTranslator.php │   │   │   ├── README.md │   │   │   ├── Reader │   │   │   │   ├── TranslationReader.php │   │   │   │   └── TranslationReaderInterface.php │   │   │   ├── Resources │   │   │   │   ├── bin │   │   │   │   │   └── translation-status.php │   │   │   │   ├── data │   │   │   │   │   └── parents.json │   │   │   │   ├── functions.php │   │   │   │   └── schemas │   │   │   │   ├── xliff-core-1.2-transitional.xsd │   │   │   │   ├── xliff-core-2.0.xsd │   │   │   │   └── xml.xsd │   │   │   ├── Test │   │   │   │   ├── AbstractProviderFactoryTestCase.php │   │   │   │   ├── IncompleteDsnTestTrait.php │   │   │   │   ├── ProviderFactoryTestCase.php │   │   │   │   └── ProviderTestCase.php │   │   │   ├── TranslatableMessage.php │   │   │   ├── Translator.php │   │   │   ├── TranslatorBag.php │   │   │   ├── TranslatorBagInterface.php │   │   │   ├── Util │   │   │   │   ├── ArrayConverter.php │   │   │   │   └── XliffUtils.php │   │   │   ├── Writer │   │   │   │   ├── TranslationWriter.php │   │   │   │   └── TranslationWriterInterface.php │   │   │   └── composer.json │   │   ├── translation-contracts │   │   │   ├── CHANGELOG.md │   │   │   ├── LICENSE │   │   │   ├── LocaleAwareInterface.php │   │   │   ├── README.md │   │   │   ├── Test │   │   │   │   └── TranslatorTest.php │   │   │   ├── TranslatableInterface.php │   │   │   ├── TranslatorInterface.php │   │   │   ├── TranslatorTrait.php │   │   │   └── composer.json │   │   ├── uid │   │   │   ├── AbstractUid.php │   │   │   ├── BinaryUtil.php │   │   │   ├── CHANGELOG.md │   │   │   ├── Command │   │   │   │   ├── GenerateUlidCommand.php │   │   │   │   ├── GenerateUuidCommand.php │   │   │   │   ├── InspectUlidCommand.php │   │   │   │   └── InspectUuidCommand.php │   │   │   ├── Exception │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   └── LogicException.php │   │   │   ├── Factory │   │   │   │   ├── NameBasedUuidFactory.php │   │   │   │   ├── RandomBasedUuidFactory.php │   │   │   │   ├── TimeBasedUuidFactory.php │   │   │   │   ├── UlidFactory.php │   │   │   │   └── UuidFactory.php │   │   │   ├── HashableInterface.php │   │   │   ├── LICENSE │   │   │   ├── MaxUlid.php │   │   │   ├── MaxUuid.php │   │   │   ├── NilUlid.php │   │   │   ├── NilUuid.php │   │   │   ├── README.md │   │   │   ├── TimeBasedUidInterface.php │   │   │   ├── Ulid.php │   │   │   ├── Uuid.php │   │   │   ├── UuidV1.php │   │   │   ├── UuidV3.php │   │   │   ├── UuidV4.php │   │   │   ├── UuidV5.php │   │   │   ├── UuidV6.php │   │   │   ├── UuidV7.php │   │   │   ├── UuidV8.php │   │   │   └── composer.json │   │   ├── var-dumper │   │   │   ├── CHANGELOG.md │   │   │   ├── Caster │   │   │   │   ├── AddressInfoCaster.php │   │   │   │   ├── AmqpCaster.php │   │   │   │   ├── ArgsStub.php │   │   │   │   ├── Caster.php │   │   │   │   ├── ClassStub.php │   │   │   │   ├── ConstStub.php │   │   │   │   ├── CurlCaster.php │   │   │   │   ├── CutArrayStub.php │   │   │   │   ├── CutStub.php │   │   │   │   ├── DOMCaster.php │   │   │   │   ├── DateCaster.php │   │   │   │   ├── DoctrineCaster.php │   │   │   │   ├── DsCaster.php │   │   │   │   ├── DsPairStub.php │   │   │   │   ├── EnumStub.php │   │   │   │   ├── ExceptionCaster.php │   │   │   │   ├── FFICaster.php │   │   │   │   ├── FiberCaster.php │   │   │   │   ├── FrameStub.php │   │   │   │   ├── GdCaster.php │   │   │   │   ├── GmpCaster.php │   │   │   │   ├── ImagineCaster.php │   │   │   │   ├── ImgStub.php │   │   │   │   ├── IntlCaster.php │   │   │   │   ├── LinkStub.php │   │   │   │   ├── MemcachedCaster.php │   │   │   │   ├── MysqliCaster.php │   │   │   │   ├── OpenSSLCaster.php │   │   │   │   ├── PdoCaster.php │   │   │   │   ├── PgSqlCaster.php │   │   │   │   ├── ProxyManagerCaster.php │   │   │   │   ├── RdKafkaCaster.php │   │   │   │   ├── RedisCaster.php │   │   │   │   ├── ReflectionCaster.php │   │   │   │   ├── ResourceCaster.php │   │   │   │   ├── ScalarStub.php │   │   │   │   ├── SocketCaster.php │   │   │   │   ├── SplCaster.php │   │   │   │   ├── SqliteCaster.php │   │   │   │   ├── StubCaster.php │   │   │   │   ├── SymfonyCaster.php │   │   │   │   ├── TraceStub.php │   │   │   │   ├── UninitializedStub.php │   │   │   │   ├── UuidCaster.php │   │   │   │   ├── VirtualStub.php │   │   │   │   ├── XmlReaderCaster.php │   │   │   │   └── XmlResourceCaster.php │   │   │   ├── Cloner │   │   │   │   ├── AbstractCloner.php │   │   │   │   ├── ClonerInterface.php │   │   │   │   ├── Cursor.php │   │   │   │   ├── Data.php │   │   │   │   ├── DumperInterface.php │   │   │   │   ├── Internal │   │   │   │   │   └── NoDefault.php │   │   │   │   ├── Stub.php │   │   │   │   └── VarCloner.php │   │   │   ├── Command │   │   │   │   ├── Descriptor │   │   │   │   │   ├── CliDescriptor.php │   │   │   │   │   ├── DumpDescriptorInterface.php │   │   │   │   │   └── HtmlDescriptor.php │   │   │   │   └── ServerDumpCommand.php │   │   │   ├── Dumper │   │   │   │   ├── AbstractDumper.php │   │   │   │   ├── CliDumper.php │   │   │   │   ├── ContextProvider │   │   │   │   │   ├── CliContextProvider.php │   │   │   │   │   ├── ContextProviderInterface.php │   │   │   │   │   ├── RequestContextProvider.php │   │   │   │   │   └── SourceContextProvider.php │   │   │   │   ├── ContextualizedDumper.php │   │   │   │   ├── DataDumperInterface.php │   │   │   │   ├── HtmlDumper.php │   │   │   │   └── ServerDumper.php │   │   │   ├── Exception │   │   │   │   └── ThrowingCasterException.php │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   ├── bin │   │   │   │   │   └── var-dump-server │   │   │   │   ├── css │   │   │   │   │   └── htmlDescriptor.css │   │   │   │   ├── functions │   │   │   │   │   └── dump.php │   │   │   │   └── js │   │   │   │   └── htmlDescriptor.js │   │   │   ├── Server │   │   │   │   ├── Connection.php │   │   │   │   └── DumpServer.php │   │   │   ├── Test │   │   │   │   └── VarDumperTestTrait.php │   │   │   ├── VarDumper.php │   │   │   └── composer.json │   │   └── yaml │   │   ├── CHANGELOG.md │   │   ├── Command │   │   │   └── LintCommand.php │   │   ├── Dumper.php │   │   ├── Escaper.php │   │   ├── Exception │   │   │   ├── DumpException.php │   │   │   ├── ExceptionInterface.php │   │   │   ├── ParseException.php │   │   │   └── RuntimeException.php │   │   ├── Inline.php │   │   ├── LICENSE │   │   ├── Parser.php │   │   ├── README.md │   │   ├── Resources │   │   │   └── bin │   │   │   └── yaml-lint │   │   ├── Tag │   │   │   └── TaggedValue.php │   │   ├── Unescaper.php │   │   ├── Yaml.php │   │   └── composer.json │   ├── ta-tikoma │   │   └── phpunit-architecture-test │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   ├── ArchitectureAsserts.php │   │   ├── Asserts │   │   │   ├── Dependencies │   │   │   │   ├── DependenciesAsserts.php │   │   │   │   ├── Elements │   │   │   │   │   └── ObjectUses.php │   │   │   │   └── ObjectDependenciesDescription.php │   │   │   ├── Inheritance │   │   │   │   └── ObjectInheritanceDescription.php │   │   │   ├── Iterator │   │   │   │   └── IteratorAsserts.php │   │   │   ├── Methods │   │   │   │   ├── Elements │   │   │   │   │   ├── MethodDescription.php │   │   │   │   │   └── ObjectMethods.php │   │   │   │   ├── MethodsAsserts.php │   │   │   │   └── ObjectMethodsDescription.php │   │   │   └── Properties │   │   │   ├── Elements │   │   │   │   ├── ObjectProperties.php │   │   │   │   └── PropertyDescription.php │   │   │   ├── ObjectPropertiesDescription.php │   │   │   └── PropertiesAsserts.php │   │   ├── Builders │   │   │   └── BuildFromTest.php │   │   ├── Elements │   │   │   ├── Layer │   │   │   │   ├── Layer.php │   │   │   │   ├── LayerExclude.php │   │   │   │   ├── LayerLeave.php │   │   │   │   └── LayerSplit.php │   │   │   ├── ObjectDescription.php │   │   │   └── ObjectDescriptionBase.php │   │   ├── Enums │   │   │   ├── ObjectType.php │   │   │   └── Visibility.php │   │   ├── Services │   │   │   └── ServiceContainer.php │   │   └── Storage │   │   ├── Filesystem.php │   │   └── ObjectsStorage.php │   ├── theseer │   │   └── tokenizer │   │   ├── CHANGELOG.md │   │   ├── LICENSE │   │   ├── README.md │   │   ├── composer.json │   │   ├── composer.lock │   │   └── src │   │   ├── Exception.php │   │   ├── NamespaceUri.php │   │   ├── NamespaceUriException.php │   │   ├── Token.php │   │   ├── TokenCollection.php │   │   ├── TokenCollectionException.php │   │   ├── Tokenizer.php │   │   └── XMLSerializer.php │   ├── tijsverkoyen │   │   └── css-to-inline-styles │   │   ├── LICENSE.md │   │   ├── composer.json │   │   └── src │   │   ├── Css │   │   │   ├── Processor.php │   │   │   ├── Property │   │   │   │   ├── Processor.php │   │   │   │   └── Property.php │   │   │   └── Rule │   │   │   ├── Processor.php │   │   │   └── Rule.php │   │   └── CssToInlineStyles.php │   ├── vlucas │   │   └── phpdotenv │   │   ├── LICENSE │   │   ├── composer.json │   │   └── src │   │   ├── Dotenv.php │   │   ├── Exception │   │   │   ├── ExceptionInterface.php │   │   │   ├── InvalidEncodingException.php │   │   │   ├── InvalidFileException.php │   │   │   ├── InvalidPathException.php │   │   │   └── ValidationException.php │   │   ├── Loader │   │   │   ├── Loader.php │   │   │   ├── LoaderInterface.php │   │   │   └── Resolver.php │   │   ├── Parser │   │   │   ├── Entry.php │   │   │   ├── EntryParser.php │   │   │   ├── Lexer.php │   │   │   ├── Lines.php │   │   │   ├── Parser.php │   │   │   ├── ParserInterface.php │   │   │   └── Value.php │   │   ├── Repository │   │   │   ├── Adapter │   │   │   │   ├── AdapterInterface.php │   │   │   │   ├── ApacheAdapter.php │   │   │   │   ├── ArrayAdapter.php │   │   │   │   ├── EnvConstAdapter.php │   │   │   │   ├── GuardedWriter.php │   │   │   │   ├── ImmutableWriter.php │   │   │   │   ├── MultiReader.php │   │   │   │   ├── MultiWriter.php │   │   │   │   ├── PutenvAdapter.php │   │   │   │   ├── ReaderInterface.php │   │   │   │   ├── ReplacingWriter.php │   │   │   │   ├── ServerConstAdapter.php │   │   │   │   └── WriterInterface.php │   │   │   ├── AdapterRepository.php │   │   │   ├── RepositoryBuilder.php │   │   │   └── RepositoryInterface.php │   │   ├── Store │   │   │   ├── File │   │   │   │   ├── Paths.php │   │   │   │   └── Reader.php │   │   │   ├── FileStore.php │   │   │   ├── StoreBuilder.php │   │   │   ├── StoreInterface.php │   │   │   └── StringStore.php │   │   ├── Util │   │   │   ├── Regex.php │   │   │   └── Str.php │   │   └── Validator.php │   ├── voku │   │   └── portable-ascii │   │   ├── CHANGELOG.md │   │   ├── LICENSE.txt │   │   ├── README.md │   │   ├── composer.json │   │   └── src │   │   └── voku │   │   └── helper │   │   ├── ASCII.php │   │   └── data │   │   ├── ascii_by_languages.php │   │   ├── ascii_extras_by_languages.php │   │   ├── ascii_language_max_key.php │   │   ├── ascii_ord.php │   │   ├── x000.php │   │   ├── x001.php │   │   ├── x002.php │   │   ├── x003.php │   │   ├── x004.php │   │   ├── x005.php │   │   ├── x006.php │   │   ├── x007.php │   │   ├── x009.php │   │   ├── x00a.php │   │   ├── x00b.php │   │   ├── x00c.php │   │   ├── x00d.php │   │   ├── x00e.php │   │   ├── x00f.php │   │   ├── x010.php │   │   ├── x011.php │   │   ├── x012.php │   │   ├── x013.php │   │   ├── x014.php │   │   ├── x015.php │   │   ├── x016.php │   │   ├── x017.php │   │   ├── x018.php │   │   ├── x01d.php │   │   ├── x01e.php │   │   ├── x01f.php │   │   ├── x020.php │   │   ├── x021.php │   │   ├── x022.php │   │   ├── x023.php │   │   ├── x024.php │   │   ├── x025.php │   │   ├── x026.php │   │   ├── x027.php │   │   ├── x028.php │   │   ├── x029.php │   │   ├── x02a.php │   │   ├── x02c.php │   │   ├── x02e.php │   │   ├── x02f.php │   │   ├── x030.php │   │   ├── x031.php │   │   ├── x032.php │   │   ├── x033.php │   │   ├── x04d.php │   │   ├── x04e.php │   │   ├── x04f.php │   │   ├── x050.php │   │   ├── x051.php │   │   ├── x052.php │   │   ├── x053.php │   │   ├── x054.php │   │   ├── x055.php │   │   ├── x056.php │   │   ├── x057.php │   │   ├── x058.php │   │   ├── x059.php │   │   ├── x05a.php │   │   ├── x05b.php │   │   ├── x05c.php │   │   ├── x05d.php │   │   ├── x05e.php │   │   ├── x05f.php │   │   ├── x060.php │   │   ├── x061.php │   │   ├── x062.php │   │   ├── x063.php │   │   ├── x064.php │   │   ├── x065.php │   │   ├── x066.php │   │   ├── x067.php │   │   ├── x068.php │   │   ├── x069.php │   │   ├── x06a.php │   │   ├── x06b.php │   │   ├── x06c.php │   │   ├── x06d.php │   │   ├── x06e.php │   │   ├── x06f.php │   │   ├── x070.php │   │   ├── x071.php │   │   ├── x072.php │   │   ├── x073.php │   │   ├── x074.php │   │   ├── x075.php │   │   ├── x076.php │   │   ├── x077.php │   │   ├── x078.php │   │   ├── x079.php │   │   ├── x07a.php │   │   ├── x07b.php │   │   ├── x07c.php │   │   ├── x07d.php │   │   ├── x07e.php │   │   ├── x07f.php │   │   ├── x080.php │   │   ├── x081.php │   │   ├── x082.php │   │   ├── x083.php │   │   ├── x084.php │   │   ├── x085.php │   │   ├── x086.php │   │   ├── x087.php │   │   ├── x088.php │   │   ├── x089.php │   │   ├── x08a.php │   │   ├── x08b.php │   │   ├── x08c.php │   │   ├── x08d.php │   │   ├── x08e.php │   │   ├── x08f.php │   │   ├── x090.php │   │   ├── x091.php │   │   ├── x092.php │   │   ├── x093.php │   │   ├── x094.php │   │   ├── x095.php │   │   ├── x096.php │   │   ├── x097.php │   │   ├── x098.php │   │   ├── x099.php │   │   ├── x09a.php │   │   ├── x09b.php │   │   ├── x09c.php │   │   ├── x09d.php │   │   ├── x09e.php │   │   ├── x09f.php │   │   ├── x0a0.php │   │   ├── x0a1.php │   │   ├── x0a2.php │   │   ├── x0a3.php │   │   ├── x0a4.php │   │   ├── x0ac.php │   │   ├── x0ad.php │   │   ├── x0ae.php │   │   ├── x0af.php │   │   ├── x0b0.php │   │   ├── x0b1.php │   │   ├── x0b2.php │   │   ├── x0b3.php │   │   ├── x0b4.php │   │   ├── x0b5.php │   │   ├── x0b6.php │   │   ├── x0b7.php │   │   ├── x0b8.php │   │   ├── x0b9.php │   │   ├── x0ba.php │   │   ├── x0bb.php │   │   ├── x0bc.php │   │   ├── x0bd.php │   │   ├── x0be.php │   │   ├── x0bf.php │   │   ├── x0c0.php │   │   ├── x0c1.php │   │   ├── x0c2.php │   │   ├── x0c3.php │   │   ├── x0c4.php │   │   ├── x0c5.php │   │   ├── x0c6.php │   │   ├── x0c7.php │   │   ├── x0c8.php │   │   ├── x0c9.php │   │   ├── x0ca.php │   │   ├── x0cb.php │   │   ├── x0cc.php │   │   ├── x0cd.php │   │   ├── x0ce.php │   │   ├── x0cf.php │   │   ├── x0d0.php │   │   ├── x0d1.php │   │   ├── x0d2.php │   │   ├── x0d3.php │   │   ├── x0d4.php │   │   ├── x0d5.php │   │   ├── x0d6.php │   │   ├── x0d7.php │   │   ├── x0f9.php │   │   ├── x0fa.php │   │   ├── x0fb.php │   │   ├── x0fc.php │   │   ├── x0fd.php │   │   ├── x0fe.php │   │   ├── x0ff.php │   │   ├── x1d4.php │   │   ├── x1d5.php │   │   ├── x1d6.php │   │   ├── x1d7.php │   │   └── x1f1.php │   └── webmozart │   └── assert │   ├── CHANGELOG.md │   ├── LICENSE │   ├── README.md │   ├── composer.json │   └── src │   ├── Assert.php │   ├── InvalidArgumentException.php │   └── Mixin.php └── vite.config.js 3105 directories, 15649 files