From 3213002c4f1ea411be11af7a33e77c75df46852e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=86=9B?= <510423039@qq.com> Date: Thu, 2 Sep 2021 17:51:29 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20=E6=B7=BB=E5=8A=A0id4=20ui?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Customs/Dtos/FromSelector.cs | 41 + .../ApiResources/Dtos/ApiResourceOutput.cs | 6 +- .../Dtos/CreateApiResourceInput.cs | 15 +- .../Dtos/UpdateApiResourceInput.cs | 11 +- .../ApiScopes/IApiScopeAppService.cs | 7 +- .../ApiResources/ApiResourceAppService.cs | 11 +- .../ApiScopes/ApiScopeAppService.cs | 11 +- .../IdenityServerApiResourceManager.cs | 66 +- .../IdenityServerApiScopeManager.cs | 9 +- .../IdenityServerClientManager.cs | 35 +- .../IdentityServer/IdentityResourceManager.cs | 2 +- .../Filters/CustomHangfireAuthorizeFilter.cs | 5 +- .../Logs/logs.txt | 11272 ++++++++++ .../ProjectNameHttpApiHostModule.cs | 41 + .../IdentityServers/ApiScopeController.cs | 11 +- vben271/.editorconfig | 19 + vben271/.env | 8 + vben271/.env.development | 31 + vben271/.env.production | 35 + vben271/.env.test | 36 + vben271/.eslintignore | 15 + vben271/.eslintrc.js | 78 + vben271/.gitignore | 29 + vben271/.prettierignore | 9 + vben271/.stylelintignore | 3 + vben271/.yarnclean | 48 + vben271/package-lock.json | 17651 ++++++++++++++++ vben271/package.json | 2 - vben271/src/router/index.ts | 4 +- vben271/src/router/routes/modules/admin.ts | 15 + vben271/src/services/ServiceProxies.ts | 274 +- .../src/views/admin/roles/CreateAbpRole.vue | 10 +- vben271/src/views/admin/users/EditAbpUser.vue | 44 +- .../apiResources/ApiResources.ts | 96 +- .../apiResources/ApiResources.vue | 43 +- .../apiResources/CreateApiResource.vue | 10 +- .../apiResources/EditApiResources.vue | 114 + .../identityServers/apiScopes/ApiScopes.ts | 24 +- .../views/identityServers/clients/Clients.ts | 25 +- .../clients/EditClientBasic.vue | 110 +- .../EditIdentityResources.vue | 71 +- .../identityResources/IdentityResources.ts | 33 +- vben271/yarn.lock | 11836 ----------- 43 files changed, 30107 insertions(+), 12109 deletions(-) create mode 100644 aspnet-core/frameworks/Extensions/src/CompanyName.ProjectName.Extensions/Customs/Dtos/FromSelector.cs create mode 100644 vben271/.editorconfig create mode 100644 vben271/.env create mode 100644 vben271/.env.development create mode 100644 vben271/.env.production create mode 100644 vben271/.env.test create mode 100644 vben271/.eslintignore create mode 100644 vben271/.eslintrc.js create mode 100644 vben271/.gitignore create mode 100644 vben271/.prettierignore create mode 100644 vben271/.stylelintignore create mode 100644 vben271/.yarnclean create mode 100644 vben271/package-lock.json create mode 100644 vben271/src/views/identityServers/apiResources/EditApiResources.vue delete mode 100644 vben271/yarn.lock diff --git a/aspnet-core/frameworks/Extensions/src/CompanyName.ProjectName.Extensions/Customs/Dtos/FromSelector.cs b/aspnet-core/frameworks/Extensions/src/CompanyName.ProjectName.Extensions/Customs/Dtos/FromSelector.cs new file mode 100644 index 00000000..f9e1a102 --- /dev/null +++ b/aspnet-core/frameworks/Extensions/src/CompanyName.ProjectName.Extensions/Customs/Dtos/FromSelector.cs @@ -0,0 +1,41 @@ +namespace CompanyName.ProjectName.Extensions.Customs.Dtos +{ + + + public abstract class FromSelectorBase + { + protected FromSelectorBase(int value, string label) + { + Value = value; + Label = label; + } + public int Value { get; protected set; } + public string Label { get; protected set; } + } + + public abstract class FromSelectorBase + { + protected FromSelectorBase(TValue value, TLabel label) + { + Value = value; + Label = label; + } + + public TValue Value { get; protected set; } + public TLabel Label { get; protected set; } + } + + public class FromSelector : FromSelectorBase + { + public FromSelector(int value, string label) : base(value, label) + { + } + } + + public class FromSelector : FromSelectorBase + { + public FromSelector(TValue value, TLabel label) : base(value, label) + { + } + } +} \ No newline at end of file diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiResources/Dtos/ApiResourceOutput.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiResources/Dtos/ApiResourceOutput.cs index 1e9f93ca..75b265d2 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiResources/Dtos/ApiResourceOutput.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiResources/Dtos/ApiResourceOutput.cs @@ -1,8 +1,10 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; +using Volo.Abp.Application.Dtos; namespace CompanyName.ProjectName.IdentityServers.Dtos { - public class ApiResourceOutput + public class ApiResourceOutput : EntityDto { public string Name { get; set; } diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiResources/Dtos/CreateApiResourceInput.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiResources/Dtos/CreateApiResourceInput.cs index 8163ae5a..7638da12 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiResources/Dtos/CreateApiResourceInput.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiResources/Dtos/CreateApiResourceInput.cs @@ -16,20 +16,7 @@ namespace CompanyName.ProjectName.IdentityServers.Dtos public bool ShowInDiscoveryDocument { get; set; } = true; - public List Secrets { get; set; } + public string Secret { get; set; } - public List Scopes { get; set; } - - public List UserClaims { get; set; } - - public List Properties { get; set; } - - public CreateApiResourceInput() - { - Secrets = new List(); - Scopes = new List(); - UserClaims = new List(); - Properties = new List(); - } } } \ No newline at end of file diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiResources/Dtos/UpdateApiResourceInput.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiResources/Dtos/UpdateApiResourceInput.cs index 10ccd1c2..875e4b34 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiResources/Dtos/UpdateApiResourceInput.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiResources/Dtos/UpdateApiResourceInput.cs @@ -16,20 +16,15 @@ namespace CompanyName.ProjectName.IdentityServers.Dtos public bool ShowInDiscoveryDocument { get; set; } = true; - public List Secrets { get; set; } + public string Secret { get; set; } - public List Scopes { get; set; } + public List ApiScopes { get; set; } - public List UserClaims { get; set; } - public List Properties { get; set; } public UpdateApiResourceInput() { - Secrets = new List(); - Scopes = new List(); - UserClaims = new List(); - Properties = new List(); + ApiScopes = new List(); } } } \ No newline at end of file diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiScopes/IApiScopeAppService.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiScopes/IApiScopeAppService.cs index ee1acfc2..fbd19727 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiScopes/IApiScopeAppService.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application.Contracts/IdentityServers/ApiScopes/IApiScopeAppService.cs @@ -1,4 +1,7 @@ -using System.Threading.Tasks; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using CompanyName.ProjectName.Extensions.Customs.Dtos; using CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos; using CompanyName.ProjectName.Publics.Dtos; using Volo.Abp.Application.Dtos; @@ -15,5 +18,7 @@ namespace CompanyName.ProjectName.IdentityServers.ApiScopes Task UpdateAsync(UpdateCreateApiScopeInput input); Task DeleteAsync(IdInput input); + + Task>> FindAllAsync(); } } \ No newline at end of file diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application/IdentityServers/ApiResources/ApiResourceAppService.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application/IdentityServers/ApiResources/ApiResourceAppService.cs index 3580db5c..7e674cf3 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application/IdentityServers/ApiResources/ApiResourceAppService.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application/IdentityServers/ApiResources/ApiResourceAppService.cs @@ -53,10 +53,7 @@ namespace CompanyName.ProjectName.IdentityServers.ApiResources input.Enabled, input.AllowedAccessTokenSigningAlgorithms, input.ShowInDiscoveryDocument, - input.Secrets, - input.Scopes, - input.UserClaims, - input.Properties + input.Secret ); } @@ -82,10 +79,8 @@ namespace CompanyName.ProjectName.IdentityServers.ApiResources input.Enabled, input.AllowedAccessTokenSigningAlgorithms, input.ShowInDiscoveryDocument, - input.Secrets, - input.Scopes, - input.UserClaims, - input.Properties + input.Secret, + input.ApiScopes ); } } diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Application/IdentityServers/ApiScopes/ApiScopeAppService.cs b/aspnet-core/services/src/CompanyName.ProjectName.Application/IdentityServers/ApiScopes/ApiScopeAppService.cs index 5afcaa3e..86ebe2e1 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Application/IdentityServers/ApiScopes/ApiScopeAppService.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Application/IdentityServers/ApiScopes/ApiScopeAppService.cs @@ -1,5 +1,8 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; +using System.Linq; using System.Threading.Tasks; +using CompanyName.ProjectName.Extensions.Customs.Dtos; using CompanyName.ProjectName.IdentityServer; using CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos; using CompanyName.ProjectName.Publics.Dtos; @@ -45,5 +48,11 @@ namespace CompanyName.ProjectName.IdentityServers.ApiScopes { return _idenityServerApiScopeManager.DeleteAsync(input.Id); } + + public async Task>> FindAllAsync() + { + var result = await _idenityServerApiScopeManager.FindAllAsync(); + return result.Select(e => new FromSelector(e.Name, e.Name)).ToList(); + } } } \ No newline at end of file diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerApiResourceManager.cs b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerApiResourceManager.cs index d260fc10..a0aa2dbe 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerApiResourceManager.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerApiResourceManager.cs @@ -27,7 +27,7 @@ namespace CompanyName.ProjectName.IdentityServer bool includeDetails = false, CancellationToken cancellationToken = default) { - return _apiResourceRepository.GetListAsync("CreationTime", skipCount, maxResultCount, filter, + return _apiResourceRepository.GetListAsync("CreationTime desc", skipCount, maxResultCount, filter, includeDetails, cancellationToken); } @@ -57,15 +57,16 @@ namespace CompanyName.ProjectName.IdentityServer bool enabled, string allowedAccessTokenSigningAlgorithms, bool showInDiscoveryDocument, - List secrets = null, - List scopes = null, - List claims = null, - List properties = null, + string secret, CancellationToken cancellationToken = default) { var apiResource = await _apiResourceRepository.FindByNameAsync(name.Trim(), false, cancellationToken); - if (null != apiResource) throw new UserFriendlyException(message: "ApiResource已存在"); + if (null != apiResource) + { + throw new UserFriendlyException(message: "ApiResource已存在"); + } + apiResource = new ApiResource(id, name, displayName, description) { AllowedAccessTokenSigningAlgorithms = allowedAccessTokenSigningAlgorithms, @@ -73,16 +74,13 @@ namespace CompanyName.ProjectName.IdentityServer Enabled = enabled }; - secrets?.Distinct().ToList().ForEach(item => - { - apiResource.AddSecret(item.Value.ToSha256(), item.Expiration, item.Type, item.Description); - }); - - scopes?.Distinct().ToList().ForEach(item => { apiResource.AddScope(item.Scope); }); - - claims?.Distinct().ToList().ForEach(item => { apiResource.AddUserClaim(item.Type); }); + apiResource.AddSecret(secret.ToSha256()); - properties?.Distinct().ToList().ForEach(item => { apiResource.AddProperty(item.Key, item.Value); }); + // scopes?.Distinct().ToList().ForEach(item => { apiResource.AddScope(item.Scope); }); + // + // claims?.Distinct().ToList().ForEach(item => { apiResource.AddUserClaim(item.Type); }); + // + // properties?.Distinct().ToList().ForEach(item => { apiResource.AddProperty(item.Key, item.Value); }); return await _apiResourceRepository.InsertAsync(apiResource, cancellationToken: cancellationToken); } @@ -102,41 +100,37 @@ namespace CompanyName.ProjectName.IdentityServer bool enabled, string allowedAccessTokenSigningAlgorithms, bool showInDiscoveryDocument, - List secrets = null, - List scopes = null, - List claims = null, - List properties = null, + string secret , + List scopes , CancellationToken cancellationToken = default ) { var apiResource = - await _apiResourceRepository.FindByNameAsync(name.Trim(), false, cancellationToken); - if (null == apiResource) throw new UserFriendlyException(message: "ApiResource不存在"); + await _apiResourceRepository.FindByNameAsync(name.Trim(), true, cancellationToken); + if (null == apiResource) + { + throw new UserFriendlyException(message: "ApiResource不存在"); + } + apiResource.DisplayName = displayName; apiResource.Description = description; apiResource.Enabled = enabled; apiResource.AllowedAccessTokenSigningAlgorithms = allowedAccessTokenSigningAlgorithms; apiResource.ShowInDiscoveryDocument = showInDiscoveryDocument; - secrets?.Distinct().ToList().ForEach(item => + if (secret.IsNotNullOrWhiteSpace()) { - var secret = apiResource.Secrets.FirstOrDefault(e => e.Value == item.Value.ToSha256() && e.Type==item.Type); - if (secret != null) - { - secret.Expiration = item.Expiration; - secret.Description = item.Description; - } - else + if (apiResource.Secrets.Any(e=>e.Value!=secret)) { - apiResource.AddSecret(item.Value.ToSha256(), item.Expiration, item.Type, item.Description); + apiResource.Secrets.Clear(); + apiResource.AddSecret(secret.ToSha256()); } + } - }); - - scopes?.Distinct().ToList().ForEach(item => { apiResource.AddScope(item.Scope); }); - - claims?.Distinct().ToList().ForEach(item => { apiResource.AddUserClaim(item.Type); }); + apiResource.Scopes.Clear(); + + scopes?.Distinct().ToList().ForEach(item => { apiResource.AddScope(item); }); - properties?.Distinct().ToList().ForEach(item => { apiResource.AddProperty(item.Key, item.Value); }); + return await _apiResourceRepository.UpdateAsync(apiResource, cancellationToken: cancellationToken); } } diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerApiScopeManager.cs b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerApiScopeManager.cs index 9049709f..6900348a 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerApiScopeManager.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerApiScopeManager.cs @@ -25,7 +25,7 @@ namespace CompanyName.ProjectName.IdentityServer CancellationToken cancellationToken = default) { return _apiScopeRepository.GetListAsync( - "CreationTime", + "CreationTime desc", skipCount, maxResultCount, filter, @@ -76,9 +76,14 @@ namespace CompanyName.ProjectName.IdentityServer } public Task DeleteAsync(Guid id, bool autoSave = false, - CancellationToken cancellationToken = new CancellationToken()) + CancellationToken cancellationToken = default) { return _apiScopeRepository.DeleteAsync(id, autoSave, cancellationToken); } + + public async Task> FindAllAsync(CancellationToken cancellationToken = default) + { + return await _apiScopeRepository.GetListAsync(e => e.Enabled == true, false, cancellationToken); + } } } \ No newline at end of file diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerClientManager.cs b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerClientManager.cs index a32ae308..721f0f19 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerClientManager.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdenityServerClientManager.cs @@ -28,7 +28,7 @@ namespace CompanyName.ProjectName.IdentityServer bool includeDetails = false, CancellationToken cancellationToken = default) { - return _clientRepository.GetListAsync("CreationTime", skipCount, maxResultCount, filter, includeDetails, + return _clientRepository.GetListAsync("CreationTime desc", skipCount, maxResultCount, filter, includeDetails, cancellationToken); } @@ -96,13 +96,12 @@ namespace CompanyName.ProjectName.IdentityServer int slidingRefreshTokenLifetime, string secret, string secretType - ) { var client = await _clientRepository.FindByClientIdAsync(clientId); - if (client != null) + if (client == null) { - throw new UserFriendlyException(message: "当前ClientId已存在"); + throw new UserFriendlyException(message: $"{clientId}不存在"); } client.ClientName = clientName; @@ -130,7 +129,7 @@ namespace CompanyName.ProjectName.IdentityServer client.SlidingRefreshTokenLifetime = slidingRefreshTokenLifetime; client.RefreshTokenExpiration = refreshTokenExpiration; client.DeviceCodeLifetime = deviceCodeLifetime; - client.ProtocolType = protocolType; + //client.ProtocolType = protocolType; client.AlwaysIncludeUserClaimsInIdToken = alwaysIncludeUserClaimsInIdToken; client.AllowPlainTextPkce = allowPlainTextPkce; client.AllowOfflineAccess = allowOfflineAccess; @@ -144,8 +143,16 @@ namespace CompanyName.ProjectName.IdentityServer client.UserSsoLifetime = userSsoLifetime; client.UserCodeType = userCodeType; client.EnableLocalLogin = enableLocalLogin; - client.ClientSecrets.Clear(); - client.AddSecret(secret.ToSha256(), null, secretType, String.Empty); + + if (secret.IsNotNullOrWhiteSpace()) + { + if (client.ClientSecrets.Any(e => e.Value != secret)) + { + client.ClientSecrets.Clear(); + client.AddSecret(secret.ToSha256(), null, secretType, String.Empty); + } + } + return await _clientRepository.UpdateAsync(client); } @@ -170,7 +177,7 @@ namespace CompanyName.ProjectName.IdentityServer { uri = uri.Trim(); var client = await _clientRepository.FindByClientIdAsync(clientId); - if (client == null) throw new UserFriendlyException(message: "Client不存在"); + if (client == null) throw new UserFriendlyException(message: $"{clientId}不存在"); if (client.RedirectUris.Any(e => e.RedirectUri != uri.Trim())) { client.AddRedirectUri(uri); @@ -187,7 +194,7 @@ namespace CompanyName.ProjectName.IdentityServer { uri = uri.Trim(); var client = await _clientRepository.FindByClientIdAsync(clientId); - if (client == null) throw new UserFriendlyException(message: "Client不存在"); + if (client == null) throw new UserFriendlyException(message: $"{clientId}不存在"); if (client.RedirectUris.Any(e => e.RedirectUri == uri.Trim())) { client.RemoveRedirectUri(uri); @@ -204,7 +211,7 @@ namespace CompanyName.ProjectName.IdentityServer { uri = uri.Trim(); var client = await _clientRepository.FindByClientIdAsync(clientId); - if (client == null) throw new UserFriendlyException(message: "Client不存在"); + if (client == null) throw new UserFriendlyException(message: $"{clientId}不存在"); if (client.PostLogoutRedirectUris.Any(e => e.PostLogoutRedirectUri != uri)) { client.AddPostLogoutRedirectUri(uri); @@ -221,7 +228,7 @@ namespace CompanyName.ProjectName.IdentityServer { uri = uri.Trim(); var client = await _clientRepository.FindByClientIdAsync(clientId); - if (client == null) throw new UserFriendlyException(message: "Client不存在"); + if (client == null) throw new UserFriendlyException(message: $"{clientId}不存在"); if (client.PostLogoutRedirectUris.Any(e => e.PostLogoutRedirectUri == uri)) { client.RemovePostLogoutRedirectUri(uri); @@ -238,7 +245,7 @@ namespace CompanyName.ProjectName.IdentityServer { origin = origin.Trim(); var client = await _clientRepository.FindByClientIdAsync(clientId); - if (client == null) throw new UserFriendlyException(message: "Client不存在"); + if (client == null) throw new UserFriendlyException(message: $"{clientId}不存在"); if (client.AllowedCorsOrigins.Any(e => e.Origin != origin)) { client.AddCorsOrigin(origin); @@ -255,7 +262,7 @@ namespace CompanyName.ProjectName.IdentityServer { origin = origin.Trim(); var client = await _clientRepository.FindByClientIdAsync(clientId); - if (client == null) throw new UserFriendlyException(message: "Client不存在"); + if (client == null) throw new UserFriendlyException(message: $"{clientId}不存在"); if (client.AllowedCorsOrigins.Any(e => e.Origin == origin)) { client.RemoveCorsOrigin(origin); @@ -268,7 +275,7 @@ namespace CompanyName.ProjectName.IdentityServer public async Task EnabledAsync(string clientId, bool enabled) { var client = await _clientRepository.FindByClientIdAsync(clientId); - if (client == null) throw new UserFriendlyException(message: "Client不存在"); + if (client == null) throw new UserFriendlyException(message: $"{clientId}不存在"); client.Enabled = enabled; return await _clientRepository.UpdateAsync(client); } diff --git a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdentityResourceManager.cs b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdentityResourceManager.cs index 47851281..c1172647 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdentityResourceManager.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.Domain/IdentityServer/IdentityResourceManager.cs @@ -25,7 +25,7 @@ namespace CompanyName.ProjectName.IdentityServer CancellationToken cancellationToken = default) { return _identityResourceRepository.GetListAsync( - "CreationTime", + "CreationTime desc", skipCount, maxResultCount, filter, diff --git a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Extensions/Filters/CustomHangfireAuthorizeFilter.cs b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Extensions/Filters/CustomHangfireAuthorizeFilter.cs index 2b33ea50..2bcbb982 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Extensions/Filters/CustomHangfireAuthorizeFilter.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Extensions/Filters/CustomHangfireAuthorizeFilter.cs @@ -8,9 +8,8 @@ namespace CompanyNameProjectName.Extensions.Filters { public bool Authorize(DashboardContext context) { - //var currentUser = context.GetHttpContext().RequestServices.GetRequiredService(); - //return currentUser.IsAuthenticated; - return true; + var _currentUser = context.GetHttpContext().RequestServices.GetRequiredService(); + return _currentUser.IsAuthenticated; } } } diff --git a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Logs/logs.txt b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Logs/logs.txt index 8910a1d5..d82b3271 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Logs/logs.txt +++ b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/Logs/logs.txt @@ -62470,3 +62470,11275 @@ System.OperationCanceledException: The operation was canceled. 2021-08-27 23:51:35.967 +08:00 [DBG] Added 0 entity changes to the current audit log 2021-08-27 23:51:35.971 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/api/app/account/login application/json 37 - 200 - application/json;+charset=utf-8 1767.6178ms 2021-08-27 23:51:41.555 +08:00 [DBG] Server szqh003802a:29444:fa8da7d9 heartbeat successfully sent +2021-09-02 10:08:21.909 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-02 10:08:27.628 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-02 10:08:27.751 +08:00 [INF] Loaded ABP modules: +2021-09-02 10:08:27.751 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-02 10:08:27.751 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-02 10:08:27.751 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-02 10:08:27.751 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-02 10:08:27.751 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-02 10:08:27.752 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-02 10:08:27.752 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-02 10:08:27.752 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-02 10:08:27.752 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-02 10:08:27.752 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-02 10:08:27.752 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-02 10:08:27.752 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-02 10:08:27.752 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-02 10:08:27.752 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-02 10:08:27.752 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-02 10:08:27.752 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-02 10:08:27.752 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-02 10:08:27.855 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-02 10:08:27.858 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-02 10:08:28.028 +08:00 [INF] DB tables already exist. Exit install +2021-09-02 10:08:28.053 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-02 10:08:28.053 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-02 10:08:28.053 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-02 10:08:28.053 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-02 10:08:28.072 +08:00 [DBG] Execution loop BackgroundServerProcess:3472509f has started in 5.9837 ms +2021-09-02 10:08:28.205 +08:00 [INF] Server szqh003802a:36160:42b3801c successfully announced in 130.9948 ms +2021-09-02 10:08:28.208 +08:00 [INF] Server szqh003802a:36160:42b3801c is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-02 10:08:28.209 +08:00 [DBG] Execution loop ServerHeartbeatProcess:529a4da5 has started in 3.1549 ms +2021-09-02 10:08:28.242 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:8f72b756 has started in 33.2144 ms +2021-09-02 10:08:28.242 +08:00 [DBG] Execution loop ServerWatchdog:54fa0d48 has started in 34.099 ms +2021-09-02 10:08:28.245 +08:00 [DBG] Execution loop ExpirationManager:dfae0ca3 has started in 2.6167 ms +2021-09-02 10:08:28.247 +08:00 [DBG] Execution loop CountersAggregator:d93c66f8 has started in 3.8015 ms +2021-09-02 10:08:28.249 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 10:08:28.249 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 10:08:28.250 +08:00 [DBG] Execution loop Worker:b1a7fc58 has started in 4.1328 ms +2021-09-02 10:08:28.252 +08:00 [DBG] Execution loop Worker:c5125a45 has started in 6.4575 ms +2021-09-02 10:08:28.255 +08:00 [DBG] Execution loop Worker:a630e4b1 has started in 8.8554 ms +2021-09-02 10:08:28.258 +08:00 [DBG] Execution loop Worker:3279add7 has started in 12.3274 ms +2021-09-02 10:08:28.260 +08:00 [DBG] Execution loop Worker:8be8d372 has started in 15.1709 ms +2021-09-02 10:08:28.263 +08:00 [DBG] Execution loop Worker:23d81a35 has started in 17.9748 ms +2021-09-02 10:08:28.266 +08:00 [DBG] Execution loop Worker:3a0b73aa has started in 21.0614 ms +2021-09-02 10:08:28.268 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 10:08:28.269 +08:00 [DBG] Execution loop Worker:4f562d66 has started in 23.9291 ms +2021-09-02 10:08:28.275 +08:00 [DBG] Execution loop Worker:ced118ee has started in 28.4299 ms +2021-09-02 10:08:28.278 +08:00 [DBG] Execution loop Worker:12dde896 has started in 32.7543 ms +2021-09-02 10:08:28.278 +08:00 [DBG] Execution loop Worker:ac84cbf5 has started in 32.983 ms +2021-09-02 10:08:28.283 +08:00 [DBG] Execution loop Worker:097fdac8 has started in 37.8462 ms +2021-09-02 10:08:28.289 +08:00 [DBG] Execution loop Worker:e8697612 has started in 43.6633 ms +2021-09-02 10:08:28.292 +08:00 [DBG] Execution loop Worker:36b13d59 has started in 46.3803 ms +2021-09-02 10:08:28.293 +08:00 [INF] 1 servers were removed due to timeout +2021-09-02 10:08:28.298 +08:00 [DBG] Execution loop Worker:a083419c has started in 52.7137 ms +2021-09-02 10:08:28.302 +08:00 [DBG] Execution loop Worker:df764efd has started in 56.808 ms +2021-09-02 10:08:28.307 +08:00 [DBG] Execution loop Worker:e214817e has started in 61.5669 ms +2021-09-02 10:08:28.312 +08:00 [DBG] Execution loop Worker:0ba89739 has started in 66.2347 ms +2021-09-02 10:08:28.315 +08:00 [DBG] Execution loop Worker:9972547b has started in 69.0493 ms +2021-09-02 10:08:28.320 +08:00 [DBG] removed records count=1 +2021-09-02 10:08:28.320 +08:00 [DBG] Execution loop Worker:a7c26ed0 has started in 74.2678 ms +2021-09-02 10:08:28.331 +08:00 [INF] Server szqh003802a:36160:42b3801c all the dispatchers started +2021-09-02 10:08:28.331 +08:00 [DBG] Execution loop DelayedJobScheduler:cf49ab2d has started in 14.6079 ms +2021-09-02 10:08:28.335 +08:00 [DBG] Execution loop RecurringJobScheduler:4c50904a has started in 12.6805 ms +2021-09-02 10:08:29.237 +08:00 [INF] Initialized all ABP modules. +2021-09-02 10:08:29.311 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-02 10:08:29.312 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-02 10:08:29.312 +08:00 [INF] Hosting environment: Development +2021-09-02 10:08:29.312 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-02 10:08:29.336 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 10:08:29.346 +08:00 [DBG] removed records count=0 +2021-09-02 10:08:29.347 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 10:08:29.348 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 10:08:29.362 +08:00 [DBG] removed records count=1 +2021-09-02 10:08:30.031 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-02 10:08:30.366 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 10:08:30.378 +08:00 [DBG] removed records count=0 +2021-09-02 10:08:30.384 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 10:08:30.386 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 10:08:30.400 +08:00 [DBG] removed records count=0 +2021-09-02 10:08:30.401 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 10:08:30.403 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 10:08:30.416 +08:00 [DBG] removed records count=0 +2021-09-02 10:08:30.423 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 10:08:30.424 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 10:08:30.437 +08:00 [DBG] removed records count=0 +2021-09-02 10:08:33.920 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 10:08:34.051 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-02 10:08:34.108 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-02 10:08:34.122 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 63.2533ms +2021-09-02 10:08:34.122 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 10:08:34.153 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 4127.0360ms +2021-09-02 10:08:34.173 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger - - +2021-09-02 10:08:34.181 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger - - - 301 0 - 8.3420ms +2021-09-02 10:08:34.185 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 10:08:34.259 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 74.6864ms +2021-09-02 10:08:34.284 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/ui/abp.js - - +2021-09-02 10:08:34.287 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/ui/abp.swagger.js - - +2021-09-02 10:08:34.287 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/swagger-ui.css - - +2021-09-02 10:08:34.289 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/swagger-ui-bundle.js - - +2021-09-02 10:08:34.289 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/swagger-ui-standalone-preset.js - - +2021-09-02 10:08:34.316 +08:00 [INF] Sending file. Request path: '/swagger/ui/abp.swagger.js'. Physical path: 'N/A' +2021-09-02 10:08:34.316 +08:00 [INF] Sending file. Request path: '/swagger/ui/abp.js'. Physical path: 'N/A' +2021-09-02 10:08:34.317 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/ui/abp.swagger.js - - - 200 1026 application/javascript 29.9274ms +2021-09-02 10:08:34.317 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/ui/abp.js - - - 200 3025 application/javascript 32.4772ms +2021-09-02 10:08:34.329 +08:00 [INF] Sending file. Request path: '/swagger-ui.css'. Physical path: 'N/A' +2021-09-02 10:08:34.338 +08:00 [INF] Sending file. Request path: '/swagger-ui-standalone-preset.js'. Physical path: 'N/A' +2021-09-02 10:08:34.341 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/swagger-ui.css - - - 200 143410 text/css 53.4469ms +2021-09-02 10:08:34.341 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/swagger-ui-standalone-preset.js - - - 200 336841 application/javascript 51.3267ms +2021-09-02 10:08:34.375 +08:00 [INF] Sending file. Request path: '/swagger-ui-bundle.js'. Physical path: 'N/A' +2021-09-02 10:08:34.375 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/swagger-ui-bundle.js - - - 200 1097461 application/javascript 86.7655ms +2021-09-02 10:08:34.557 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 10:08:34.577 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/favicon-32x32.png - - +2021-09-02 10:08:34.583 +08:00 [INF] Sending file. Request path: '/favicon-32x32.png'. Physical path: 'N/A' +2021-09-02 10:08:34.583 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/favicon-32x32.png - - - 200 628 image/png 6.3492ms +2021-09-02 10:08:35.124 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 566.9580ms +2021-09-02 10:08:55.588 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:09:00.152 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:09:01.067 +08:00 [DBG] 224 recurring job(s) processed by scheduler. +2021-09-02 10:09:30.176 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:10:00.290 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:10:32.626 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:10:41.181 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:11:01.069 +08:00 [DBG] 754 recurring job(s) processed by scheduler. +2021-09-02 10:11:07.123 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:11:37.259 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:12:07.287 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:12:41.239 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:12:41.291 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:13:01.063 +08:00 [DBG] 785 recurring job(s) processed by scheduler. +2021-09-02 10:13:14.425 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:13:35.519 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 10:13:44.537 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:14:14.574 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:14:45.858 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:14:57.052 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:15:01.059 +08:00 [DBG] 154 recurring job(s) processed by scheduler. +2021-09-02 10:15:15.889 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:15:45.912 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:16:15.948 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:16:46.002 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:17:01.071 +08:00 [DBG] 616 recurring job(s) processed by scheduler. +2021-09-02 10:17:18.480 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:17:48.510 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:18:18.528 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:18:35.537 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 10:18:48.957 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:19:01.070 +08:00 [DBG] 617 recurring job(s) processed by scheduler. +2021-09-02 10:19:19.002 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:19:49.029 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:20:19.128 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:20:49.272 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:21:01.623 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 10:21:19.295 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:21:49.409 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:22:19.425 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:22:49.534 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:23:02.157 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 10:23:19.574 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:23:35.562 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 10:23:49.601 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:24:19.632 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:24:49.666 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:25:20.119 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:25:41.803 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:25:56.194 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:26:01.074 +08:00 [DBG] 760 recurring job(s) processed by scheduler. +2021-09-02 10:26:26.201 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:26:56.289 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:27:28.098 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:27:43.091 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:27:59.174 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:28:01.063 +08:00 [DBG] 622 recurring job(s) processed by scheduler. +2021-09-02 10:28:29.201 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:28:35.582 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 10:28:59.238 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:29:29.299 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:29:56.218 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:30:01.083 +08:00 [DBG] 198 recurring job(s) processed by scheduler. +2021-09-02 10:30:02.723 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:30:32.762 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:31:02.866 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:31:33.243 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:31:56.034 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:32:01.075 +08:00 [DBG] 188 recurring job(s) processed by scheduler. +2021-09-02 10:32:07.873 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:32:37.983 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:33:08.054 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:33:35.739 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 10:33:38.179 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:34:01.062 +08:00 [DBG] 612 recurring job(s) processed by scheduler. +2021-09-02 10:34:10.120 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:34:40.170 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:35:10.297 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:35:40.363 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:36:01.089 +08:00 [DBG] 589 recurring job(s) processed by scheduler. +2021-09-02 10:36:12.768 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:36:42.865 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:37:12.985 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:37:43.016 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:38:01.554 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 10:38:13.088 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:38:35.803 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 10:38:43.208 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:39:13.282 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:39:43.324 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:40:15.242 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:40:26.025 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:40:50.459 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:40:50.868 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:41:01.057 +08:00 [DBG] 452 recurring job(s) processed by scheduler. +2021-09-02 10:41:22.631 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:41:52.753 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:42:24.070 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:42:41.168 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:42:59.767 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:43:01.065 +08:00 [DBG] 824 recurring job(s) processed by scheduler. +2021-09-02 10:43:30.080 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:43:43.293 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 10:44:00.200 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:44:32.860 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:44:41.137 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:45:01.069 +08:00 [DBG] 841 recurring job(s) processed by scheduler. +2021-09-02 10:45:07.425 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:45:37.458 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:46:07.493 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:46:37.846 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:46:55.297 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:47:01.084 +08:00 [DBG] 231 recurring job(s) processed by scheduler. +2021-09-02 10:47:11.759 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:47:41.865 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:48:11.930 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:48:42.038 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:48:43.434 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 10:49:01.095 +08:00 [DBG] 494 recurring job(s) processed by scheduler. +2021-09-02 10:49:14.516 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:49:44.559 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:50:14.644 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:50:44.710 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:51:01.072 +08:00 [DBG] 609 recurring job(s) processed by scheduler. +2021-09-02 10:51:16.926 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:51:46.983 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:52:17.066 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:52:47.162 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:53:01.640 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 10:53:17.238 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:53:43.442 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 10:53:47.289 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:54:17.311 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:54:47.371 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:55:02.214 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 10:55:17.457 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:55:47.530 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:56:17.583 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:56:47.637 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:57:17.713 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:57:43.605 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 10:57:53.211 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:58:01.062 +08:00 [DBG] 700 recurring job(s) processed by scheduler. +2021-09-02 10:58:23.250 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:58:43.550 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 10:58:53.269 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:59:24.497 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 10:59:41.686 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:00:00.288 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:00:01.077 +08:00 [DBG] 779 recurring job(s) processed by scheduler. +2021-09-02 11:00:30.319 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:01:00.416 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:01:30.463 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:01:55.492 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:02:01.064 +08:00 [DBG] 230 recurring job(s) processed by scheduler. +2021-09-02 11:02:05.212 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:02:35.326 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:03:05.353 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:03:36.218 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:03:44.211 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 11:03:55.983 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:04:01.062 +08:00 [DBG] 208 recurring job(s) processed by scheduler. +2021-09-02 11:04:09.753 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:04:39.801 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:05:09.849 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:05:39.878 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:06:01.057 +08:00 [DBG] 596 recurring job(s) processed by scheduler. +2021-09-02 11:06:12.299 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:06:42.317 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:07:12.389 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:07:42.520 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:08:01.077 +08:00 [DBG] 591 recurring job(s) processed by scheduler. +2021-09-02 11:08:14.982 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:08:30.297 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 11:08:30.298 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 11:08:30.306 +08:00 [DBG] removed records count=0 +2021-09-02 11:08:30.307 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 11:08:30.308 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 11:08:30.316 +08:00 [DBG] removed records count=0 +2021-09-02 11:08:30.317 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 11:08:30.318 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 11:08:30.326 +08:00 [DBG] removed records count=0 +2021-09-02 11:08:30.327 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 11:08:30.328 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 11:08:30.335 +08:00 [DBG] removed records count=0 +2021-09-02 11:08:30.336 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 11:08:30.337 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 11:08:30.344 +08:00 [DBG] removed records count=0 +2021-09-02 11:08:44.284 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 11:08:45.070 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:09:15.202 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:09:45.269 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:10:01.733 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 11:10:15.414 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:10:45.522 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:11:15.660 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:11:45.689 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:12:17.943 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:12:28.985 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:12:52.639 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:12:54.962 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:13:01.061 +08:00 [DBG] 235 recurring job(s) processed by scheduler. +2021-09-02 11:13:22.669 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:13:44.342 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 11:13:52.705 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:14:23.894 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:14:39.842 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:14:59.794 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:15:01.064 +08:00 [DBG] 921 recurring job(s) processed by scheduler. +2021-09-02 11:15:30.133 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:16:00.263 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:16:32.954 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:16:40.440 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:17:01.080 +08:00 [DBG] 856 recurring job(s) processed by scheduler. +2021-09-02 11:17:03.125 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:17:33.135 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:18:03.195 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:18:33.422 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:18:46.639 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 11:18:56.891 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:19:01.064 +08:00 [DBG] 161 recurring job(s) processed by scheduler. +2021-09-02 11:19:07.829 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:19:37.855 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:20:07.877 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:20:37.996 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:21:01.067 +08:00 [DBG] 592 recurring job(s) processed by scheduler. +2021-09-02 11:21:10.101 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:21:40.120 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:22:10.258 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:22:40.278 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:23:01.080 +08:00 [DBG] 560 recurring job(s) processed by scheduler. +2021-09-02 11:23:12.608 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:23:42.729 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:23:46.639 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 11:24:12.863 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:24:42.882 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:25:01.678 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 11:25:13.030 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:25:43.134 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:26:13.180 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:26:43.289 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:27:02.221 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 11:27:13.332 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:27:43.346 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:28:13.416 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:28:43.537 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:28:46.752 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 11:29:13.658 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:29:40.785 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:29:48.314 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:30:01.072 +08:00 [DBG] 890 recurring job(s) processed by scheduler. +2021-09-02 11:30:20.484 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:30:50.595 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:31:21.503 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:31:39.524 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:31:55.388 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:32:01.079 +08:00 [DBG] 919 recurring job(s) processed by scheduler. +2021-09-02 11:32:25.416 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:32:55.482 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:33:25.504 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:33:49.858 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 11:34:00.374 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:34:00.586 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:34:01.082 +08:00 [DBG] 15 recurring job(s) processed by scheduler. +2021-09-02 11:34:30.393 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:35:00.411 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:35:30.474 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:35:54.253 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:36:01.073 +08:00 [DBG] 295 recurring job(s) processed by scheduler. +2021-09-02 11:36:05.369 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:36:35.448 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:37:05.517 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:37:35.584 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:38:01.060 +08:00 [DBG] 621 recurring job(s) processed by scheduler. +2021-09-02 11:38:08.003 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:38:38.113 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:38:52.451 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 11:39:08.166 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:39:38.195 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:40:01.085 +08:00 [DBG] 571 recurring job(s) processed by scheduler. +2021-09-02 11:40:10.477 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:40:40.551 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:41:10.623 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:41:40.684 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:42:01.585 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 11:42:10.818 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:42:40.949 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:43:11.065 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:43:41.096 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:43:52.511 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 11:44:12.891 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:44:26.563 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:44:48.505 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:44:50.927 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:45:01.066 +08:00 [DBG] 417 recurring job(s) processed by scheduler. +2021-09-02 11:45:20.217 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:45:50.250 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:46:20.965 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:46:42.907 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:46:52.232 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:47:01.064 +08:00 [DBG] 742 recurring job(s) processed by scheduler. +2021-09-02 11:47:22.285 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:47:52.347 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:48:23.519 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:48:41.043 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:48:59.089 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:48:59.288 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 11:49:01.076 +08:00 [DBG] 774 recurring job(s) processed by scheduler. +2021-09-02 11:49:29.545 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:49:59.555 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:50:29.598 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:50:56.077 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 11:51:01.083 +08:00 [DBG] 194 recurring job(s) processed by scheduler. +2021-09-02 11:51:04.095 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:51:34.162 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:52:04.178 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:52:34.200 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:53:01.066 +08:00 [DBG] 589 recurring job(s) processed by scheduler. +2021-09-02 11:53:05.462 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:53:35.533 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:53:59.288 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 11:54:05.591 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:54:35.704 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:55:01.067 +08:00 [DBG] 626 recurring job(s) processed by scheduler. +2021-09-02 11:55:07.135 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:55:37.219 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:56:07.262 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:56:37.300 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:57:01.564 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 11:57:07.371 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:57:37.464 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:58:07.504 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:58:37.559 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:58:59.289 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 11:59:01.903 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 11:59:07.600 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 11:59:37.686 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:00:07.717 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:00:37.729 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:01:07.755 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:01:41.284 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:01:46.636 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:02:01.108 +08:00 [DBG] 355 recurring job(s) processed by scheduler. +2021-09-02 12:02:13.589 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:02:43.722 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:03:13.891 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:03:47.100 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:03:48.404 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:04:02.609 +08:00 [DBG] 535 recurring job(s) processed by scheduler. +2021-09-02 12:04:08.380 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 12:04:20.209 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:04:50.282 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:05:20.417 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:05:53.705 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:05:58.824 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:06:01.134 +08:00 [DBG] 49 recurring job(s) processed by scheduler. +2021-09-02 12:06:24.794 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:06:54.830 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:07:24.852 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:07:57.002 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:07:58.422 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:08:01.072 +08:00 [DBG] 158 recurring job(s) processed by scheduler. +2021-09-02 12:08:28.456 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:08:30.222 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 12:08:30.224 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 12:08:30.232 +08:00 [DBG] removed records count=0 +2021-09-02 12:08:30.233 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 12:08:30.234 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 12:08:30.242 +08:00 [DBG] removed records count=0 +2021-09-02 12:08:30.243 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 12:08:30.244 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 12:08:30.253 +08:00 [DBG] removed records count=0 +2021-09-02 12:08:30.254 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 12:08:30.256 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 12:08:30.264 +08:00 [DBG] removed records count=0 +2021-09-02 12:08:30.265 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 12:08:30.266 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 12:08:30.275 +08:00 [DBG] removed records count=0 +2021-09-02 12:08:58.580 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:09:08.583 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 12:09:28.596 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:10:00.621 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:10:01.090 +08:00 [DBG] 486 recurring job(s) processed by scheduler. +2021-09-02 12:10:30.644 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:11:00.709 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:11:30.816 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:12:01.083 +08:00 [DBG] 564 recurring job(s) processed by scheduler. +2021-09-02 12:12:03.068 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:12:33.097 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:13:03.116 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:13:33.144 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:14:01.544 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 12:14:03.237 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:14:08.715 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 12:14:33.311 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:15:03.336 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:15:33.360 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:16:03.628 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:16:26.333 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:16:39.083 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:16:50.944 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:17:01.079 +08:00 [DBG] 416 recurring job(s) processed by scheduler. +2021-09-02 12:17:12.559 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:17:42.623 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:18:12.752 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:18:41.504 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:18:44.154 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:19:01.085 +08:00 [DBG] 767 recurring job(s) processed by scheduler. +2021-09-02 12:19:12.823 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 12:19:16.863 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:19:46.937 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:20:17.196 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:20:41.097 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:20:52.941 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:21:01.058 +08:00 [DBG] 861 recurring job(s) processed by scheduler. +2021-09-02 12:21:22.949 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:21:53.032 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:22:23.070 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:22:54.412 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:22:56.323 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:23:01.067 +08:00 [DBG] 271 recurring job(s) processed by scheduler. +2021-09-02 12:23:27.178 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:23:57.298 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:24:13.831 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 12:24:27.416 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:24:59.578 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:25:01.067 +08:00 [DBG] 639 recurring job(s) processed by scheduler. +2021-09-02 12:25:29.628 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:25:59.648 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:26:29.716 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:27:01.060 +08:00 [DBG] 610 recurring job(s) processed by scheduler. +2021-09-02 12:27:02.055 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:27:32.195 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:28:02.210 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:28:32.283 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:29:01.664 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 12:29:02.325 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:29:13.899 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 12:29:32.385 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:30:02.501 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:30:32.601 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:31:02.218 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 12:31:02.627 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:31:32.650 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:32:02.663 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:32:32.730 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:33:02.853 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:33:35.628 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:33:41.831 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:34:01.058 +08:00 [DBG] 687 recurring job(s) processed by scheduler. +2021-09-02 12:34:09.599 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:34:17.891 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 12:34:39.625 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:35:09.676 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:35:41.713 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:35:43.865 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:36:01.075 +08:00 [DBG] 773 recurring job(s) processed by scheduler. +2021-09-02 12:36:16.564 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:36:46.631 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:37:16.660 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:37:49.425 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:37:56.861 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:38:01.078 +08:00 [DBG] 168 recurring job(s) processed by scheduler. +2021-09-02 12:38:21.358 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:38:51.383 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:39:18.011 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 12:39:21.519 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:39:55.153 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:39:55.414 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:40:01.094 +08:00 [DBG] 251 recurring job(s) processed by scheduler. +2021-09-02 12:40:25.447 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:40:55.570 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:41:25.590 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:41:57.316 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:42:01.075 +08:00 [DBG] 570 recurring job(s) processed by scheduler. +2021-09-02 12:42:27.375 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:42:57.513 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:43:27.532 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:43:59.727 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:44:01.077 +08:00 [DBG] 635 recurring job(s) processed by scheduler. +2021-09-02 12:44:20.486 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 12:44:30.047 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:45:00.064 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:45:30.140 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:46:00.229 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:46:01.728 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 12:46:30.370 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:47:00.486 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:47:30.600 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:48:00.720 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:48:24.991 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:48:35.143 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:48:47.860 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:49:01.057 +08:00 [DBG] 571 recurring job(s) processed by scheduler. +2021-09-02 12:49:09.420 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:49:29.265 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 12:49:39.442 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:50:09.451 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:50:39.266 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:50:43.980 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:51:01.066 +08:00 [DBG] 954 recurring job(s) processed by scheduler. +2021-09-02 12:51:16.863 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:51:46.967 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:52:17.096 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:52:38.961 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:52:52.969 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:53:01.071 +08:00 [DBG] 972 recurring job(s) processed by scheduler. +2021-09-02 12:53:22.996 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:53:53.103 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:54:23.144 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:54:29.303 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 12:54:56.447 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 12:54:57.115 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:55:01.066 +08:00 [DBG] 184 recurring job(s) processed by scheduler. +2021-09-02 12:55:27.163 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:55:57.225 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:56:27.326 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:56:59.356 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:57:01.073 +08:00 [DBG] 596 recurring job(s) processed by scheduler. +2021-09-02 12:57:29.408 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:57:59.458 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:58:29.566 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:58:59.753 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 12:59:01.073 +08:00 [DBG] 644 recurring job(s) processed by scheduler. +2021-09-02 12:59:29.835 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 12:59:30.104 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:00:00.211 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:00:30.332 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:01:00.359 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:01:01.702 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 13:01:30.404 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:02:00.455 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:02:30.497 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:03:00.571 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:03:02.400 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 13:03:30.718 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:04:00.767 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:04:29.936 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 13:04:30.876 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:05:00.986 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:05:33.501 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:05:41.832 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:06:01.061 +08:00 [DBG] 841 recurring job(s) processed by scheduler. +2021-09-02 13:06:08.068 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:06:38.177 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:07:08.195 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:07:39.107 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:07:42.523 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:08:01.073 +08:00 [DBG] 963 recurring job(s) processed by scheduler. +2021-09-02 13:08:15.618 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:08:30.137 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 13:08:30.139 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 13:08:30.146 +08:00 [DBG] removed records count=0 +2021-09-02 13:08:30.147 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 13:08:30.148 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 13:08:30.155 +08:00 [DBG] removed records count=0 +2021-09-02 13:08:30.156 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 13:08:30.157 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 13:08:30.164 +08:00 [DBG] removed records count=0 +2021-09-02 13:08:30.165 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 13:08:30.166 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 13:08:30.174 +08:00 [DBG] removed records count=0 +2021-09-02 13:08:30.175 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 13:08:30.176 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 13:08:30.184 +08:00 [DBG] removed records count=0 +2021-09-02 13:08:45.643 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:09:15.683 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:09:29.959 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 13:09:48.509 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:09:54.018 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:10:01.062 +08:00 [DBG] 312 recurring job(s) processed by scheduler. +2021-09-02 13:10:20.640 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:10:50.683 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:11:20.772 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:11:54.111 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:11:54.553 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:12:01.075 +08:00 [DBG] 304 recurring job(s) processed by scheduler. +2021-09-02 13:12:25.702 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:12:55.777 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:13:25.874 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:13:57.670 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:14:01.073 +08:00 [DBG] 641 recurring job(s) processed by scheduler. +2021-09-02 13:14:28.321 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:14:32.450 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 13:14:58.430 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:15:28.462 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:16:00.590 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:16:01.058 +08:00 [DBG] 639 recurring job(s) processed by scheduler. +2021-09-02 13:16:30.799 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:17:00.818 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:17:30.903 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:18:00.927 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:18:01.547 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 13:18:31.066 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:19:01.079 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:19:31.104 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:19:32.501 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 13:20:01.214 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:20:24.812 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:20:36.851 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:20:47.755 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:21:01.079 +08:00 [DBG] 584 recurring job(s) processed by scheduler. +2021-09-02 13:21:10.819 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:21:40.932 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:22:11.021 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:22:38.959 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:22:45.847 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:23:01.077 +08:00 [DBG] 977 recurring job(s) processed by scheduler. +2021-09-02 13:23:18.409 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:23:48.441 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:24:18.700 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:24:34.114 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 13:24:39.851 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:24:53.628 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:25:01.066 +08:00 [DBG] 910 recurring job(s) processed by scheduler. +2021-09-02 13:25:23.661 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:25:53.696 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:26:23.813 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:26:53.837 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:26:56.092 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:27:01.059 +08:00 [DBG] 320 recurring job(s) processed by scheduler. +2021-09-02 13:27:26.122 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:27:56.155 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:28:26.229 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:28:56.714 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:29:01.065 +08:00 [DBG] 629 recurring job(s) processed by scheduler. +2021-09-02 13:29:26.733 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:29:34.171 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 13:29:56.760 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:30:26.781 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:30:58.836 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:31:01.062 +08:00 [DBG] 653 recurring job(s) processed by scheduler. +2021-09-02 13:31:28.870 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:31:58.914 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:32:28.948 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:32:58.973 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:33:01.408 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 13:33:29.118 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:33:59.235 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:34:29.270 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:34:34.193 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 13:34:59.379 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:35:02.041 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 13:35:29.404 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:35:59.417 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:36:29.474 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:36:59.587 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:37:32.138 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:37:47.158 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:38:01.095 +08:00 [DBG] 466 recurring job(s) processed by scheduler. +2021-09-02 13:38:07.119 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:38:37.183 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:39:07.299 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:39:37.856 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 13:39:39.722 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:39:41.402 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:40:01.066 +08:00 [DBG] 915 recurring job(s) processed by scheduler. +2021-09-02 13:40:14.726 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:40:44.799 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:41:14.824 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:41:47.494 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:41:53.894 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:42:01.059 +08:00 [DBG] 313 recurring job(s) processed by scheduler. +2021-09-02 13:42:19.044 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:42:49.089 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:43:19.196 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:43:52.686 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:43:54.266 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:44:01.066 +08:00 [DBG] 295 recurring job(s) processed by scheduler. +2021-09-02 13:44:22.736 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:44:37.937 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 13:44:52.865 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:45:22.907 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:45:54.172 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:46:01.058 +08:00 [DBG] 632 recurring job(s) processed by scheduler. +2021-09-02 13:46:24.179 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:46:54.217 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:47:24.331 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:47:55.977 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:48:01.085 +08:00 [DBG] 488 recurring job(s) processed by scheduler. +2021-09-02 13:48:26.037 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:48:56.075 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:49:26.147 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:49:37.986 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 13:49:56.217 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:50:01.613 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 13:50:26.251 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:50:56.287 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:51:26.345 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:51:56.381 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:52:25.303 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:52:31.252 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:52:48.629 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:53:01.069 +08:00 [DBG] 533 recurring job(s) processed by scheduler. +2021-09-02 13:53:06.472 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:53:36.533 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:54:06.595 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:54:38.886 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:54:40.724 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:54:42.446 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 13:55:01.071 +08:00 [DBG] 980 recurring job(s) processed by scheduler. +2021-09-02 13:55:14.188 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:55:44.288 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:56:14.363 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:56:39.086 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:56:50.066 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:57:01.077 +08:00 [DBG] 962 recurring job(s) processed by scheduler. +2021-09-02 13:57:21.988 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:57:52.048 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:58:22.111 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:58:54.255 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 13:58:55.747 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:59:01.077 +08:00 [DBG] 298 recurring job(s) processed by scheduler. +2021-09-02 13:59:26.752 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 13:59:42.477 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 13:59:56.792 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:00:26.873 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:00:57.125 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:01:01.072 +08:00 [DBG] 627 recurring job(s) processed by scheduler. +2021-09-02 14:01:27.876 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:01:57.898 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:02:27.955 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:03:00.356 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:03:01.062 +08:00 [DBG] 625 recurring job(s) processed by scheduler. +2021-09-02 14:03:30.424 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:04:00.439 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:04:30.566 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:04:42.624 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 14:05:00.701 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:05:01.693 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 14:05:30.832 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:06:00.849 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:06:30.937 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:07:01.007 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:07:02.274 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 14:07:31.147 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:08:01.195 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:08:30.022 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 14:08:30.024 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 14:08:30.034 +08:00 [DBG] removed records count=0 +2021-09-02 14:08:30.035 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 14:08:30.036 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 14:08:30.047 +08:00 [DBG] removed records count=0 +2021-09-02 14:08:30.048 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 14:08:30.049 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 14:08:30.059 +08:00 [DBG] removed records count=0 +2021-09-02 14:08:30.060 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 14:08:30.061 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 14:08:30.070 +08:00 [DBG] removed records count=0 +2021-09-02 14:08:30.071 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 14:08:30.073 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 14:08:30.081 +08:00 [DBG] removed records count=0 +2021-09-02 14:08:31.245 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:09:01.297 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:09:33.885 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:09:45.300 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:09:47.210 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 14:10:01.114 +08:00 [DBG] 565 recurring job(s) processed by scheduler. +2021-09-02 14:10:08.059 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:10:38.157 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:11:08.207 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:11:41.288 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:11:42.084 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:12:01.088 +08:00 [DBG] 819 recurring job(s) processed by scheduler. +2021-09-02 14:12:15.220 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:12:45.262 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:13:15.378 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:13:18.367 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/api/app/account/login - - +2021-09-02 14:13:18.390 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:13:18.398 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/api/app/account/login - - - 204 - - 30.6100ms +2021-09-02 14:13:18.401 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/api/app/account/login application/json 37 +2021-09-02 14:13:18.402 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:13:18.415 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:13:18.445 +08:00 [INF] Route matched with {action = "Login", controller = "Account", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[CompanyName.ProjectName.Users.Dtos.LoginOutput] LoginAsync(CompanyName.ProjectName.Users.Dtos.LoginInput) on controller CompanyName.ProjectName.Controllers.Systems.AccountController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:13:20.030 +08:00 [WRN] The cookie '.AspNetCore.Identity.Application' has set 'SameSite=None' and must also set 'Secure'. +2021-09-02 14:13:20.033 +08:00 [INF] AuthenticationScheme: Identity.Application signed in. +2021-09-02 14:13:20.124 +08:00 [INF] Executing ObjectResult, writing value of type 'CompanyName.ProjectName.Users.Dtos.LoginOutput'. +2021-09-02 14:13:20.138 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi) in 1693.5859ms +2021-09-02 14:13:20.139 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:13:20.150 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:20.350 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:20.350 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:20.354 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/api/app/account/login application/json 37 - 200 - application/json;+charset=utf-8 1953.6736ms +2021-09-02 14:13:20.357 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/api/abp/application-configuration - - +2021-09-02 14:13:20.358 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:13:20.358 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/api/abp/application-configuration - - - 204 - - 0.6560ms +2021-09-02 14:13:20.360 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/api/abp/application-configuration - - +2021-09-02 14:13:20.361 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:13:20.386 +08:00 [INF] Successfully validated the token. +2021-09-02 14:13:20.494 +08:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' +2021-09-02 14:13:20.496 +08:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationConfiguration", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto] GetAsync() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController (Volo.Abp.AspNetCore.Mvc). +2021-09-02 14:13:20.528 +08:00 [WRN] The cookie 'XSRF-TOKEN' has set 'SameSite=None' and must also set 'Secure'. +2021-09-02 14:13:20.533 +08:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... +2021-09-02 14:13:20.732 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:FeatureManagement.ManageHostFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:SettingManagement.Emailing,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-02 14:13:20.774 +08:00 [DBG] Not found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:FeatureManagement.ManageHostFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:SettingManagement.Emailing,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-02 14:13:20.778 +08:00 [DBG] Getting not cache granted permissions from the repository for this provider name,key: U,39fe52c6-27a0-d54c-0b47-4133f044c8fa +2021-09-02 14:13:20.818 +08:00 [DBG] Setting the cache items. Count: 21 +2021-09-02 14:13:20.839 +08:00 [DBG] Finished setting the cache items. Count: 21 +2021-09-02 14:13:20.849 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Roles.Query,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable,pn:R,pk:admin,n:AbpIdentity.Users.Query,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-02 14:13:20.852 +08:00 [DBG] Not found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Roles.Query,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable,pn:R,pk:admin,n:AbpIdentity.Users.Query,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-02 14:13:20.852 +08:00 [DBG] Getting not cache granted permissions from the repository for this provider name,key: R,admin +2021-09-02 14:13:20.866 +08:00 [DBG] Setting the cache items. Count: 21 +2021-09-02 14:13:20.872 +08:00 [DBG] Finished setting the cache items. Count: 21 +2021-09-02 14:13:21.513 +08:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). +2021-09-02 14:13:21.514 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto'. +2021-09-02 14:13:21.539 +08:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 1042.7361ms +2021-09-02 14:13:21.539 +08:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' +2021-09-02 14:13:21.545 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:21.547 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:21.548 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:21.564 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/api/abp/application-configuration - - - 200 - application/json;+charset=utf-8 1203.8606ms +2021-09-02 14:13:28.422 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 14:13:28.422 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:13:28.423 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.8004ms +2021-09-02 14:13:28.425 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 14:13:28.426 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:13:28.428 +08:00 [INF] Successfully validated the token. +2021-09-02 14:13:28.442 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:13:28.454 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:13:28.457 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:13:28.460 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:13:28.464 +08:00 [INF] Authorization was successful. +2021-09-02 14:13:28.467 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:13:28.470 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 14:13:28.918 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:13:28.934 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 463.3657ms +2021-09-02 14:13:28.934 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:13:28.937 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:28.971 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:28.972 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:28.973 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 548.1421ms +2021-09-02 14:13:32.270 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-09-02 14:13:32.270 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:13:32.270 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 0.6480ms +2021-09-02 14:13:32.272 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 +2021-09-02 14:13:32.273 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:13:32.277 +08:00 [INF] Successfully validated the token. +2021-09-02 14:13:32.278 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:13:32.282 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:13:32.282 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:13:32.286 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:13:32.286 +08:00 [INF] Authorization was successful. +2021-09-02 14:13:32.287 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:13:32.292 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:13:32.497 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:13:32.500 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 208.1873ms +2021-09-02 14:13:32.500 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:13:32.505 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:32.543 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:32.543 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:32.544 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 - 200 - application/json;+charset=utf-8 272.3920ms +2021-09-02 14:13:35.403 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 14:13:35.405 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:13:35.405 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 1.6275ms +2021-09-02 14:13:35.406 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 14:13:35.408 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:13:35.410 +08:00 [INF] Successfully validated the token. +2021-09-02 14:13:35.412 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:13:35.414 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:13:35.853 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:13:35.871 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 456.1099ms +2021-09-02 14:13:35.871 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:13:35.904 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:35.939 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:35.939 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:13:35.939 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 532.8055ms +2021-09-02 14:13:46.201 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:13:57.972 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:14:01.093 +08:00 [DBG] 113 recurring job(s) processed by scheduler. +2021-09-02 14:14:16.724 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:14:46.750 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:14:47.232 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 14:15:16.883 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:15:26.392 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 14:15:26.393 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:15:26.393 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5165ms +2021-09-02 14:15:26.396 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 14:15:26.396 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:15:26.398 +08:00 [INF] Successfully validated the token. +2021-09-02 14:15:26.400 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:15:26.400 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:15:26.461 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:15:26.463 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 62.3704ms +2021-09-02 14:15:26.463 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:15:26.469 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:15:26.505 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:15:26.505 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:15:26.505 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 109.5073ms +2021-09-02 14:15:49.920 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:15:55.937 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:16:01.068 +08:00 [DBG] 198 recurring job(s) processed by scheduler. +2021-09-02 14:16:19.945 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:16:50.059 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:17:20.075 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:17:50.793 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:18:01.066 +08:00 [DBG] 606 recurring job(s) processed by scheduler. +2021-09-02 14:18:20.806 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:18:50.823 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:19:20.937 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:19:47.441 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 14:19:51.855 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:20:01.068 +08:00 [DBG] 593 recurring job(s) processed by scheduler. +2021-09-02 14:20:23.451 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:20:53.491 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:21:23.561 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:21:53.635 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:22:01.655 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 14:22:23.759 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:22:53.883 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:23:24.000 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:23:54.069 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:24:26.842 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:24:28.352 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:24:53.048 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:24:55.969 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 14:25:01.073 +08:00 [DBG] 297 recurring job(s) processed by scheduler. +2021-09-02 14:25:03.320 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:25:33.354 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:26:03.425 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:26:23.800 +08:00 [DBG] Execution Worker is in the Faulted state now due to an exception, execution will be retried no more than in 00:00:01 +MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 135 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-02 14:26:23.800 +08:00 [DBG] Execution loop Worker:c5125a45 caught an exception and will be retried in 00:00:01 +MySqlConnector.MySqlException (0x80004005): Deadlock found when trying to get lock; try restarting transaction + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 135 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteNonQueryAsync(IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 266 + at MySqlConnector.MySqlCommand.ExecuteNonQuery() in /_/src/MySqlConnector/MySqlCommand.cs:line 101 + at Dapper.SqlMapper.ExecuteCommand(IDbConnection cnn, CommandDefinition& command, Action`2 paramReader) in C:\projects\dapper\Dapper\SqlMapper.cs:line 2827 + at Dapper.SqlMapper.ExecuteImpl(IDbConnection cnn, CommandDefinition& command) in C:\projects\dapper\Dapper\SqlMapper.cs:line 570 + at Dapper.SqlMapper.Execute(IDbConnection cnn, String sql, Object param, IDbTransaction transaction, Nullable`1 commandTimeout, Nullable`1 commandType) in C:\projects\dapper\Dapper\SqlMapper.cs:line 443 + at Hangfire.MySql.JobQueue.MySqlJobQueue.Dequeue(String[] queues, CancellationToken cancellationToken) + at Hangfire.MySql.MySqlStorageConnection.FetchNextJob(String[] queues, CancellationToken cancellationToken) + at Hangfire.Server.Worker.Execute(BackgroundProcessContext context) + at Hangfire.Server.BackgroundProcessDispatcherBuilder.ExecuteProcess(Guid executionId, Object state) + at Hangfire.Processing.BackgroundExecution.Run(Action`2 callback, Object state) +2021-09-02 14:26:23.801 +08:00 [DBG] Execution loop Worker:c5125a45 will be retried in 00:00:01... +2021-09-02 14:26:35.186 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:26:42.172 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:27:01.083 +08:00 [DBG] 764 recurring job(s) processed by scheduler. +2021-09-02 14:27:07.765 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:27:14.054 +08:00 [INF] Execution Worker recovered from the Faulted state after 00:00:50.2564550 and is in the Running state now +2021-09-02 14:27:37.793 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:28:07.921 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:28:41.801 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:28:42.804 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:29:01.059 +08:00 [DBG] 717 recurring job(s) processed by scheduler. +2021-09-02 14:29:14.819 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:29:44.880 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:29:55.982 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 14:30:14.966 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:30:47.575 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:30:56.297 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:31:01.084 +08:00 [DBG] 191 recurring job(s) processed by scheduler. +2021-09-02 14:31:19.762 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:31:49.852 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:32:19.930 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:32:50.459 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:33:01.061 +08:00 [DBG] 604 recurring job(s) processed by scheduler. +2021-09-02 14:33:20.478 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:33:50.534 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:34:20.588 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:34:51.498 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:34:57.980 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 14:35:01.077 +08:00 [DBG] 631 recurring job(s) processed by scheduler. +2021-09-02 14:35:21.513 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:35:49.695 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 14:35:49.696 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:35:49.696 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6781ms +2021-09-02 14:35:49.697 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 14:35:49.698 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:35:49.701 +08:00 [INF] Successfully validated the token. +2021-09-02 14:35:49.702 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:35:49.705 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:35:50.077 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:35:50.081 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 376.001ms +2021-09-02 14:35:50.081 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:35:50.090 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:35:50.118 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:35:50.118 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:35:50.118 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 421.0863ms +2021-09-02 14:35:50.219 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 14:35:50.219 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:35:50.220 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.7151ms +2021-09-02 14:35:50.221 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 14:35:50.222 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:35:50.226 +08:00 [INF] Successfully validated the token. +2021-09-02 14:35:50.227 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:35:50.229 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:35:50.532 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:35:50.535 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 305.663ms +2021-09-02 14:35:50.535 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:35:50.543 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:35:50.582 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:35:50.582 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:35:50.582 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 361.0570ms +2021-09-02 14:35:51.546 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:36:05.591 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 14:36:05.592 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:36:05.592 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.6420ms +2021-09-02 14:36:05.594 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 14:36:05.594 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:36:05.597 +08:00 [INF] Successfully validated the token. +2021-09-02 14:36:05.598 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:36:05.600 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:36:05.936 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:36:05.939 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 338.676ms +2021-09-02 14:36:05.939 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:36:05.948 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:36:05.974 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:36:05.974 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:36:05.975 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 381.0353ms +2021-09-02 14:36:21.638 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:36:51.750 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:37:01.606 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 14:37:21.762 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:37:51.844 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:38:21.918 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:38:51.981 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:39:02.203 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 14:39:22.128 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:39:52.203 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:39:58.049 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 14:40:22.276 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:40:52.364 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:41:22.697 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:41:41.541 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:41:58.733 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:42:01.077 +08:00 [DBG] 808 recurring job(s) processed by scheduler. +2021-09-02 14:42:28.742 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:42:58.803 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:43:30.735 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:43:41.355 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:44:01.071 +08:00 [DBG] 817 recurring job(s) processed by scheduler. +2021-09-02 14:44:05.764 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:44:35.798 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:44:58.081 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 14:45:05.827 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:45:36.162 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:45:56.117 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:46:01.085 +08:00 [DBG] 200 recurring job(s) processed by scheduler. +2021-09-02 14:46:10.303 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:46:40.374 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:47:10.440 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:47:42.077 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:47:56.429 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:48:01.074 +08:00 [DBG] 183 recurring job(s) processed by scheduler. +2021-09-02 14:48:15.195 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:48:45.334 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:49:15.366 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:49:32.293 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 14:49:32.293 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:49:32.294 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.6860ms +2021-09-02 14:49:32.296 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 14:49:32.296 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:49:32.300 +08:00 [INF] Successfully validated the token. +2021-09-02 14:49:32.302 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:49:32.302 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:49:32.346 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:49:32.347 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.5425ms +2021-09-02 14:49:32.347 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:49:32.352 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:49:32.391 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:49:32.391 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:49:32.391 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 95.2778ms +2021-09-02 14:49:37.013 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 14:49:37.014 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:49:37.017 +08:00 [INF] Successfully validated the token. +2021-09-02 14:49:37.019 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:49:37.019 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:49:37.055 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:49:37.056 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.4384ms +2021-09-02 14:49:37.056 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:49:37.061 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:49:37.091 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:49:37.091 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:49:37.092 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 78.2077ms +2021-09-02 14:49:45.478 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:50:00.203 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 14:50:01.038 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 14:50:01.039 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:50:01.039 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4586ms +2021-09-02 14:50:01.041 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 14:50:01.041 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:50:01.043 +08:00 [INF] Successfully validated the token. +2021-09-02 14:50:01.047 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:50:01.047 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:50:01.090 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:50:01.091 +08:00 [DBG] 519 recurring job(s) processed by scheduler. +2021-09-02 14:50:01.092 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.2743ms +2021-09-02 14:50:01.092 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:50:01.097 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:50:01.130 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:50:01.130 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:50:01.131 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 90.3429ms +2021-09-02 14:50:05.105 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-09-02 14:50:05.105 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:50:05.105 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 0.4545ms +2021-09-02 14:50:05.107 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 +2021-09-02 14:50:05.107 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:50:05.109 +08:00 [INF] Successfully validated the token. +2021-09-02 14:50:05.110 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:50:05.112 +08:00 [DBG] Not found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:50:05.114 +08:00 [DBG] Getting all granted permissions from the repository for this provider name,key: U,39fe52c6-27a0-d54c-0b47-4133f044c8fa +2021-09-02 14:50:05.138 +08:00 [DBG] Setting the cache items. Count: 22 +2021-09-02 14:50:05.144 +08:00 [DBG] Finished setting the cache items. Count: 22 +2021-09-02 14:50:05.144 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:50:05.145 +08:00 [DBG] Not found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:50:05.145 +08:00 [DBG] Getting all granted permissions from the repository for this provider name,key: R,admin +2021-09-02 14:50:05.162 +08:00 [DBG] Setting the cache items. Count: 22 +2021-09-02 14:50:05.167 +08:00 [DBG] Finished setting the cache items. Count: 22 +2021-09-02 14:50:05.168 +08:00 [INF] Authorization was successful. +2021-09-02 14:50:05.169 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:50:05.169 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:50:05.199 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:50:05.200 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 31.6341ms +2021-09-02 14:50:05.200 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:50:05.203 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:50:05.232 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:50:05.232 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:50:05.232 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 - 200 - application/json;+charset=utf-8 125.1056ms +2021-09-02 14:50:06.554 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 14:50:06.554 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:50:06.555 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4441ms +2021-09-02 14:50:06.556 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 14:50:06.556 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:50:06.558 +08:00 [INF] Successfully validated the token. +2021-09-02 14:50:06.559 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:50:06.563 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:50:06.563 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:50:06.565 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:50:06.565 +08:00 [INF] Authorization was successful. +2021-09-02 14:50:06.566 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:50:06.566 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 14:50:06.601 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:50:06.604 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 37.6299ms +2021-09-02 14:50:06.604 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:50:06.607 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:50:06.636 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:50:06.636 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:50:06.637 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 80.6616ms +2021-09-02 14:50:17.804 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:50:47.835 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:51:08.027 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 14:51:08.027 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:51:08.027 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4392ms +2021-09-02 14:51:08.029 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 14:51:08.029 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:51:08.031 +08:00 [INF] Successfully validated the token. +2021-09-02 14:51:08.032 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:51:08.036 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:51:08.036 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:51:08.039 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:51:08.039 +08:00 [INF] Authorization was successful. +2021-09-02 14:51:08.040 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:51:08.040 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 14:51:08.075 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:51:08.079 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 38.5291ms +2021-09-02 14:51:08.079 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:51:08.082 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:51:08.126 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:51:08.126 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:51:08.126 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 97.7711ms +2021-09-02 14:51:17.984 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:51:48.340 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:52:01.072 +08:00 [DBG] 611 recurring job(s) processed by scheduler. +2021-09-02 14:52:20.350 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:52:50.463 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:53:20.474 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:53:22.026 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 14:53:22.026 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:22.027 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4762ms +2021-09-02 14:53:22.029 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 14:53:22.029 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:22.031 +08:00 [INF] Successfully validated the token. +2021-09-02 14:53:22.032 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:53:22.033 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 14:53:22.035 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:22.036 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 2.4680ms +2021-09-02 14:53:22.036 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:53:22.037 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:53:22.037 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 14:53:22.038 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:22.039 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:53:22.039 +08:00 [INF] Authorization was successful. +2021-09-02 14:53:22.040 +08:00 [INF] Successfully validated the token. +2021-09-02 14:53:22.040 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:22.041 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 14:53:22.042 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:22.042 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:53:22.089 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:53:22.091 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.1128ms +2021-09-02 14:53:22.091 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:22.097 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:53:22.099 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:22.103 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 62.3018ms +2021-09-02 14:53:22.103 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:22.109 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:22.136 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:22.136 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:22.138 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 99.6538ms +2021-09-02 14:53:22.150 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:22.150 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:22.151 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 122.2628ms +2021-09-02 14:53:26.733 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/api/app/account/login - - +2021-09-02 14:53:26.735 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:26.735 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/api/app/account/login - - - 204 - - 1.3689ms +2021-09-02 14:53:26.736 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/api/app/account/login application/json 37 +2021-09-02 14:53:26.736 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:26.740 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:26.740 +08:00 [INF] Route matched with {action = "Login", controller = "Account", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[CompanyName.ProjectName.Users.Dtos.LoginOutput] LoginAsync(CompanyName.ProjectName.Users.Dtos.LoginInput) on controller CompanyName.ProjectName.Controllers.Systems.AccountController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:53:26.794 +08:00 [WRN] The cookie '.AspNetCore.Identity.Application' has set 'SameSite=None' and must also set 'Secure'. +2021-09-02 14:53:26.794 +08:00 [INF] AuthenticationScheme: Identity.Application signed in. +2021-09-02 14:53:26.809 +08:00 [INF] Executing ObjectResult, writing value of type 'CompanyName.ProjectName.Users.Dtos.LoginOutput'. +2021-09-02 14:53:26.809 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi) in 68.9446ms +2021-09-02 14:53:26.809 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.AccountController.LoginAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:26.812 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:26.851 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:26.851 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:26.851 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/api/app/account/login application/json 37 - 200 - application/json;+charset=utf-8 115.2326ms +2021-09-02 14:53:26.855 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/api/abp/application-configuration - - +2021-09-02 14:53:26.856 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:26.856 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/api/abp/application-configuration - - - 204 - - 0.4986ms +2021-09-02 14:53:26.858 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/api/abp/application-configuration - - +2021-09-02 14:53:26.858 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:26.860 +08:00 [INF] Successfully validated the token. +2021-09-02 14:53:26.861 +08:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' +2021-09-02 14:53:26.862 +08:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationConfiguration", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto] GetAsync() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController (Volo.Abp.AspNetCore.Mvc). +2021-09-02 14:53:26.864 +08:00 [WRN] The cookie 'XSRF-TOKEN' has set 'SameSite=None' and must also set 'Secure'. +2021-09-02 14:53:26.866 +08:00 [DBG] Executing AbpApplicationConfigurationAppService.GetAsync()... +2021-09-02 14:53:26.866 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:FeatureManagement.ManageHostFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:SettingManagement.Emailing,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-02 14:53:26.880 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.ManagePermissions,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Users.Enable,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users.Query,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:FeatureManagement.ManageHostFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:SettingManagement.Emailing,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Create,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Update,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.Delete,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageFeatures,pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-02 14:53:26.880 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Roles.Query,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable,pn:R,pk:admin,n:AbpIdentity.Users.Query,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-02 14:53:26.887 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles,pn:R,pk:admin,n:AbpIdentity.Roles.Create,pn:R,pk:admin,n:AbpIdentity.Roles.Update,pn:R,pk:admin,n:AbpIdentity.Roles.Delete,pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Roles.Query,pn:R,pk:admin,n:AbpIdentity.Users,pn:R,pk:admin,n:AbpIdentity.Users.Create,pn:R,pk:admin,n:AbpIdentity.Users.Update,pn:R,pk:admin,n:AbpIdentity.Users.Delete,pn:R,pk:admin,n:AbpIdentity.Users.ManagePermissions,pn:R,pk:admin,n:AbpIdentity.Users.Users.Enable,pn:R,pk:admin,n:AbpIdentity.Users.Query,pn:R,pk:admin,n:FeatureManagement.ManageHostFeatures,pn:R,pk:admin,n:SettingManagement.Emailing,pn:R,pk:admin,n:AbpTenantManagement.Tenants,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Create,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Update,pn:R,pk:admin,n:AbpTenantManagement.Tenants.Delete,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageFeatures,pn:R,pk:admin,n:AbpTenantManagement.Tenants.ManageConnectionStrings +2021-09-02 14:53:26.935 +08:00 [DBG] Executed AbpApplicationConfigurationAppService.GetAsync(). +2021-09-02 14:53:26.935 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto'. +2021-09-02 14:53:26.938 +08:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 76.1869ms +2021-09-02 14:53:26.938 +08:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' +2021-09-02 14:53:26.941 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:26.942 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:26.959 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/api/abp/application-configuration - - - 200 - application/json;+charset=utf-8 101.3985ms +2021-09-02 14:53:40.610 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 14:53:40.611 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:40.611 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4314ms +2021-09-02 14:53:40.612 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 14:53:40.613 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:40.615 +08:00 [INF] Successfully validated the token. +2021-09-02 14:53:40.616 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:40.616 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:53:40.666 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:53:40.667 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.5442ms +2021-09-02 14:53:40.667 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:40.673 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:40.702 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:40.702 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:40.702 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 90.0105ms +2021-09-02 14:53:41.774 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 14:53:41.774 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:41.774 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4086ms +2021-09-02 14:53:41.776 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 14:53:41.776 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:41.778 +08:00 [INF] Successfully validated the token. +2021-09-02 14:53:41.779 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:53:41.783 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:53:41.783 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:53:41.785 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:53:41.785 +08:00 [INF] Authorization was successful. +2021-09-02 14:53:41.786 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:41.787 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 14:53:41.820 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:53:41.823 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 36.7261ms +2021-09-02 14:53:41.823 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:41.828 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:41.863 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:41.863 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:41.864 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 87.9022ms +2021-09-02 14:53:43.547 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-09-02 14:53:43.547 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:43.547 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 0.4756ms +2021-09-02 14:53:43.548 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 +2021-09-02 14:53:43.549 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:43.551 +08:00 [INF] Successfully validated the token. +2021-09-02 14:53:43.551 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:53:43.556 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:53:43.556 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:53:43.559 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:53:43.559 +08:00 [INF] Authorization was successful. +2021-09-02 14:53:43.560 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:43.560 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:53:43.589 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:53:43.591 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 30.6297ms +2021-09-02 14:53:43.591 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:43.594 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:43.638 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:43.638 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:43.639 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 - 200 - application/json;+charset=utf-8 90.3790ms +2021-09-02 14:53:44.286 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 14:53:44.286 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:44.286 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4189ms +2021-09-02 14:53:44.288 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 14:53:44.288 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:53:44.291 +08:00 [INF] Successfully validated the token. +2021-09-02 14:53:44.293 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:44.293 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:53:44.331 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:53:44.331 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.3401ms +2021-09-02 14:53:44.331 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:53:44.338 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:44.367 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:44.367 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:53:44.367 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 79.4589ms +2021-09-02 14:53:50.674 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:54:01.764 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 14:54:01.873 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 14:54:01.873 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:54:01.874 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4540ms +2021-09-02 14:54:01.875 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 14:54:01.875 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:54:01.878 +08:00 [INF] Successfully validated the token. +2021-09-02 14:54:01.879 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:54:01.879 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:54:01.910 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:54:01.910 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.2942ms +2021-09-02 14:54:01.911 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:54:01.913 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:01.941 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:01.941 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:01.942 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 66.2528ms +2021-09-02 14:54:02.852 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 14:54:02.853 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:54:02.853 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4360ms +2021-09-02 14:54:02.854 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 14:54:02.854 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:54:02.857 +08:00 [INF] Successfully validated the token. +2021-09-02 14:54:02.858 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:54:02.858 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:54:02.892 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:54:02.893 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.997ms +2021-09-02 14:54:02.893 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:54:02.897 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:02.936 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:02.936 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:02.937 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 82.3796ms +2021-09-02 14:54:20.795 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:54:21.005 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-09-02 14:54:21.006 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:54:21.006 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 0.5026ms +2021-09-02 14:54:21.008 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 +2021-09-02 14:54:21.009 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:54:21.012 +08:00 [INF] Successfully validated the token. +2021-09-02 14:54:21.013 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:54:21.017 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:54:21.017 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:54:21.019 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 14:54:21.020 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:54:21.020 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.7219ms +2021-09-02 14:54:21.021 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:54:21.021 +08:00 [INF] Authorization was successful. +2021-09-02 14:54:21.023 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 14:54:21.023 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:54:21.023 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:54:21.023 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:54:21.026 +08:00 [INF] Successfully validated the token. +2021-09-02 14:54:21.027 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:54:21.031 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:54:21.032 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:54:21.035 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 14:54:21.035 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:54:21.035 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:54:21.035 +08:00 [INF] Authorization was successful. +2021-09-02 14:54:21.035 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4960ms +2021-09-02 14:54:21.036 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:54:21.037 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 14:54:21.040 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 14:54:21.041 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:54:21.050 +08:00 [INF] Successfully validated the token. +2021-09-02 14:54:21.059 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:54:21.060 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:54:21.063 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:54:21.066 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 42.4244ms +2021-09-02 14:54:21.066 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:54:21.070 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:21.108 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:54:21.127 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 90.1484ms +2021-09-02 14:54:21.127 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:54:21.132 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:54:21.132 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 72.6266ms +2021-09-02 14:54:21.132 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:54:21.136 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:21.150 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:21.169 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:21.169 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:21.169 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 - 200 - application/json;+charset=utf-8 160.8695ms +2021-09-02 14:54:21.189 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:21.189 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:21.190 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 167.0254ms +2021-09-02 14:54:21.202 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:21.202 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:21.203 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 162.9357ms +2021-09-02 14:54:27.557 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-09-02 14:54:27.557 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:54:27.558 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 0.4449ms +2021-09-02 14:54:27.559 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 +2021-09-02 14:54:27.559 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:54:27.562 +08:00 [INF] Successfully validated the token. +2021-09-02 14:54:27.562 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:54:27.566 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:54:27.566 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:54:27.569 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:54:27.569 +08:00 [INF] Authorization was successful. +2021-09-02 14:54:27.570 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:54:27.571 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:54:27.601 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:54:27.604 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 32.9301ms +2021-09-02 14:54:27.604 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:54:27.607 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:27.638 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:27.639 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:54:27.639 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 - 200 - application/json;+charset=utf-8 79.7744ms +2021-09-02 14:54:28.581 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA1NjU2MDYsImV4cCI6MTYzMDY1MjAwNiwiaWF0IjoxNjMwNTY1NjA2fQ.Iihc2npQu9nQAVMVNmsjphNiEunCVKmOj4Mei-o6d4E - - +2021-09-02 14:54:28.825 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA1NjU2MDYsImV4cCI6MTYzMDY1MjAwNiwiaWF0IjoxNjMwNTY1NjA2fQ.Iihc2npQu9nQAVMVNmsjphNiEunCVKmOj4Mei-o6d4E - - - 200 - text/html 244.0841ms +2021-09-02 14:54:50.845 +08:00 [DBG] Server szqh003802a:36160:42b3801c heartbeat successfully sent +2021-09-02 14:55:00.237 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 14:55:26.428 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-02 14:55:32.105 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-02 14:55:32.222 +08:00 [INF] Loaded ABP modules: +2021-09-02 14:55:32.222 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-02 14:55:32.222 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-02 14:55:32.222 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-02 14:55:32.222 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-02 14:55:32.222 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-02 14:55:32.222 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-02 14:55:32.222 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-02 14:55:32.222 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-02 14:55:32.223 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-02 14:55:32.223 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-02 14:55:32.223 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-02 14:55:32.223 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-02 14:55:32.223 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-02 14:55:32.223 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-02 14:55:32.223 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-02 14:55:32.223 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-02 14:55:32.223 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-02 14:55:32.330 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-02 14:55:32.332 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-02 14:55:32.492 +08:00 [INF] DB tables already exist. Exit install +2021-09-02 14:55:32.518 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-02 14:55:32.518 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-02 14:55:32.518 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-02 14:55:32.518 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-02 14:55:32.536 +08:00 [DBG] Execution loop BackgroundServerProcess:79524469 has started in 5.1885 ms +2021-09-02 14:55:32.654 +08:00 [INF] Server szqh003802a:34448:9a0de7c2 successfully announced in 115.7677 ms +2021-09-02 14:55:32.658 +08:00 [INF] Server szqh003802a:34448:9a0de7c2 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-02 14:55:32.658 +08:00 [DBG] Execution loop ServerHeartbeatProcess:c65f4de2 has started in 3.4011 ms +2021-09-02 14:55:32.660 +08:00 [DBG] Execution loop ServerWatchdog:f157994b has started in 2.068 ms +2021-09-02 14:55:32.662 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:f68aca68 has started in 3.3849 ms +2021-09-02 14:55:32.664 +08:00 [DBG] Execution loop ExpirationManager:a374c041 has started in 2.9518 ms +2021-09-02 14:55:32.688 +08:00 [DBG] Execution loop CountersAggregator:8a23d216 has started in 25.2747 ms +2021-09-02 14:55:32.688 +08:00 [DBG] Execution loop Worker:4ddc34e0 has started in 23.4711 ms +2021-09-02 14:55:32.690 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 14:55:32.690 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 14:55:32.693 +08:00 [DBG] Execution loop Worker:d84923c5 has started in 28.4079 ms +2021-09-02 14:55:32.693 +08:00 [DBG] Execution loop Worker:89ed9f01 has started in 28.1204 ms +2021-09-02 14:55:32.694 +08:00 [DBG] Execution loop Worker:559eeee4 has started in 29.3573 ms +2021-09-02 14:55:32.697 +08:00 [DBG] Execution loop Worker:5b7bcbe7 has started in 32.4819 ms +2021-09-02 14:55:32.699 +08:00 [DBG] Execution loop Worker:92d29288 has started in 34.3441 ms +2021-09-02 14:55:32.700 +08:00 [DBG] Execution loop Worker:c214462c has started in 35.64 ms +2021-09-02 14:55:32.704 +08:00 [DBG] Execution loop Worker:e42d038d has started in 40.1094 ms +2021-09-02 14:55:32.707 +08:00 [DBG] Execution loop Worker:c2701ac8 has started in 42.4365 ms +2021-09-02 14:55:32.711 +08:00 [DBG] Execution loop Worker:4993debf has started in 46.6184 ms +2021-09-02 14:55:32.713 +08:00 [DBG] Execution loop Worker:db367b91 has started in 48.9214 ms +2021-09-02 14:55:32.714 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 14:55:32.721 +08:00 [DBG] Execution loop Worker:7572c253 has started in 56.9393 ms +2021-09-02 14:55:32.728 +08:00 [DBG] Execution loop Worker:6b463103 has started in 64.0724 ms +2021-09-02 14:55:32.732 +08:00 [DBG] Execution loop Worker:ebdb0f43 has started in 67.0721 ms +2021-09-02 14:55:32.737 +08:00 [DBG] Execution loop Worker:ebea7e86 has started in 72.3996 ms +2021-09-02 14:55:32.746 +08:00 [DBG] Execution loop Worker:010391de has started in 81.9981 ms +2021-09-02 14:55:32.747 +08:00 [DBG] Execution loop Worker:12fa5135 has started in 82.4765 ms +2021-09-02 14:55:32.752 +08:00 [DBG] Execution loop Worker:45c37f7f has started in 87.0796 ms +2021-09-02 14:55:32.754 +08:00 [DBG] Execution loop Worker:349ee6ca has started in 90.0411 ms +2021-09-02 14:55:32.756 +08:00 [DBG] removed records count=0 +2021-09-02 14:55:32.759 +08:00 [DBG] Execution loop Worker:e1f567f7 has started in 94.0917 ms +2021-09-02 14:55:32.762 +08:00 [DBG] Execution loop DelayedJobScheduler:0fbfe5ad has started in 7.3187 ms +2021-09-02 14:55:32.762 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 14:55:32.762 +08:00 [INF] Server szqh003802a:34448:9a0de7c2 all the dispatchers started +2021-09-02 14:55:32.768 +08:00 [DBG] Execution loop RecurringJobScheduler:bf09adba has started in 10.0459 ms +2021-09-02 14:55:32.788 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 14:55:32.805 +08:00 [DBG] removed records count=0 +2021-09-02 14:55:32.862 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 14:55:32.863 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 14:55:32.881 +08:00 [DBG] removed records count=0 +2021-09-02 14:55:32.887 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 14:55:32.889 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 14:55:32.900 +08:00 [DBG] removed records count=0 +2021-09-02 14:55:32.901 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 14:55:32.902 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 14:55:32.915 +08:00 [DBG] removed records count=0 +2021-09-02 14:55:33.390 +08:00 [INF] Initialized all ABP modules. +2021-09-02 14:55:33.461 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-02 14:55:33.462 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-02 14:55:33.462 +08:00 [INF] Hosting environment: Development +2021-09-02 14:55:33.462 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-02 14:55:33.850 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-02 14:55:35.582 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 14:55:35.640 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-02 14:55:35.673 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-02 14:55:35.679 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 35.162ms +2021-09-02 14:55:35.679 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 14:55:35.697 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1849.1684ms +2021-09-02 14:55:35.713 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 14:55:35.769 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 55.4579ms +2021-09-02 14:55:36.070 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 14:55:36.410 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 339.4527ms +2021-09-02 14:55:43.761 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA1NjU2MDYsImV4cCI6MTYzMDY1MjAwNiwiaWF0IjoxNjMwNTY1NjA2fQ.Iihc2npQu9nQAVMVNmsjphNiEunCVKmOj4Mei-o6d4E - - +2021-09-02 14:55:43.837 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:44.165 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJDb21wYW55TmFtZVByb2plY3ROYW1lIiwiaXNzIjoiQ29tcGFueU5hbWVQcm9qZWN0TmFtZSIsInN1YiI6IjM5ZmU1MmM2LTI3YTAtZDU0Yy0wYjQ3LTQxMzNmMDQ0YzhmYSIsImdpdmVuX25hbWUiOiJhZG1pbiIsIm5hbWUiOiJhZG1pbiIsImVtYWlsIjoiYWRtaW5AYWJwLmlvIiwidGVuYW50aWQiOiIiLCJyb2xlIjoiYWRtaW4iLCJuYmYiOjE2MzA1NjU2MDYsImV4cCI6MTYzMDY1MjAwNiwiaWF0IjoxNjMwNTY1NjA2fQ.Iihc2npQu9nQAVMVNmsjphNiEunCVKmOj4Mei-o6d4E - - - 200 - text/html 404.0234ms +2021-09-02 14:55:44.173 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:55:44.174 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:55:44.176 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:44.176 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:44.188 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 14.9074ms +2021-09-02 14:55:44.216 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 42.3731ms +2021-09-02 14:55:44.226 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:55:44.230 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:44.231 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:44.236 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:44.242 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 15.7855ms +2021-09-02 14:55:46.300 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 +2021-09-02 14:55:46.301 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:46.301 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:46.303 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:46.674 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:55:46.674 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:55:46.678 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 228 - 200 - application/json 378.0936ms +2021-09-02 14:55:47.237 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/jobs/enqueued - - +2021-09-02 14:55:47.239 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:47.276 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/jobs/enqueued - - - 200 - text/html 38.7449ms +2021-09-02 14:55:47.286 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:55:47.287 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:55:47.289 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:47.289 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:47.294 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 7.7097ms +2021-09-02 14:55:47.310 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 22.9949ms +2021-09-02 14:55:47.323 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:55:47.323 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:47.323 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:47.325 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:47.327 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.4339ms +2021-09-02 14:55:47.589 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/retries - - +2021-09-02 14:55:47.591 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:47.623 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/retries - - - 200 - text/html 34.8962ms +2021-09-02 14:55:47.633 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:55:47.634 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:55:47.635 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:47.636 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:47.640 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 7.4147ms +2021-09-02 14:55:47.657 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:55:47.658 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:47.658 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:47.658 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 23.9834ms +2021-09-02 14:55:47.660 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:47.662 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.6687ms +2021-09-02 14:55:47.988 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - +2021-09-02 14:55:47.990 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:48.042 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - - 200 - text/html 54.1883ms +2021-09-02 14:55:48.053 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:55:48.054 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:55:48.056 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:48.056 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:48.065 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 11.8205ms +2021-09-02 14:55:48.065 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 11.3081ms +2021-09-02 14:55:48.133 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:55:48.133 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:48.133 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:48.135 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:48.137 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.5617ms +2021-09-02 14:55:49.318 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/jobs/enqueued - - +2021-09-02 14:55:49.320 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:49.347 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/jobs/enqueued - - - 200 - text/html 28.3199ms +2021-09-02 14:55:49.356 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:55:49.357 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:55:49.359 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:49.359 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:49.368 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 11.0301ms +2021-09-02 14:55:49.380 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 23.4897ms +2021-09-02 14:55:49.387 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:55:49.387 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:49.387 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:49.389 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:49.391 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.3216ms +2021-09-02 14:55:49.789 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/retries - - +2021-09-02 14:55:49.791 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:49.818 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/retries - - - 200 - text/html 29.2210ms +2021-09-02 14:55:49.828 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:55:49.828 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:55:49.830 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:49.830 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:49.837 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 8.0985ms +2021-09-02 14:55:49.840 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 11.7482ms +2021-09-02 14:55:49.860 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:55:49.860 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:49.860 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:49.862 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:49.864 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.6126ms +2021-09-02 14:55:50.127 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - +2021-09-02 14:55:50.129 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:50.164 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - - 200 - text/html 36.7488ms +2021-09-02 14:55:50.173 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:55:50.174 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:55:50.176 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:50.176 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:50.184 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 9.6930ms +2021-09-02 14:55:50.185 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 10.9600ms +2021-09-02 14:55:50.200 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:55:50.201 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:50.201 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:50.203 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:50.205 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.4289ms +2021-09-02 14:55:50.559 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/servers - - +2021-09-02 14:55:50.561 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:50.601 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/servers - - - 200 - text/html 42.3525ms +2021-09-02 14:55:50.610 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:55:50.611 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:55:50.612 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:50.612 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:50.621 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 10.6572ms +2021-09-02 14:55:50.633 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 22.2409ms +2021-09-02 14:55:50.645 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:55:50.645 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:50.645 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:50.647 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:50.649 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.0179ms +2021-09-02 14:55:51.488 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - +2021-09-02 14:55:51.491 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:51.528 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - - 200 - text/html 39.3588ms +2021-09-02 14:55:51.538 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:55:51.538 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:55:51.540 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:51.540 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:51.548 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 10.7766ms +2021-09-02 14:55:51.559 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 21.3984ms +2021-09-02 14:55:51.605 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:55:51.606 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:51.606 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:51.608 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:51.610 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 5.2909ms +2021-09-02 14:55:51.808 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/retries - - +2021-09-02 14:55:51.810 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:51.838 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/retries - - - 200 - text/html 30.0901ms +2021-09-02 14:55:51.847 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:55:51.848 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:55:51.850 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:51.850 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:51.859 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 11.2341ms +2021-09-02 14:55:51.870 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 22.4567ms +2021-09-02 14:55:51.878 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:55:51.878 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:51.878 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:51.881 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:51.883 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.7167ms +2021-09-02 14:55:52.272 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/jobs/enqueued - - +2021-09-02 14:55:52.275 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:52.302 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/jobs/enqueued - - - 200 - text/html 29.5827ms +2021-09-02 14:55:52.311 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:55:52.312 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:55:52.314 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:52.315 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:52.322 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 9.1106ms +2021-09-02 14:55:52.336 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 23.7518ms +2021-09-02 14:55:52.344 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:55:52.345 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:52.345 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:52.347 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:52.349 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.6223ms +2021-09-02 14:55:54.388 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:55:54.389 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:54.389 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:54.391 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:54.457 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:55:54.458 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:55:54.458 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 69.6006ms +2021-09-02 14:55:56.468 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:55:56.468 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:56.468 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:56.470 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:56.517 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:55:56.517 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:55:56.518 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 50.1036ms +2021-09-02 14:55:58.521 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:55:58.522 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:55:58.522 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:55:58.524 +08:00 [INF] Successfully validated the token. +2021-09-02 14:55:58.581 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:55:58.581 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:55:58.582 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 60.3830ms +2021-09-02 14:56:00.586 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:00.586 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:00.586 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:00.588 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:00.637 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:00.637 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:00.637 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 51.7411ms +2021-09-02 14:56:01.474 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/jobs/succeeded - - +2021-09-02 14:56:01.476 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:01.530 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/jobs/succeeded - - - 200 - text/html 56.3435ms +2021-09-02 14:56:01.541 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:56:01.542 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:56:01.544 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:01.544 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:01.552 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 11.1061ms +2021-09-02 14:56:01.566 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 24.2147ms +2021-09-02 14:56:01.628 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:56:01.628 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:01.628 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:01.630 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:01.632 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.6553ms +2021-09-02 14:56:02.596 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/retries - - +2021-09-02 14:56:02.599 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:02.626 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/retries - - - 200 - text/html 30.1153ms +2021-09-02 14:56:02.638 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:56:02.638 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:56:02.640 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:02.640 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:02.649 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 10.9089ms +2021-09-02 14:56:02.661 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 22.9955ms +2021-09-02 14:56:02.666 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:56:02.666 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:02.666 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:02.669 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:02.671 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 5.1125ms +2021-09-02 14:56:02.805 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 14:56:02.868 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - +2021-09-02 14:56:02.871 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:02.905 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/recurring - - - 200 - text/html 36.5995ms +2021-09-02 14:56:02.916 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:56:02.916 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:56:02.918 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:02.918 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:02.926 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 10.6830ms +2021-09-02 14:56:02.938 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 21.4879ms +2021-09-02 14:56:02.945 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:56:02.946 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:02.946 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:02.948 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:02.950 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 4.4538ms +2021-09-02 14:56:03.140 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/servers - - +2021-09-02 14:56:03.142 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:03.173 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/servers - - - 200 - text/html 33.1827ms +2021-09-02 14:56:03.183 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:56:03.183 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:56:03.186 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:03.186 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:03.195 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 11.7097ms +2021-09-02 14:56:03.195 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 11.9158ms +2021-09-02 14:56:03.263 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:56:03.264 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:03.264 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:03.268 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:03.270 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 7.0273ms +2021-09-02 14:56:03.751 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/jobs/enqueued - - +2021-09-02 14:56:03.753 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:03.812 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/jobs/enqueued - - - 200 - text/html 60.6454ms +2021-09-02 14:56:03.825 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - +2021-09-02 14:56:03.826 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - +2021-09-02 14:56:03.828 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:03.828 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:03.839 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/css17240 - - - 200 - text/css 12.7301ms +2021-09-02 14:56:03.841 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/js17240 - - - 200 - application/javascript 15.0040ms +2021-09-02 14:56:03.872 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - +2021-09-02 14:56:03.872 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:03.872 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:03.874 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:03.878 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/hangfire/fonts/glyphicons-halflings-regular/woff2 - - - 200 - font/woff2 6.3815ms +2021-09-02 14:56:05.650 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 14:56:05.651 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:56:05.654 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 3.8223ms +2021-09-02 14:56:05.656 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 14:56:05.658 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:56:05.661 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:05.923 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:05.924 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:05.924 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:05.926 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:05.930 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:56:05.937 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 14:56:05.950 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:56:05.955 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 14:56:05.963 +08:00 [INF] Authorization was successful. +2021-09-02 14:56:05.970 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:56:05.990 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:05.990 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:05.990 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 66.7917ms +2021-09-02 14:56:06.004 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 14:56:07.999 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:07.999 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:07.999 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:08.002 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:08.070 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:08.070 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:08.071 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 72.1263ms +2021-09-02 14:56:08.139 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:56:08.180 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 2176.1614ms +2021-09-02 14:56:08.180 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:56:08.205 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:08.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:08.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:08.288 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 2633.0399ms +2021-09-02 14:56:10.129 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/all - - +2021-09-02 14:56:10.130 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:56:10.130 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/all - - - 204 - - 1.4742ms +2021-09-02 14:56:10.133 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/all - 0 +2021-09-02 14:56:10.133 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:56:10.139 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:10.141 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:56:10.144 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:56:10.144 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:56:10.147 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:56:10.147 +08:00 [INF] Authorization was successful. +2021-09-02 14:56:10.151 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.AllListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:56:10.154 +08:00 [INF] Route matched with {action = "AllList", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.ListResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] AllListAsync() on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:56:10.156 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:10.157 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:10.157 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:10.159 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:10.252 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:10.253 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:10.254 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 97.4690ms +2021-09-02 14:56:10.377 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.ListResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:56:10.383 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.AllListAsync (CompanyName.ProjectName.HttpApi) in 228.5769ms +2021-09-02 14:56:10.383 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.AllListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:56:10.392 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:10.431 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:10.431 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:10.432 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/all - 0 - 200 - application/json;+charset=utf-8 299.6940ms +2021-09-02 14:56:12.266 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:12.266 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:12.266 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:12.268 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:12.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:12.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:12.322 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 56.5897ms +2021-09-02 14:56:14.326 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:14.326 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:14.326 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:14.328 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:14.386 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:14.386 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:14.386 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 60.6139ms +2021-09-02 14:56:16.390 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:16.391 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:16.391 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:16.393 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:16.446 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:16.447 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:16.447 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 56.5553ms +2021-09-02 14:56:18.450 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:18.450 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:18.450 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:18.452 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:18.509 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:18.509 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:18.509 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 59.4311ms +2021-09-02 14:56:20.514 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:20.514 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:20.514 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:20.516 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:20.573 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:20.573 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:20.574 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 59.9633ms +2021-09-02 14:56:22.578 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:22.578 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:22.578 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:22.580 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:22.637 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:22.637 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:22.637 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 59.5233ms +2021-09-02 14:56:22.824 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - +2021-09-02 14:56:22.824 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:56:22.825 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Roles/page - - - 204 - - 0.4855ms +2021-09-02 14:56:22.827 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 +2021-09-02 14:56:22.829 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:56:22.833 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:22.833 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:56:22.837 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles +2021-09-02 14:56:22.837 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:56:22.840 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles +2021-09-02 14:56:22.840 +08:00 [INF] Authorization was successful. +2021-09-02 14:56:22.842 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:56:22.846 +08:00 [INF] Route matched with {action = "List", controller = "Role", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityRoleDto]] ListAsync(CompanyName.ProjectName.Roles.Dtos.PagingRoleListInput) on controller CompanyName.ProjectName.Controllers.Systems.RoleController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:56:22.907 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:56:22.909 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi) in 62.6382ms +2021-09-02 14:56:22.909 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.RoleController.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:56:22.913 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:22.953 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:22.953 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:22.953 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Roles/page application/json 24 - 200 - application/json;+charset=utf-8 125.9510ms +2021-09-02 14:56:24.116 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Permissions/tree - - +2021-09-02 14:56:24.116 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:56:24.116 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Permissions/tree - - - 204 - - 0.7472ms +2021-09-02 14:56:24.119 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Permissions/tree application/json 42 +2021-09-02 14:56:24.119 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:56:24.125 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:24.126 +08:00 [INF] Authorization was successful. +2021-09-02 14:56:24.127 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.PermissionController.GetPermissionAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:56:24.130 +08:00 [INF] Route matched with {action = "GetPermission", controller = "Permission", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[CompanyName.ProjectName.Roles.Dtos.PermissionOutput] GetPermissionAsync(CompanyName.ProjectName.Roles.Dtos.GetPermissionInput) on controller CompanyName.ProjectName.Controllers.Systems.PermissionController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:56:24.172 +08:00 [INF] Authorization was successful. +2021-09-02 14:56:24.185 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions +2021-09-02 14:56:24.189 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Roles.ManagePermissions +2021-09-02 14:56:24.189 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions +2021-09-02 14:56:24.192 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Roles.ManagePermissions +2021-09-02 14:56:24.192 +08:00 [INF] Authorization was successful. +2021-09-02 14:56:24.483 +08:00 [INF] Executing ObjectResult, writing value of type 'CompanyName.ProjectName.Roles.Dtos.PermissionOutput'. +2021-09-02 14:56:24.487 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.PermissionController.GetPermissionAsync (CompanyName.ProjectName.HttpApi) in 357.4052ms +2021-09-02 14:56:24.487 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.PermissionController.GetPermissionAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:56:24.494 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:24.533 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:24.533 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:24.534 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Permissions/tree application/json 42 - 200 - application/json;+charset=utf-8 414.9152ms +2021-09-02 14:56:24.641 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:24.642 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:24.642 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:24.647 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:24.704 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:24.705 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:24.705 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 64.2587ms +2021-09-02 14:56:26.708 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:26.708 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:26.708 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:26.710 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:26.767 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:26.767 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:26.767 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 59.0122ms +2021-09-02 14:56:28.771 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:28.771 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:28.771 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:28.773 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:28.833 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:28.833 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:28.833 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 62.6080ms +2021-09-02 14:56:29.564 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:56:30.848 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:30.848 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:30.848 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:30.851 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:30.906 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:30.907 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:30.907 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 59.1199ms +2021-09-02 14:56:32.911 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:32.912 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:32.912 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:32.914 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:32.974 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:32.974 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:32.975 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 63.3921ms +2021-09-02 14:56:34.979 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:34.979 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:34.980 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:34.983 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:35.042 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:35.043 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:35.043 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 64.3600ms +2021-09-02 14:56:35.608 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 14:56:35.608 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:56:35.608 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.8460ms +2021-09-02 14:56:35.610 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 14:56:35.612 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:56:35.616 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:35.618 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:56:35.620 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:56:35.672 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 14:56:36.725 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:56:36.745 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1125.0765ms +2021-09-02 14:56:36.745 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:56:36.782 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:36.825 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:36.825 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:36.825 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 1214.9615ms +2021-09-02 14:56:37.049 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:37.050 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:37.050 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:37.052 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:37.115 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:37.116 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:37.117 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 68.0817ms +2021-09-02 14:56:39.213 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:39.213 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:39.213 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:39.217 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:39.281 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:39.281 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:39.282 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 68.7067ms +2021-09-02 14:56:41.299 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:41.300 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:41.300 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:41.304 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:41.364 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:41.364 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:41.365 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 65.8783ms +2021-09-02 14:56:43.369 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:43.370 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:43.370 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:43.373 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:43.435 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:43.435 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:43.436 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 66.0859ms +2021-09-02 14:56:45.440 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:45.441 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:45.441 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:45.443 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:45.507 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:45.508 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:45.509 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 69.5224ms +2021-09-02 14:56:47.513 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:47.513 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:47.513 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:47.515 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:47.576 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:47.576 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:47.577 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 63.7565ms +2021-09-02 14:56:49.588 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:49.588 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:49.589 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:49.592 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:49.649 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:49.649 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:49.651 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 62.3535ms +2021-09-02 14:56:51.654 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:51.655 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:51.655 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:51.659 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:51.722 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:51.722 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:51.722 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 68.0624ms +2021-09-02 14:56:53.729 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:53.729 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:53.729 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:53.731 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:53.792 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:53.792 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:53.792 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 63.2781ms +2021-09-02 14:56:55.803 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:55.804 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:55.804 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:55.806 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:55.919 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:55.919 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:55.919 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 116.6673ms +2021-09-02 14:56:56.070 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:56:57.933 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:56:57.934 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:56:57.934 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:56:57.937 +08:00 [INF] Successfully validated the token. +2021-09-02 14:56:57.998 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:57.998 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:56:57.998 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 65.0361ms +2021-09-02 14:57:00.005 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:00.006 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:00.006 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:00.009 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:00.065 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:00.065 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:00.065 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 59.8027ms +2021-09-02 14:57:01.069 +08:00 [DBG] 201 recurring job(s) processed by scheduler. +2021-09-02 14:57:02.073 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:02.074 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:02.074 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:02.076 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:02.122 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:02.122 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:02.122 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 48.8426ms +2021-09-02 14:57:04.135 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:04.135 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:04.136 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:04.137 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:04.187 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:04.187 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:04.188 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 52.4037ms +2021-09-02 14:57:05.697 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 14:57:06.194 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:06.194 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:06.194 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:06.196 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:06.249 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:06.249 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:06.250 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 55.8076ms +2021-09-02 14:57:08.263 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:08.264 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:08.264 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:08.266 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:08.335 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:08.336 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:08.336 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 72.5130ms +2021-09-02 14:57:10.347 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:10.347 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:10.347 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:10.349 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:10.402 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:10.402 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:10.402 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 55.4539ms +2021-09-02 14:57:12.412 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:12.413 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:12.413 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:12.414 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:12.457 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:12.457 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:12.457 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 44.6366ms +2021-09-02 14:57:14.461 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:14.462 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:14.462 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:14.463 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:14.519 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:14.520 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:14.520 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 58.5678ms +2021-09-02 14:57:16.530 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:16.531 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:16.531 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:16.533 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:16.578 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:16.578 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:16.578 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 47.5309ms +2021-09-02 14:57:18.585 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:18.585 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:18.585 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:18.587 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:18.638 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:18.638 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:18.638 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 53.7346ms +2021-09-02 14:57:20.649 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:20.649 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:20.649 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:20.652 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:20.709 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:20.709 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:20.709 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 60.6635ms +2021-09-02 14:57:22.752 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:22.753 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:22.753 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:22.755 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:22.815 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:22.815 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:22.816 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 63.2849ms +2021-09-02 14:57:24.820 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:24.821 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:24.821 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:24.823 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:24.872 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:24.872 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:24.873 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 52.1452ms +2021-09-02 14:57:26.882 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:26.882 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:26.882 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:26.884 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:26.929 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:26.929 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:26.929 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 47.2370ms +2021-09-02 14:57:28.937 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:28.937 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:28.937 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:28.939 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:28.994 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:28.994 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:28.994 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 56.9346ms +2021-09-02 14:57:31.006 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:31.007 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:31.007 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:31.008 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:31.063 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:31.063 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:31.063 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 57.2085ms +2021-09-02 14:57:33.071 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:33.071 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:33.071 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:33.073 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:33.128 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:33.128 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:33.129 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 57.6189ms +2021-09-02 14:57:35.135 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:35.135 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:35.135 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:35.137 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:35.194 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:35.194 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:35.194 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 58.9898ms +2021-09-02 14:57:35.756 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 14:57:37.207 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:37.208 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:37.208 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:37.209 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:37.255 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:37.256 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:37.256 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 48.4804ms +2021-09-02 14:57:39.274 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:39.274 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:39.274 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:39.276 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:39.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:39.332 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:39.332 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 58.3274ms +2021-09-02 14:57:41.344 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:41.344 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:41.344 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:41.346 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:41.393 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:41.393 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:41.394 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 49.6546ms +2021-09-02 14:57:43.398 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:43.398 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:43.398 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:43.400 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:43.446 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:43.446 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:43.446 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 48.3221ms +2021-09-02 14:57:45.463 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:45.464 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:45.464 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:45.465 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:45.511 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:45.511 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:45.511 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 47.6210ms +2021-09-02 14:57:47.517 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:47.517 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:47.517 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:47.519 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:47.565 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:47.565 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:47.566 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 48.7020ms +2021-09-02 14:57:49.570 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:49.570 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:49.570 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:49.572 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:49.616 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:49.616 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:49.616 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 46.2916ms +2021-09-02 14:57:51.619 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:51.620 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:51.620 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:51.621 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:51.678 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:51.678 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:51.678 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 59.0565ms +2021-09-02 14:57:53.683 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:53.684 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:53.684 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:53.685 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:53.732 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:53.732 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:53.732 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 48.8061ms +2021-09-02 14:57:55.737 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:55.737 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:55.737 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:55.739 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:55.785 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:55.785 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:55.785 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 47.9815ms +2021-09-02 14:57:57.796 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:57.796 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:57.796 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:57.798 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:57.844 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:57.844 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:57.844 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 48.2557ms +2021-09-02 14:57:59.861 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:57:59.861 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:57:59.861 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:57:59.864 +08:00 [INF] Successfully validated the token. +2021-09-02 14:57:59.908 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:59.908 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:57:59.908 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 47.2180ms +2021-09-02 14:58:01.911 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:01.911 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:01.911 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:01.914 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:01.961 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:01.961 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:01.961 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 50.2358ms +2021-09-02 14:58:03.965 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:03.966 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:03.966 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:03.968 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:04.013 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:04.013 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:04.013 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 47.6919ms +2021-09-02 14:58:05.942 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 14:58:06.016 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:06.016 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:06.016 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:06.018 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:06.065 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:06.065 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:06.065 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 48.9426ms +2021-09-02 14:58:08.069 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:08.069 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:08.069 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:08.071 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:08.118 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:08.118 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:08.118 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 49.4088ms +2021-09-02 14:58:10.123 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:10.123 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:10.123 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:10.126 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:10.174 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:10.174 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:10.175 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 51.9603ms +2021-09-02 14:58:12.181 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:12.182 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:12.182 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:12.184 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:12.230 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:12.230 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:12.230 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 49.0943ms +2021-09-02 14:58:14.242 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:14.242 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:14.242 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:14.244 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:14.300 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:14.300 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:14.301 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 58.9119ms +2021-09-02 14:58:16.304 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:16.304 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:16.304 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:16.306 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:16.365 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:16.365 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:16.366 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 61.6971ms +2021-09-02 14:58:18.369 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:18.370 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:18.370 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:18.372 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:18.426 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:18.427 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:18.427 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 58.4724ms +2021-09-02 14:58:20.431 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:20.431 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:20.432 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:20.434 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:20.489 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:20.489 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:20.490 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 58.8516ms +2021-09-02 14:58:22.505 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:22.506 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:22.506 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:22.509 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:22.564 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:22.564 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:22.564 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 58.6893ms +2021-09-02 14:58:24.568 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:24.569 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:24.569 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:24.571 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:24.627 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:24.627 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:24.628 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 59.4991ms +2021-09-02 14:58:26.643 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:26.643 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:26.643 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:26.645 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:26.701 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:26.702 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:26.703 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 60.1612ms +2021-09-02 14:58:28.713 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:28.713 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:28.713 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:28.715 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:28.766 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:28.767 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:28.767 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 53.8801ms +2021-09-02 14:58:30.783 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:30.783 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:30.783 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:30.785 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:30.840 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:30.840 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:30.840 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 57.6234ms +2021-09-02 14:58:32.854 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:32.855 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:32.855 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:32.858 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:32.907 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:32.907 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:32.908 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 53.6579ms +2021-09-02 14:58:34.926 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:34.926 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:34.926 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:34.930 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:34.983 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:34.983 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:34.983 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 57.5240ms +2021-09-02 14:58:36.997 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:36.998 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:36.998 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:37.000 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:37.060 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:37.060 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:37.060 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 62.6273ms +2021-09-02 14:58:39.066 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:39.066 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:39.066 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:39.069 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:39.126 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:39.126 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:39.127 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 60.6347ms +2021-09-02 14:58:40.050 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 14:58:41.136 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:41.136 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:41.136 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:41.138 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:41.192 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:41.192 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:41.192 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 55.8724ms +2021-09-02 14:58:41.625 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 14:58:43.206 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:43.206 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:43.206 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:43.210 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:43.262 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:43.262 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:43.262 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 56.0532ms +2021-09-02 14:58:45.273 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:45.274 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:45.274 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:45.276 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:45.333 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:45.333 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:45.334 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 60.2913ms +2021-09-02 14:58:47.351 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:47.352 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:47.352 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:47.355 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:47.410 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:47.411 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:47.412 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 60.3105ms +2021-09-02 14:58:49.423 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:49.424 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:49.424 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:49.426 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:49.484 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:49.484 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:49.484 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 60.8008ms +2021-09-02 14:58:51.496 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:51.497 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:51.497 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:51.499 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:51.553 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:51.554 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:51.554 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 57.4722ms +2021-09-02 14:58:53.566 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:53.567 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:53.567 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:53.569 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:53.625 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:53.625 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:53.626 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 59.5086ms +2021-09-02 14:58:55.639 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:55.639 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:55.639 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:55.641 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:55.697 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:55.697 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:55.697 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 58.1779ms +2021-09-02 14:58:57.709 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:57.710 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:57.710 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:57.712 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:57.769 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:57.769 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:57.769 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 59.5464ms +2021-09-02 14:58:59.782 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:58:59.783 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:58:59.783 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:58:59.785 +08:00 [INF] Successfully validated the token. +2021-09-02 14:58:59.839 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:59.839 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:58:59.839 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 57.1097ms +2021-09-02 14:59:01.078 +08:00 [DBG] 775 recurring job(s) processed by scheduler. +2021-09-02 14:59:01.848 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:59:01.849 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:59:01.849 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:59:01.851 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:01.895 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:01.896 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:01.896 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 47.4833ms +2021-09-02 14:59:03.908 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:59:03.908 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:59:03.909 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:59:03.911 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:03.959 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:03.959 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:03.959 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 51.1962ms +2021-09-02 14:59:05.973 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:59:05.973 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:59:05.973 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:59:05.975 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:06.024 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:06.024 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:06.025 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 51.8824ms +2021-09-02 14:59:08.043 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:59:08.044 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:59:08.044 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:59:08.046 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:08.098 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:08.098 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:08.098 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 54.8078ms +2021-09-02 14:59:10.110 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:59:10.110 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:59:10.110 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:59:10.112 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:10.168 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:10.168 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:10.168 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 58.6169ms +2021-09-02 14:59:12.179 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:59:12.180 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:59:12.180 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:59:12.181 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:12.226 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:12.226 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:12.226 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 47.0359ms +2021-09-02 14:59:13.780 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 14:59:14.232 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:59:14.232 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:59:14.232 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:59:14.235 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:14.280 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:14.280 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:14.281 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 49.0045ms +2021-09-02 14:59:16.293 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:59:16.293 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:59:16.293 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:59:16.295 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:16.340 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:16.340 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:16.340 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 47.5956ms +2021-09-02 14:59:18.356 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:59:18.356 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:59:18.357 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:59:18.358 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:18.403 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:18.403 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:18.403 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 47.0281ms +2021-09-02 14:59:20.408 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:59:20.408 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:59:20.408 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:59:20.410 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:20.472 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:20.472 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:20.472 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 64.1264ms +2021-09-02 14:59:22.480 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:59:22.481 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:59:22.481 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:59:22.483 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:22.540 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:22.540 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:22.541 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 60.1822ms +2021-09-02 14:59:24.550 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:59:24.550 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:59:24.550 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:59:24.552 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:24.607 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:24.607 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:24.607 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 57.7579ms +2021-09-02 14:59:26.611 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 +2021-09-02 14:59:26.611 +08:00 [INF] CORS policy execution failed. +2021-09-02 14:59:26.611 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 14:59:26.613 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:26.669 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:26.669 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:26.670 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/hangfire/stats application/x-www-form-urlencoded;+charset=UTF-8 392 - 200 - application/json 59.1677ms +2021-09-02 14:59:30.253 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 14:59:30.253 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:59:30.253 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4541ms +2021-09-02 14:59:30.255 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 14:59:30.256 +08:00 [INF] CORS policy execution successful. +2021-09-02 14:59:30.258 +08:00 [INF] Successfully validated the token. +2021-09-02 14:59:30.259 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:59:30.260 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 14:59:30.320 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 14:59:30.322 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 62.4803ms +2021-09-02 14:59:30.322 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 14:59:30.329 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:30.363 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:30.363 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 14:59:30.363 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 107.7784ms +2021-09-02 14:59:43.923 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:00:13.970 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:00:34.927 +08:00 [INF] 1 servers were removed due to timeout +2021-09-02 15:00:34.951 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:00:40.371 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:00:48.494 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:01:01.078 +08:00 [DBG] 834 recurring job(s) processed by scheduler. +2021-09-02 15:01:19.523 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:01:49.648 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:02:19.670 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:02:53.120 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:02:56.706 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:03:01.061 +08:00 [DBG] 176 recurring job(s) processed by scheduler. +2021-09-02 15:03:23.132 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:03:27.938 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:03:27.938 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:27.938 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6422ms +2021-09-02 15:03:27.947 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:03:27.948 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:27.952 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:27.955 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:27.955 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:28.029 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:28.031 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 75.463ms +2021-09-02 15:03:28.031 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:28.043 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:28.084 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:28.084 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:28.084 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 137.4071ms +2021-09-02 15:03:28.963 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:03:28.964 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:28.964 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 15:03:28.964 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:28.964 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 1.2006ms +2021-09-02 15:03:28.964 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.2938ms +2021-09-02 15:03:28.966 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:03:28.966 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 15:03:28.967 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:28.967 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:28.969 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:28.969 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:28.969 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:03:28.972 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:28.973 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:03:28.973 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:03:28.976 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:28.976 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:03:28.976 +08:00 [INF] Authorization was successful. +2021-09-02 15:03:28.977 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:28.977 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:29.044 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:29.055 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 77.5926ms +2021-09-02 15:03:29.055 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:29.063 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:29.132 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:29.132 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:29.136 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 169.9604ms +2021-09-02 15:03:29.330 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:29.332 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 356.1308ms +2021-09-02 15:03:29.332 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:29.341 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:29.370 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:29.370 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:29.371 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 405.0243ms +2021-09-02 15:03:33.420 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:03:33.420 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:33.420 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6827ms +2021-09-02 15:03:33.432 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:03:33.432 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:33.435 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:33.438 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:33.438 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:33.529 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:33.532 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 93.7877ms +2021-09-02 15:03:33.532 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:33.543 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:33.612 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:33.613 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:33.613 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 181.2075ms +2021-09-02 15:03:34.117 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:03:34.117 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:34.117 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.6724ms +2021-09-02 15:03:34.121 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:03:34.122 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:34.125 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:34.126 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 15:03:34.127 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:34.128 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 1.6265ms +2021-09-02 15:03:34.128 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:34.128 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:34.136 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 15:03:34.136 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:34.139 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:34.140 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:03:34.147 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:03:34.147 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:03:34.155 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:03:34.155 +08:00 [INF] Authorization was successful. +2021-09-02 15:03:34.164 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:34.164 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:34.178 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:34.179 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.4996ms +2021-09-02 15:03:34.179 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:34.186 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:34.249 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:34.250 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:34.251 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 129.5850ms +2021-09-02 15:03:34.265 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:34.271 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 106.2157ms +2021-09-02 15:03:34.271 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:34.276 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:34.319 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:34.319 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:34.320 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 184.0381ms +2021-09-02 15:03:40.955 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:03:40.955 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:40.955 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 15:03:40.955 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4420ms +2021-09-02 15:03:40.955 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:40.956 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.2925ms +2021-09-02 15:03:40.958 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:03:40.958 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:40.959 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 15:03:40.959 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:40.960 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:40.962 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:40.962 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:40.962 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:40.963 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:03:40.967 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:03:40.967 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:03:40.969 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:03:40.969 +08:00 [INF] Authorization was successful. +2021-09-02 15:03:40.970 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:40.970 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:41.001 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:41.002 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.5224ms +2021-09-02 15:03:41.003 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:41.020 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:41.020 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:41.029 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 58.2152ms +2021-09-02 15:03:41.029 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:41.037 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:41.053 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:41.053 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:41.053 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 95.5715ms +2021-09-02 15:03:41.071 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:41.071 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:41.071 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 112.6303ms +2021-09-02 15:03:46.839 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:03:46.840 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:46.840 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.8094ms +2021-09-02 15:03:46.846 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:03:46.847 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:46.850 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:46.852 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:46.852 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:46.927 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:46.929 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 77.1705ms +2021-09-02 15:03:46.929 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:46.937 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:46.995 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:46.995 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:46.996 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 149.2805ms +2021-09-02 15:03:47.954 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 15:03:47.955 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:47.955 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.7035ms +2021-09-02 15:03:47.957 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 15:03:47.957 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:47.960 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:47.960 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:03:47.963 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:03:47.964 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:47.964 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.6292ms +2021-09-02 15:03:47.965 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:03:47.965 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:03:47.966 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:03:47.966 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:47.967 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:03:47.968 +08:00 [INF] Authorization was successful. +2021-09-02 15:03:47.968 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:47.969 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:47.969 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:47.970 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:47.970 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:48.019 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:48.022 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:48.023 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.9195ms +2021-09-02 15:03:48.023 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:48.026 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 57.3017ms +2021-09-02 15:03:48.026 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:48.027 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:48.033 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:48.072 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:48.072 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:48.073 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 106.9216ms +2021-09-02 15:03:48.077 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:48.077 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:48.078 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 120.7743ms +2021-09-02 15:03:51.379 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:03:51.380 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:51.384 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:51.386 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:51.386 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:51.460 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:51.462 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 76.1846ms +2021-09-02 15:03:51.462 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:51.471 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:51.514 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:51.514 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:51.514 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 134.8778ms +2021-09-02 15:03:51.972 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 15:03:51.972 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:51.976 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:51.978 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:03:51.980 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:03:51.981 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:03:51.982 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:03:51.982 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:03:51.985 +08:00 [INF] Successfully validated the token. +2021-09-02 15:03:51.985 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:03:51.986 +08:00 [INF] Authorization was successful. +2021-09-02 15:03:51.987 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:51.987 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:51.987 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:51.987 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:03:52.053 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:52.056 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:03:52.057 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 69.9406ms +2021-09-02 15:03:52.057 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:52.062 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 74.7221ms +2021-09-02 15:03:52.062 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:03:52.064 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:52.069 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:52.120 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:52.120 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:52.120 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 140.3580ms +2021-09-02 15:03:52.123 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:52.124 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:03:52.124 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 152.4118ms +2021-09-02 15:03:53.357 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:04:23.393 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:04:53.835 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:05:01.192 +08:00 [DBG] 560 recurring job(s) processed by scheduler. +2021-09-02 15:05:02.233 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:05:02.234 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:02.234 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6340ms +2021-09-02 15:05:02.242 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:05:02.245 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:02.254 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:02.257 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:02.257 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:02.361 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:02.364 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 106.278ms +2021-09-02 15:05:02.364 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:02.375 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:02.416 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:02.416 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:02.417 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 174.7041ms +2021-09-02 15:05:03.184 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 15:05:03.184 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:03.184 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5091ms +2021-09-02 15:05:03.187 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 15:05:03.187 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:03.191 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:03.191 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:05:03.196 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:05:03.196 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:05:03.200 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:05:03.200 +08:00 [INF] Authorization was successful. +2021-09-02 15:05:03.201 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:03.202 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:03.219 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:05:03.219 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:03.220 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 1.4481ms +2021-09-02 15:05:03.226 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:05:03.228 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:03.239 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:03.241 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:03.242 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:03.242 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:03.246 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 44.4767ms +2021-09-02 15:05:03.246 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:03.250 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:03.295 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:03.298 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 55.4182ms +2021-09-02 15:05:03.299 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:03.305 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:03.327 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:03.327 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:03.329 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 141.8362ms +2021-09-02 15:05:03.343 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:03.343 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:03.344 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 118.1660ms +2021-09-02 15:05:08.514 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:05:08.515 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:08.515 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6032ms +2021-09-02 15:05:08.522 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:05:08.523 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:08.527 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:08.530 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:08.530 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:09.876 +08:00 [ERR] An error occurred using the connection to database 'CompanyNameProjectNameDB' on server 'localhost'. +2021-09-02 15:05:10.040 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 15:05:10.041 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 24 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 863 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 414 + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlRelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(IsolationLevel isolationLevel, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(CancellationToken cancellationToken) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextWithTransactionAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.IdentityServer.Clients.ClientRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.Clients.IdentityServerClientAppService.GetListAsync(PagingClientListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\Clients\IdentityServerClientAppService.cs:line 22 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method2633(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 15:05:10.045 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 15:05:10.050 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1519.8536ms +2021-09-02 15:05:10.050 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:10.246 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:10.246 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:10.246 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 500 - application/json;+charset=utf-8 1724.4851ms +2021-09-02 15:05:10.769 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:05:10.769 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:10.772 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:10.775 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:10.775 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:11.292 +08:00 [ERR] An error occurred using the connection to database 'CompanyNameProjectNameDB' on server 'localhost'. +2021-09-02 15:05:11.421 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 15:05:11.421 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 24 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 863 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 414 + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlRelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(IsolationLevel isolationLevel, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(CancellationToken cancellationToken) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextWithTransactionAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.IdentityServer.Clients.ClientRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.Clients.IdentityServerClientAppService.GetListAsync(PagingClientListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\Clients\IdentityServerClientAppService.cs:line 22 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method2633(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 15:05:11.422 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 15:05:11.422 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 646.7699ms +2021-09-02 15:05:11.422 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:11.479 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:11.480 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:11.480 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 500 - application/json;+charset=utf-8 711.0415ms +2021-09-02 15:05:12.853 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:05:12.853 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:12.855 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:12.858 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:12.858 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:13.500 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:05:13.500 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:13.501 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.7259ms +2021-09-02 15:05:13.767 +08:00 [ERR] Failed executing DbCommand (787ms) [Parameters=[@__ef_filter__p_0='?' (DbType = Boolean), @__p_1='?' (DbType = Int32), @__p_0='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30'] +SELECT `i0`.`ClientId`, `i0`.`Scope`, `t`.`Id` +FROM ( + SELECT `i`.`Id`, `i`.`CreationTime` + FROM `IdentityServerClients` AS `i` + WHERE @__ef_filter__p_0 OR NOT (`i`.`IsDeleted`) + ORDER BY `i`.`CreationTime` + LIMIT @__p_1 OFFSET @__p_0 +) AS `t` +INNER JOIN `IdentityServerClientScopes` AS `i0` ON `t`.`Id` = `i0`.`ClientId` +ORDER BY `t`.`CreationTime`, `t`.`Id` +2021-09-02 15:05:13.779 +08:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.IdentityServer.EntityFrameworkCore.IdentityServerDbContext'. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.<>c__DisplayClass63_0`2.<g__InitializeReaderAsync|0>d.MoveNext() +--- End of stack trace from previous location --- + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.PopulateSplitIncludeCollectionAsync[TIncludingEntity,TIncludedEntity](Int32 collectionId, RelationalQueryContext queryContext, IExecutionStrategy executionStrategy, Boolean detailedErrorsEnabled, SplitQueryResultCoordinator resultCoordinator, RelationalCommandCache relationalCommandCache, Func`3 childIdentifier, IReadOnlyList`1 identifierValueComparers, Func`5 innerShaper, Func`4 relatedDataLoaders, INavigationBase inverseNavigation, Action`2 fixup, Boolean trackingQuery) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.TaskAwaiter(Func`1[] taskFactories) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.<>c__DisplayClass63_0`2.<g__InitializeReaderAsync|0>d.MoveNext() +--- End of stack trace from previous location --- + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.PopulateSplitIncludeCollectionAsync[TIncludingEntity,TIncludedEntity](Int32 collectionId, RelationalQueryContext queryContext, IExecutionStrategy executionStrategy, Boolean detailedErrorsEnabled, SplitQueryResultCoordinator resultCoordinator, RelationalCommandCache relationalCommandCache, Func`3 childIdentifier, IReadOnlyList`1 identifierValueComparers, Func`5 innerShaper, Func`4 relatedDataLoaders, INavigationBase inverseNavigation, Action`2 fixup, Boolean trackingQuery) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.TaskAwaiter(Func`1[] taskFactories) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +2021-09-02 15:05:14.832 +08:00 [ERR] An error occurred using a transaction. +2021-09-02 15:05:14.835 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 15:05:14.835 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.<>c__DisplayClass63_0`2.<g__InitializeReaderAsync|0>d.MoveNext() +--- End of stack trace from previous location --- + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.PopulateSplitIncludeCollectionAsync[TIncludingEntity,TIncludedEntity](Int32 collectionId, RelationalQueryContext queryContext, IExecutionStrategy executionStrategy, Boolean detailedErrorsEnabled, SplitQueryResultCoordinator resultCoordinator, RelationalCommandCache relationalCommandCache, Func`3 childIdentifier, IReadOnlyList`1 identifierValueComparers, Func`5 innerShaper, Func`4 relatedDataLoaders, INavigationBase inverseNavigation, Action`2 fixup, Boolean trackingQuery) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.TaskAwaiter(Func`1[] taskFactories) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.IdentityServer.Clients.ClientRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.Clients.IdentityServerClientAppService.GetListAsync(PagingClientListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\Clients\IdentityServerClientAppService.cs:line 22 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method2633(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 15:05:14.836 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 15:05:14.836 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1977.8707ms +2021-09-02 15:05:14.836 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:14.920 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:14.920 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:14.920 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 500 - application/json;+charset=utf-8 2067.7966ms +2021-09-02 15:05:15.037 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:05:15.038 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:15.038 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4553ms +2021-09-02 15:05:15.044 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:05:15.045 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:15.048 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:15.050 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:15.050 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:15.118 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:15.120 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 69.9264ms +2021-09-02 15:05:15.120 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:15.127 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:15.174 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:15.174 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:15.174 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 130.1010ms +2021-09-02 15:05:15.955 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 15:05:15.956 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:15.956 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.6839ms +2021-09-02 15:05:15.959 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:05:15.959 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:15.961 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 15:05:15.962 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:15.962 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:15.964 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:15.965 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:15.965 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:15.965 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:05:15.970 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:05:15.970 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:05:15.974 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:05:15.974 +08:00 [INF] Authorization was successful. +2021-09-02 15:05:15.975 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:15.976 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:16.015 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:16.016 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.3626ms +2021-09-02 15:05:16.016 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:16.038 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:16.632 +08:00 [ERR] Failed executing DbCommand (570ms) [Parameters=[@__ef_filter__p_0='?' (DbType = Boolean), @__ef_filter__p_1='?' (DbType = Boolean), @__p_1='?' (DbType = Int32), @__p_0='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30'] +SELECT `a`.`Id`, `a`.`AccessFailedCount`, `a`.`ConcurrencyStamp`, `a`.`CreationTime`, `a`.`CreatorId`, `a`.`DeleterId`, `a`.`DeletionTime`, `a`.`Email`, `a`.`EmailConfirmed`, `a`.`ExtraProperties`, `a`.`IsDeleted`, `a`.`IsExternal`, `a`.`LastModificationTime`, `a`.`LastModifierId`, `a`.`LockoutEnabled`, `a`.`LockoutEnd`, `a`.`Name`, `a`.`NormalizedEmail`, `a`.`NormalizedUserName`, `a`.`PasswordHash`, `a`.`PhoneNumber`, `a`.`PhoneNumberConfirmed`, `a`.`SecurityStamp`, `a`.`Surname`, `a`.`TenantId`, `a`.`TwoFactorEnabled`, `a`.`UserName` +FROM `AbpUsers` AS `a` +WHERE (@__ef_filter__p_0 OR NOT (`a`.`IsDeleted`)) AND (@__ef_filter__p_1 OR (`a`.`TenantId` IS NULL)) +ORDER BY `a`.`LastModificationTime` DESC +LIMIT @__p_1 OFFSET @__p_0 +2021-09-02 15:05:16.635 +08:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.Identity.EntityFrameworkCore.IdentityDbContext'. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +2021-09-02 15:05:16.744 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:16.744 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:16.745 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 785.8005ms +2021-09-02 15:05:17.344 +08:00 [ERR] An error occurred using a transaction. +2021-09-02 15:05:17.349 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 15:05:17.349 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.Identity.EntityFrameworkCore.EfCoreIdentityUserRepository.GetListAsync(String sorting, Int32 maxResultCount, Int32 skipCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.Users.UserAppService.ListAsync(PagingUserListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\Users\UserAppService.cs:line 49 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method1878(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 15:05:17.349 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 15:05:17.349 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 1373.4301ms +2021-09-02 15:05:17.349 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:17.428 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:17.428 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:17.429 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 500 - application/json;+charset=utf-8 1467.5289ms +2021-09-02 15:05:18.343 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:05:18.343 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:18.347 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:18.349 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:18.350 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:18.421 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:18.422 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 72.3915ms +2021-09-02 15:05:18.422 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:18.432 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:18.476 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:18.476 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:18.477 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 133.9791ms +2021-09-02 15:05:18.960 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:05:18.960 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:18.960 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.6217ms +2021-09-02 15:05:18.962 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:05:18.963 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:18.966 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:18.968 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:18.968 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:18.974 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 15:05:18.974 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:18.977 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:18.978 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:05:18.983 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:05:18.983 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:05:18.987 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:05:18.987 +08:00 [INF] Authorization was successful. +2021-09-02 15:05:18.994 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:18.996 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:19.018 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:19.018 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.8984ms +2021-09-02 15:05:19.018 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:19.024 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:19.058 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:19.070 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 73.6001ms +2021-09-02 15:05:19.070 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:19.075 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:19.081 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:19.081 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:19.082 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 119.2962ms +2021-09-02 15:05:19.108 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:19.108 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:19.109 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 135.0385ms +2021-09-02 15:05:23.200 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:05:23.200 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:23.200 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6527ms +2021-09-02 15:05:23.216 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:05:23.217 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:23.221 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:23.223 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:23.223 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:23.233 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 15:05:23.233 +08:00 [ERR] Unexpected end of request content. +Microsoft.AspNetCore.Server.Kestrel.Core.BadHttpRequestException: Unexpected end of request content. + at Microsoft.AspNetCore.Server.Kestrel.Core.KestrelBadHttpRequestException.Throw(RequestRejectionReason reason) + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1MessageBody.ThrowUnexpectedEndOfRequestContent() + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1ContentLengthMessageBody.ReadAsyncInternal(CancellationToken cancellationToken) + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestStream.ReadAsyncInternal(Memory`1 destination, CancellationToken cancellationToken) + at System.Text.Json.JsonSerializer.ReadAsync[TValue](Stream utf8Json, Type returnType, JsonSerializerOptions options, CancellationToken cancellationToken) + at Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonInputFormatter.ReadRequestBodyAsync(InputFormatterContext context, Encoding encoding) + at Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonInputFormatter.ReadRequestBodyAsync(InputFormatterContext context, Encoding encoding) + at Volo.Abp.AspNetCore.Mvc.Json.AbpHybridJsonInputFormatter.ReadRequestBodyAsync(InputFormatterContext context, Encoding encoding) + at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BodyModelBinder.BindModelAsync(ModelBindingContext bindingContext) + at Microsoft.AspNetCore.Mvc.ModelBinding.ParameterBinder.BindModelAsync(ActionContext actionContext, IModelBinder modelBinder, IValueProvider valueProvider, ParameterDescriptor parameter, ModelMetadata metadata, Object value, Object container) + at Microsoft.AspNetCore.Mvc.Controllers.ControllerBinderDelegateProvider.<>c__DisplayClass0_0.<g__Bind|0>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 15:05:23.233 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 15:05:23.233 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 10.1767ms +2021-09-02 15:05:23.233 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:23.268 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:23.268 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:23.269 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 500 - application/json;+charset=utf-8 52.3716ms +2021-09-02 15:05:24.071 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:05:25.935 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 15:05:25.935 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:25.935 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.4442ms +2021-09-02 15:05:25.937 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 15:05:25.937 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:25.940 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:25.941 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:05:25.944 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:05:25.945 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:05:25.947 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:05:25.947 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:05:25.947 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:25.947 +08:00 [INF] Authorization was successful. +2021-09-02 15:05:25.947 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.3902ms +2021-09-02 15:05:25.948 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:25.948 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:25.949 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:05:25.949 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:25.951 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:25.952 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:25.952 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:25.997 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:26.003 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:26.003 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.5779ms +2021-09-02 15:05:26.003 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:26.004 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 56.1562ms +2021-09-02 15:05:26.004 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:26.007 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:26.007 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:26.051 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:26.051 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:26.051 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:26.051 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:26.051 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 102.5910ms +2021-09-02 15:05:26.051 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 114.6051ms +2021-09-02 15:05:31.362 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:05:31.362 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:31.362 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6325ms +2021-09-02 15:05:31.368 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:05:31.368 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:31.372 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:31.374 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:31.374 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:31.443 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:31.445 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 70.7618ms +2021-09-02 15:05:31.445 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:31.454 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:31.509 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:31.509 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:31.510 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 141.8269ms +2021-09-02 15:05:32.096 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:05:32.097 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:32.097 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.5572ms +2021-09-02 15:05:32.100 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:05:32.101 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:32.103 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:32.105 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:32.106 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:32.112 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - +2021-09-02 15:05:32.113 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:32.113 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/Users/page - - - 204 - - 0.5841ms +2021-09-02 15:05:32.120 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 +2021-09-02 15:05:32.120 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:32.134 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:32.136 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:05:32.142 +08:00 [DBG] Found in the cache: pn:U,pk:39fe52c6-27a0-d54c-0b47-4133f044c8fa,n:AbpIdentity.Users +2021-09-02 15:05:32.142 +08:00 [DBG] PermissionStore.GetCacheItemAsync: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:05:32.147 +08:00 [DBG] Found in the cache: pn:R,pk:admin,n:AbpIdentity.Users +2021-09-02 15:05:32.147 +08:00 [INF] Authorization was successful. +2021-09-02 15:05:32.150 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:32.150 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:32.150 +08:00 [INF] Route matched with {action = "List", controller = "UserContoller", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Volo.Abp.Identity.IdentityUserDto]] ListAsync(CompanyName.ProjectName.Users.Dtos.PagingUserListInput) on controller CompanyName.ProjectName.Controllers.Systems.UserContoller (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:32.150 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.8473ms +2021-09-02 15:05:32.151 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:32.157 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:32.208 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=4.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:32.209 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:32.209 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:32.210 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 109.3400ms +2021-09-02 15:05:32.213 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi) in 62.1747ms +2021-09-02 15:05:32.213 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.Systems.UserContoller.ListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:32.216 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:32.257 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:32.257 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:32.257 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/Users/page application/json 24 - 200 - application/json;+charset=utf-8 137.4319ms +2021-09-02 15:05:34.793 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:05:34.793 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:34.797 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:34.799 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:34.800 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:34.997 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:05:35.329 +08:00 [ERR] An error occurred using the connection to database 'CompanyNameProjectNameDB' on server 'localhost'. +2021-09-02 15:05:35.465 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 15:05:35.465 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.ConnectionPool.GetSessionAsync(MySqlConnection connection, Int32 startTickCount, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/ConnectionPool.cs:line 24 + at MySqlConnector.MySqlConnection.CreateSessionAsync(ConnectionPool pool, Int32 startTickCount, Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 863 + at MySqlConnector.MySqlConnection.OpenAsync(Nullable`1 ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlConnection.cs:line 414 + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternalAsync(Boolean errorsExpected, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlRelationalConnection.OpenAsync(CancellationToken cancellationToken, Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(IsolationLevel isolationLevel, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransactionAsync(CancellationToken cancellationToken) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextWithTransactionAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextAsync(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContextAsync() + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.GetDbSetAsync() + at Volo.Abp.IdentityServer.Clients.ClientRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.Clients.IdentityServerClientAppService.GetListAsync(PagingClientListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\Clients\IdentityServerClientAppService.cs:line 22 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method2633(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 15:05:35.466 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 15:05:35.466 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 666.0216ms +2021-09-02 15:05:35.466 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:35.518 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:35.518 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:35.518 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 500 - application/json;+charset=utf-8 725.5371ms +2021-09-02 15:05:36.667 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:05:36.667 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:36.667 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4791ms +2021-09-02 15:05:36.676 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:05:36.676 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:36.679 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:36.681 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:36.682 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:36.754 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:36.756 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 73.8469ms +2021-09-02 15:05:36.756 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:36.765 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:36.806 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:36.806 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:36.807 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 131.1439ms +2021-09-02 15:05:36.955 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:05:36.956 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:36.958 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:36.960 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:36.960 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:37.002 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:37.003 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.243ms +2021-09-02 15:05:37.003 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:37.009 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:37.044 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:37.044 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:37.044 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 88.7958ms +2021-09-02 15:05:39.978 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:05:39.978 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:39.978 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.5856ms +2021-09-02 15:05:39.980 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:05:39.981 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:39.984 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:39.987 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:39.987 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:40.031 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:40.032 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.7975ms +2021-09-02 15:05:40.032 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:40.038 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:40.097 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:40.097 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:40.097 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 116.9388ms +2021-09-02 15:05:40.533 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:05:40.533 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:40.536 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:40.538 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:40.538 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:40.956 +08:00 [ERR] Failed executing DbCommand (367ms) [Parameters=[@__ef_filter__p_0='?' (DbType = Boolean), @__p_1='?' (DbType = Int32), @__p_0='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30'] +SELECT `i0`.`ClientId`, `i0`.`GrantType`, `t`.`Id` +FROM ( + SELECT `i`.`Id`, `i`.`CreationTime` + FROM `IdentityServerClients` AS `i` + WHERE @__ef_filter__p_0 OR NOT (`i`.`IsDeleted`) + ORDER BY `i`.`CreationTime` + LIMIT @__p_1 OFFSET @__p_0 +) AS `t` +INNER JOIN `IdentityServerClientGrantTypes` AS `i0` ON `t`.`Id` = `i0`.`ClientId` +ORDER BY `t`.`CreationTime`, `t`.`Id` +2021-09-02 15:05:40.959 +08:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.IdentityServer.EntityFrameworkCore.IdentityServerDbContext'. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.<>c__DisplayClass63_0`2.<g__InitializeReaderAsync|0>d.MoveNext() +--- End of stack trace from previous location --- + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.PopulateSplitIncludeCollectionAsync[TIncludingEntity,TIncludedEntity](Int32 collectionId, RelationalQueryContext queryContext, IExecutionStrategy executionStrategy, Boolean detailedErrorsEnabled, SplitQueryResultCoordinator resultCoordinator, RelationalCommandCache relationalCommandCache, Func`3 childIdentifier, IReadOnlyList`1 identifierValueComparers, Func`5 innerShaper, Func`4 relatedDataLoaders, INavigationBase inverseNavigation, Action`2 fixup, Boolean trackingQuery) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.TaskAwaiter(Func`1[] taskFactories) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.<>c__DisplayClass63_0`2.<g__InitializeReaderAsync|0>d.MoveNext() +--- End of stack trace from previous location --- + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.PopulateSplitIncludeCollectionAsync[TIncludingEntity,TIncludedEntity](Int32 collectionId, RelationalQueryContext queryContext, IExecutionStrategy executionStrategy, Boolean detailedErrorsEnabled, SplitQueryResultCoordinator resultCoordinator, RelationalCommandCache relationalCommandCache, Func`3 childIdentifier, IReadOnlyList`1 identifierValueComparers, Func`5 innerShaper, Func`4 relatedDataLoaders, INavigationBase inverseNavigation, Action`2 fixup, Boolean trackingQuery) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.TaskAwaiter(Func`1[] taskFactories) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +2021-09-02 15:05:41.682 +08:00 [ERR] An error occurred using a transaction. +2021-09-02 15:05:41.684 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 15:05:41.684 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.<>c__DisplayClass63_0`2.<g__InitializeReaderAsync|0>d.MoveNext() +--- End of stack trace from previous location --- + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.PopulateSplitIncludeCollectionAsync[TIncludingEntity,TIncludedEntity](Int32 collectionId, RelationalQueryContext queryContext, IExecutionStrategy executionStrategy, Boolean detailedErrorsEnabled, SplitQueryResultCoordinator resultCoordinator, RelationalCommandCache relationalCommandCache, Func`3 childIdentifier, IReadOnlyList`1 identifierValueComparers, Func`5 innerShaper, Func`4 relatedDataLoaders, INavigationBase inverseNavigation, Action`2 fixup, Boolean trackingQuery) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.TaskAwaiter(Func`1[] taskFactories) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.IdentityServer.Clients.ClientRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.Clients.IdentityServerClientAppService.GetListAsync(PagingClientListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\Clients\IdentityServerClientAppService.cs:line 22 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method2633(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 15:05:41.684 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 15:05:41.684 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1146.5327ms +2021-09-02 15:05:41.685 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:41.744 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:41.744 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:41.745 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 500 - application/json;+charset=utf-8 1212.2310ms +2021-09-02 15:05:42.498 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:05:42.499 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:42.499 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5081ms +2021-09-02 15:05:42.509 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:05:42.509 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:42.512 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:42.514 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:42.515 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:42.583 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:42.584 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 68.9844ms +2021-09-02 15:05:42.584 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:42.591 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:42.627 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:42.627 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:42.628 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 119.0332ms +2021-09-02 15:05:42.948 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:05:42.949 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:42.951 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:42.952 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:42.953 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:42.989 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:42.989 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.7802ms +2021-09-02 15:05:42.989 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:42.994 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:43.034 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:43.034 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:43.035 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 86.4848ms +2021-09-02 15:05:54.214 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:05:54.941 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:05:54.941 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:54.941 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4643ms +2021-09-02 15:05:54.943 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:05:54.943 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:05:54.945 +08:00 [INF] Successfully validated the token. +2021-09-02 15:05:54.946 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:54.947 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:05:54.982 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:05:54.983 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.2121ms +2021-09-02 15:05:54.983 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:05:54.987 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:55.030 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:55.030 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:05:55.030 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 87.3034ms +2021-09-02 15:06:01.214 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:06:01.215 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:01.215 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5247ms +2021-09-02 15:06:01.218 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:06:01.219 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:01.222 +08:00 [INF] Successfully validated the token. +2021-09-02 15:06:01.223 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:01.223 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:06:01.295 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:06:01.296 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 72.8552ms +2021-09-02 15:06:01.297 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:01.305 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:01.352 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:01.352 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:01.353 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 134.4944ms +2021-09-02 15:06:03.572 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:06:03.572 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:03.577 +08:00 [INF] Successfully validated the token. +2021-09-02 15:06:03.579 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:03.580 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:06:03.654 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:06:03.656 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 76.3652ms +2021-09-02 15:06:03.656 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:03.663 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:03.699 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:03.699 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:03.700 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 128.0876ms +2021-09-02 15:06:03.955 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:06:03.955 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:03.955 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4797ms +2021-09-02 15:06:03.958 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:06:03.958 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:03.961 +08:00 [INF] Successfully validated the token. +2021-09-02 15:06:03.963 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:03.963 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:06:04.007 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:06:04.008 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.8282ms +2021-09-02 15:06:04.008 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:04.015 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:04.061 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:04.061 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:04.061 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 103.8230ms +2021-09-02 15:06:07.974 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:06:07.974 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:07.975 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5849ms +2021-09-02 15:06:07.987 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:06:07.987 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:07.991 +08:00 [INF] Successfully validated the token. +2021-09-02 15:06:07.993 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:07.993 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:06:08.062 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:06:08.064 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 70.8965ms +2021-09-02 15:06:08.064 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:08.072 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:08.109 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:08.109 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:08.110 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 123.0764ms +2021-09-02 15:06:08.288 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:06:08.288 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:08.292 +08:00 [INF] Successfully validated the token. +2021-09-02 15:06:08.293 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:08.294 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:06:08.335 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:06:08.336 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 41.8402ms +2021-09-02 15:06:08.336 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:08.342 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:08.385 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:08.386 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:08.386 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 98.4232ms +2021-09-02 15:06:11.878 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:06:11.878 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:11.881 +08:00 [INF] Successfully validated the token. +2021-09-02 15:06:11.882 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:11.882 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:06:11.950 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:06:11.952 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 69.5318ms +2021-09-02 15:06:11.952 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:11.960 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:12.003 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:12.003 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:12.003 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 125.5373ms +2021-09-02 15:06:12.199 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:06:12.200 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:12.200 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4708ms +2021-09-02 15:06:12.202 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:06:12.203 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:12.206 +08:00 [INF] Successfully validated the token. +2021-09-02 15:06:12.208 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:12.208 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:06:12.248 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:06:12.249 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.8801ms +2021-09-02 15:06:12.249 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:12.255 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:12.303 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:12.303 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:12.304 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 101.1329ms +2021-09-02 15:06:14.946 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:06:14.947 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:14.949 +08:00 [INF] Successfully validated the token. +2021-09-02 15:06:14.951 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:14.951 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:06:14.993 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:06:14.994 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.334ms +2021-09-02 15:06:14.994 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:15.000 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:15.059 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:15.059 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:15.060 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 113.6092ms +2021-09-02 15:06:15.682 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:06:15.682 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:15.682 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6037ms +2021-09-02 15:06:15.685 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:06:15.685 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:15.687 +08:00 [INF] Successfully validated the token. +2021-09-02 15:06:15.689 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:15.689 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:06:15.748 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:06:15.749 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 60.2026ms +2021-09-02 15:06:15.749 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:15.756 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:15.792 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:15.792 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:15.793 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 108.4561ms +2021-09-02 15:06:24.627 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:06:35.617 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:06:35.617 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:35.618 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6185ms +2021-09-02 15:06:35.620 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:06:35.621 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:35.624 +08:00 [INF] Successfully validated the token. +2021-09-02 15:06:35.626 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:35.626 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:06:35.686 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:06:35.687 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 60.6415ms +2021-09-02 15:06:35.687 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:35.693 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:35.732 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:35.732 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:35.732 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 111.7849ms +2021-09-02 15:06:35.954 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:06:35.954 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:35.954 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.6021ms +2021-09-02 15:06:35.957 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:06:35.957 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:06:35.960 +08:00 [INF] Successfully validated the token. +2021-09-02 15:06:35.962 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:35.963 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:06:36.009 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:06:36.009 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 46.5443ms +2021-09-02 15:06:36.009 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:06:36.016 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:36.057 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:36.057 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:06:36.058 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 101.0550ms +2021-09-02 15:06:56.117 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:07:01.081 +08:00 [DBG] 540 recurring job(s) processed by scheduler. +2021-09-02 15:07:11.897 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:07:11.897 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:07:11.898 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4593ms +2021-09-02 15:07:11.899 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:07:11.900 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:07:11.902 +08:00 [INF] Successfully validated the token. +2021-09-02 15:07:11.903 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:07:11.904 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:07:11.964 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:07:11.965 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 61.7278ms +2021-09-02 15:07:11.965 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:07:11.972 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:12.010 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:12.011 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:12.011 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 111.8588ms +2021-09-02 15:07:12.237 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:07:12.238 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:07:12.238 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.8691ms +2021-09-02 15:07:12.245 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:07:12.245 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:07:12.249 +08:00 [INF] Successfully validated the token. +2021-09-02 15:07:12.251 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:07:12.251 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:07:12.298 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:07:12.299 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 47.3276ms +2021-09-02 15:07:12.299 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:07:12.305 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:12.354 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:12.354 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:12.354 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 109.7672ms +2021-09-02 15:07:26.163 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:07:39.983 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:07:39.984 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:07:39.984 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4928ms +2021-09-02 15:07:39.987 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:07:39.987 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:07:39.990 +08:00 [INF] Successfully validated the token. +2021-09-02 15:07:39.992 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:07:39.992 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:07:40.030 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:07:40.030 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.0228ms +2021-09-02 15:07:40.031 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:07:40.036 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:40.069 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:40.069 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:40.070 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 82.7824ms +2021-09-02 15:07:46.048 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:07:46.049 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:07:46.049 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6324ms +2021-09-02 15:07:46.051 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:07:46.052 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:07:46.055 +08:00 [INF] Successfully validated the token. +2021-09-02 15:07:46.058 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:07:46.058 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:07:46.138 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:07:46.140 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 81.7107ms +2021-09-02 15:07:46.140 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:07:46.148 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:46.202 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:46.202 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:46.203 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 151.4045ms +2021-09-02 15:07:46.371 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:07:46.372 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:07:46.372 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.6276ms +2021-09-02 15:07:46.375 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:07:46.376 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:07:46.381 +08:00 [INF] Successfully validated the token. +2021-09-02 15:07:46.383 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:07:46.383 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:07:46.432 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:07:46.433 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.6801ms +2021-09-02 15:07:46.433 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:07:46.439 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:46.486 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:46.486 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:07:46.486 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 110.6714ms +2021-09-02 15:07:56.388 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:08:17.871 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:08:17.872 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:17.872 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6628ms +2021-09-02 15:08:17.874 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:08:17.874 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:17.877 +08:00 [INF] Successfully validated the token. +2021-09-02 15:08:17.878 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:17.878 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:08:17.942 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:08:17.944 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 65.0595ms +2021-09-02 15:08:17.944 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:17.952 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:17.995 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:17.995 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:17.995 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 121.3689ms +2021-09-02 15:08:18.263 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:08:18.264 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:18.264 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 1.0667ms +2021-09-02 15:08:18.282 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:08:18.282 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:18.286 +08:00 [INF] Successfully validated the token. +2021-09-02 15:08:18.288 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:18.288 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:08:18.721 +08:00 [ERR] Failed executing DbCommand (358ms) [Parameters=[@__ef_filter__p_0='?' (DbType = Boolean), @__p_1='?' (DbType = Int32), @__p_0='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30'] +SELECT `t`.`Id`, `t`.`ConcurrencyStamp`, `t`.`CreationTime`, `t`.`CreatorId`, `t`.`DeleterId`, `t`.`DeletionTime`, `t`.`Description`, `t`.`DisplayName`, `t`.`Emphasize`, `t`.`Enabled`, `t`.`ExtraProperties`, `t`.`IsDeleted`, `t`.`LastModificationTime`, `t`.`LastModifierId`, `t`.`Name`, `t`.`Required`, `t`.`ShowInDiscoveryDocument` +FROM ( + SELECT `i`.`Id`, `i`.`ConcurrencyStamp`, `i`.`CreationTime`, `i`.`CreatorId`, `i`.`DeleterId`, `i`.`DeletionTime`, `i`.`Description`, `i`.`DisplayName`, `i`.`Emphasize`, `i`.`Enabled`, `i`.`ExtraProperties`, `i`.`IsDeleted`, `i`.`LastModificationTime`, `i`.`LastModifierId`, `i`.`Name`, `i`.`Required`, `i`.`ShowInDiscoveryDocument` + FROM `IdentityServerIdentityResources` AS `i` + WHERE @__ef_filter__p_0 OR NOT (`i`.`IsDeleted`) + ORDER BY `i`.`CreationTime` + LIMIT @__p_1 OFFSET @__p_0 +) AS `t` +ORDER BY `t`.`CreationTime`, `t`.`Id` +2021-09-02 15:08:18.728 +08:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.IdentityServer.EntityFrameworkCore.IdentityServerDbContext'. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +2021-09-02 15:08:19.397 +08:00 [ERR] An error occurred using a transaction. +2021-09-02 15:08:19.399 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 15:08:19.399 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.IdentityServer.IdentityResources.IdentityResourceRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.Mappers.IdentityResources.IdentityResourceAppService.GetListAsync(PagingIdentityResourceListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\IdentityResources\IdentityResourceAppService.cs:line 29 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method3414(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 15:08:19.400 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 15:08:19.400 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1111.5182ms +2021-09-02 15:08:19.400 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:19.458 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:19.458 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:19.459 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 500 - application/json;+charset=utf-8 1177.0424ms +2021-09-02 15:08:20.263 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:08:20.264 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:20.267 +08:00 [INF] Successfully validated the token. +2021-09-02 15:08:20.269 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:20.270 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:08:20.344 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:08:20.346 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 76.0425ms +2021-09-02 15:08:20.346 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:20.353 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:20.402 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:20.402 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:20.402 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 139.1247ms +2021-09-02 15:08:20.950 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:08:20.950 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:20.953 +08:00 [INF] Successfully validated the token. +2021-09-02 15:08:20.954 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:20.954 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:08:20.995 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:08:20.996 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.0713ms +2021-09-02 15:08:20.996 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:21.009 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:21.052 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:21.053 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:21.053 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 102.6713ms +2021-09-02 15:08:22.930 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/enabled - - +2021-09-02 15:08:22.930 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:22.930 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/enabled - - - 204 - - 0.4718ms +2021-09-02 15:08:22.932 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/enabled application/json 33 +2021-09-02 15:08:22.933 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:22.936 +08:00 [INF] Successfully validated the token. +2021-09-02 15:08:22.937 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.EnabledAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:22.941 +08:00 [INF] Route matched with {action = "Enabled", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task EnabledAsync(CompanyName.ProjectName.IdentityServers.Clients.EnabledInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:08:23.069 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.EnabledAsync (CompanyName.ProjectName.HttpApi) in 128.3308ms +2021-09-02 15:08:23.069 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.EnabledAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:23.099 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:23.099 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:23.149 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:23.149 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:23.149 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/enabled application/json 33 - 204 - - 216.5899ms +2021-09-02 15:08:23.225 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:08:23.225 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:23.225 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4289ms +2021-09-02 15:08:23.227 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:08:23.227 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:23.229 +08:00 [INF] Successfully validated the token. +2021-09-02 15:08:23.230 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:23.231 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:08:23.282 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:08:23.283 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.6247ms +2021-09-02 15:08:23.283 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:23.289 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:23.318 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:23.318 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:23.318 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 91.3926ms +2021-09-02 15:08:25.277 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/enabled application/json 32 +2021-09-02 15:08:25.277 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:25.279 +08:00 [INF] Successfully validated the token. +2021-09-02 15:08:25.280 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.EnabledAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:25.280 +08:00 [INF] Route matched with {action = "Enabled", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task EnabledAsync(CompanyName.ProjectName.IdentityServers.Clients.EnabledInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:08:25.323 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.EnabledAsync (CompanyName.ProjectName.HttpApi) in 42.7694ms +2021-09-02 15:08:25.323 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.EnabledAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:25.334 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:25.334 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:25.378 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:25.378 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:25.378 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/enabled application/json 32 - 204 - - 101.6409ms +2021-09-02 15:08:25.451 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:08:25.451 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:25.454 +08:00 [INF] Successfully validated the token. +2021-09-02 15:08:25.455 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:25.455 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:08:25.505 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:08:25.506 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.3394ms +2021-09-02 15:08:25.506 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:25.513 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:25.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:25.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:25.542 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 90.5028ms +2021-09-02 15:08:26.589 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:08:29.614 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/delete - - +2021-09-02 15:08:29.614 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:29.614 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/delete - - - 204 - - 0.4202ms +2021-09-02 15:08:29.616 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/delete application/json 45 +2021-09-02 15:08:29.616 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:29.618 +08:00 [INF] Successfully validated the token. +2021-09-02 15:08:29.620 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:29.622 +08:00 [INF] Route matched with {action = "Delete", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:08:29.763 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 141.6816ms +2021-09-02 15:08:29.763 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:29.806 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:29.806 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:29.851 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:29.851 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:29.852 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/delete application/json 45 - 204 - - 235.8330ms +2021-09-02 15:08:29.926 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:08:29.926 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:29.926 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4444ms +2021-09-02 15:08:29.928 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:08:29.928 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:08:29.931 +08:00 [INF] Successfully validated the token. +2021-09-02 15:08:29.932 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:29.932 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:08:29.981 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:08:29.982 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.5631ms +2021-09-02 15:08:29.982 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:08:29.987 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:30.016 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:30.016 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:08:30.016 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 87.9043ms +2021-09-02 15:08:56.608 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:09:02.034 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 15:09:26.627 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:09:56.690 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:10:26.777 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:10:35.344 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:10:56.857 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:11:02.499 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 15:11:26.936 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:11:56.380 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:11:56.384 +08:00 [INF] Executing endpoint '405 HTTP Method Not Supported' +2021-09-02 15:11:56.385 +08:00 [INF] Executed endpoint '405 HTTP Method Not Supported' +2021-09-02 15:11:56.385 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/IdentityServer/Client/page - - - 405 0 - 4.3032ms +2021-09-02 15:11:57.028 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:12:00.422 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 15:12:00.425 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 3.7603ms +2021-09-02 15:12:00.589 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 15:12:00.771 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 181.3176ms +2021-09-02 15:12:27.070 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:12:57.121 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:13:28.809 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:13:43.204 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:14:01.075 +08:00 [DBG] 697 recurring job(s) processed by scheduler. +2021-09-02 15:14:03.818 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:14:33.888 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:15:04.018 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:15:37.449 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:15:39.230 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:15:40.512 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:15:52.446 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:15:52.447 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:15:52.447 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 1.1116ms +2021-09-02 15:15:52.450 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:15:52.450 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:15:52.454 +08:00 [INF] Successfully validated the token. +2021-09-02 15:15:52.458 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:15:52.458 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:15:52.526 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:15:52.528 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 69.9608ms +2021-09-02 15:15:52.528 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:15:52.539 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:15:52.576 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:15:52.576 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:15:52.577 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 127.1831ms +2021-09-02 15:16:01.071 +08:00 [DBG] 795 recurring job(s) processed by scheduler. +2021-09-02 15:16:11.177 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:16:41.315 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:17:11.437 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:17:43.441 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:17:55.128 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:18:01.083 +08:00 [DBG] 246 recurring job(s) processed by scheduler. +2021-09-02 15:18:16.325 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:18:46.429 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:19:16.542 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:19:49.267 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:19:56.863 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:20:01.083 +08:00 [DBG] 170 recurring job(s) processed by scheduler. +2021-09-02 15:20:19.294 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:20:39.262 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:20:43.894 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:20:43.894 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:20:43.894 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4738ms +2021-09-02 15:20:43.896 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:20:43.897 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:20:43.899 +08:00 [INF] Successfully validated the token. +2021-09-02 15:20:43.901 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:43.901 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:20:43.941 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:20:43.942 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.4079ms +2021-09-02 15:20:43.942 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:43.947 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:43.980 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:43.980 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:43.980 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 84.1830ms +2021-09-02 15:20:44.017 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:20:44.017 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:20:44.018 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5043ms +2021-09-02 15:20:44.022 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:20:44.022 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:20:44.025 +08:00 [INF] Successfully validated the token. +2021-09-02 15:20:44.026 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:44.027 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:20:44.086 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:20:44.088 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 60.9659ms +2021-09-02 15:20:44.088 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:44.093 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:44.128 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:44.128 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:44.129 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 106.7547ms +2021-09-02 15:20:47.898 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:20:47.898 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:20:47.899 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:20:47.899 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:20:47.901 +08:00 [INF] Successfully validated the token. +2021-09-02 15:20:47.901 +08:00 [INF] Successfully validated the token. +2021-09-02 15:20:47.902 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:47.902 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:47.902 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:20:47.902 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:20:47.954 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:20:47.955 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.1745ms +2021-09-02 15:20:47.955 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:47.966 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:47.994 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:20:48.000 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 97.5064ms +2021-09-02 15:20:48.000 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:48.012 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:48.018 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:48.018 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:48.019 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 119.9757ms +2021-09-02 15:20:48.045 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:48.045 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:48.045 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 147.4655ms +2021-09-02 15:20:49.505 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:20:54.935 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:20:54.935 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:20:54.936 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.6095ms +2021-09-02 15:20:54.938 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:20:54.938 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:20:54.941 +08:00 [INF] Successfully validated the token. +2021-09-02 15:20:54.943 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:54.943 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:20:54.988 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:20:54.989 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 46.022ms +2021-09-02 15:20:54.989 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:54.995 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:55.032 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:55.032 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:55.032 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 94.7108ms +2021-09-02 15:20:55.131 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:20:55.132 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:20:55.132 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5829ms +2021-09-02 15:20:55.136 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:20:55.136 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:20:55.139 +08:00 [INF] Successfully validated the token. +2021-09-02 15:20:55.141 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:55.141 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:20:55.201 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:20:55.202 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 61.4482ms +2021-09-02 15:20:55.202 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:55.210 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:55.248 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:55.248 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:55.248 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 112.7450ms +2021-09-02 15:20:58.009 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:20:58.009 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:20:58.012 +08:00 [INF] Successfully validated the token. +2021-09-02 15:20:58.013 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:58.013 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:20:58.052 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:20:58.054 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.9477ms +2021-09-02 15:20:58.054 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:58.065 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:58.111 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:58.111 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:58.112 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 103.1858ms +2021-09-02 15:20:58.266 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:20:58.266 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:20:58.269 +08:00 [INF] Successfully validated the token. +2021-09-02 15:20:58.271 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:58.271 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:20:58.329 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:20:58.330 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 59.1177ms +2021-09-02 15:20:58.330 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:20:58.336 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:58.381 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:58.382 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:20:58.382 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 116.1447ms +2021-09-02 15:21:04.909 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:21:04.910 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:21:04.910 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4933ms +2021-09-02 15:21:04.911 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:21:04.911 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:21:04.914 +08:00 [INF] Successfully validated the token. +2021-09-02 15:21:04.915 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:21:04.915 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:21:04.951 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:21:04.952 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.0097ms +2021-09-02 15:21:04.952 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:21:04.956 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:04.998 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:04.998 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:04.999 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 87.6641ms +2021-09-02 15:21:05.017 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:21:05.017 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:21:05.018 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6429ms +2021-09-02 15:21:05.020 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:21:05.020 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:21:05.023 +08:00 [INF] Successfully validated the token. +2021-09-02 15:21:05.025 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:21:05.025 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:21:05.086 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:21:05.087 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 61.6312ms +2021-09-02 15:21:05.087 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:21:05.094 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:05.128 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:05.129 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:05.129 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 109.3899ms +2021-09-02 15:21:10.898 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 15:21:10.898 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:21:10.898 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.6484ms +2021-09-02 15:21:10.901 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 15:21:10.901 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:21:10.904 +08:00 [INF] Successfully validated the token. +2021-09-02 15:21:10.905 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:21:10.905 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:21:10.955 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:21:10.956 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.2683ms +2021-09-02 15:21:10.956 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:21:10.962 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:10.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:10.993 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:10.993 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 92.1666ms +2021-09-02 15:21:11.142 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:21:11.142 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:21:11.142 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5150ms +2021-09-02 15:21:11.145 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:21:11.145 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:21:11.149 +08:00 [INF] Successfully validated the token. +2021-09-02 15:21:11.151 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:21:11.151 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:21:11.212 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:21:11.214 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 62.6563ms +2021-09-02 15:21:11.214 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:21:11.220 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:11.265 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:11.265 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:11.265 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 120.5274ms +2021-09-02 15:21:14.006 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:21:14.006 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:21:14.010 +08:00 [INF] Successfully validated the token. +2021-09-02 15:21:14.012 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:21:14.012 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:21:14.070 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:21:14.071 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 58.632ms +2021-09-02 15:21:14.071 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:21:14.077 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:14.114 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:14.114 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:14.115 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 108.8645ms +2021-09-02 15:21:19.897 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:21:50.484 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:21:53.927 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:21:53.927 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:21:53.928 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4827ms +2021-09-02 15:21:53.929 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:21:53.930 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:21:53.932 +08:00 [INF] Successfully validated the token. +2021-09-02 15:21:53.935 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:21:53.935 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:21:53.994 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:21:53.996 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 60.4213ms +2021-09-02 15:21:53.996 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:21:54.003 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:54.038 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:54.038 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:21:54.039 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 109.0796ms +2021-09-02 15:22:01.077 +08:00 [DBG] 525 recurring job(s) processed by scheduler. +2021-09-02 15:22:15.914 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:22:15.914 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:22:15.914 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5008ms +2021-09-02 15:22:15.917 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:22:15.918 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:22:15.920 +08:00 [INF] Successfully validated the token. +2021-09-02 15:22:15.922 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:22:15.922 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:22:15.972 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:22:15.973 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.1325ms +2021-09-02 15:22:15.973 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:22:15.979 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:22:16.008 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:22:16.008 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:22:16.008 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 91.4549ms +2021-09-02 15:22:20.512 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:22:50.588 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:23:09.751 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:23:09.752 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:23:09.752 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4486ms +2021-09-02 15:23:09.753 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:23:09.754 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:23:09.756 +08:00 [INF] Successfully validated the token. +2021-09-02 15:23:09.757 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:23:09.757 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:23:09.817 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:23:09.818 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 60.8869ms +2021-09-02 15:23:09.819 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:23:09.826 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:23:09.871 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:23:09.871 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:23:09.872 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 118.2646ms +2021-09-02 15:23:20.648 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:23:44.129 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - +2021-09-02 15:23:44.130 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:23:44.130 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - - 204 - - 0.4078ms +2021-09-02 15:23:44.131 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/updateBasic application/json 687 +2021-09-02 15:23:44.132 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:23:44.134 +08:00 [INF] Successfully validated the token. +2021-09-02 15:23:44.135 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:23:44.137 +08:00 [INF] Route matched with {action = "UpdateBasicData", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateBasicDataAsync(CompanyName.ProjectName.IdentityServers.Clients.UpdataBasicDataInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:23:44.371 +08:00 [WRN] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "当前ClientId已存在", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 15:23:44.372 +08:00 [WRN] 当前ClientId已存在 +Volo.Abp.UserFriendlyException: 当前ClientId已存在 + at CompanyName.ProjectName.IdentityServer.IdenityServerClientManager.UpdateBasicDataAsync(String clientId, String clientName, String description, String clientUri, String logoUri, Boolean enabled, String protocolType, Boolean requireClientSecret, Boolean requireConsent, Boolean allowRememberConsent, Boolean alwaysIncludeUserClaimsInIdToken, Boolean requirePkce, Boolean allowPlainTextPkce, Boolean requireRequestObject, Boolean allowAccessTokensViaBrowser, String frontChannelLogoutUri, Boolean frontChannelLogoutSessionRequired, String backChannelLogoutUri, Boolean backChannelLogoutSessionRequired, Boolean allowOfflineAccess, Int32 identityTokenLifetime, String allowedIdentityTokenSigningAlgorithms, Int32 accessTokenLifetime, Int32 authorizationCodeLifetime, Nullable`1 consentLifetime, Int32 absoluteRefreshTokenLifetime, Int32 refreshTokenUsage, Boolean updateAccessTokenClaimsOnRefresh, Int32 refreshTokenExpiration, Int32 accessTokenType, Boolean enableLocalLogin, Boolean includeJwtId, Boolean alwaysSendClientClaims, String clientClaimsPrefix, String pairWiseSubjectSalt, Nullable`1 userSsoLifetime, String userCodeType, Int32 deviceCodeLifetime, Int32 slidingRefreshTokenLifetime, String secret, String secretType) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Domain\IdentityServer\IdenityServerClientManager.cs:line 105 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method5941(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 15:23:44.372 +08:00 [WRN] Code: +2021-09-02 15:23:44.372 +08:00 [WRN] Details: +2021-09-02 15:23:44.372 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 15:23:44.372 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi) in 234.4901ms +2021-09-02 15:23:44.372 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:23:44.406 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:23:44.406 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:23:44.407 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/updateBasic application/json 687 - 500 - application/json;+charset=utf-8 275.5191ms +2021-09-02 15:23:44.507 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:23:44.507 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:23:44.507 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4295ms +2021-09-02 15:23:44.508 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:23:44.509 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:23:44.511 +08:00 [INF] Successfully validated the token. +2021-09-02 15:23:44.512 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:23:44.512 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:23:44.564 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:23:44.565 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.092ms +2021-09-02 15:23:44.565 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:23:44.571 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:23:44.599 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:23:44.599 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:23:44.599 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 90.7934ms +2021-09-02 15:23:51.569 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:24:01.062 +08:00 [DBG] 622 recurring job(s) processed by scheduler. +2021-09-02 15:24:23.242 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:24:53.291 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:25:23.310 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:25:39.288 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:25:53.371 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:26:01.524 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 15:26:23.491 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:26:53.612 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:27:23.719 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:27:53.737 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:28:27.012 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:28:27.468 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:28:51.470 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:29:01.064 +08:00 [DBG] 362 recurring job(s) processed by scheduler. +2021-09-02 15:29:02.863 +08:00 [DBG] Server szqh003802a:34448:9a0de7c2 heartbeat successfully sent +2021-09-02 15:29:14.176 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-02 15:29:19.800 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-02 15:29:19.917 +08:00 [INF] Loaded ABP modules: +2021-09-02 15:29:19.917 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-02 15:29:19.917 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-02 15:29:19.917 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-02 15:29:19.917 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-02 15:29:19.917 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-02 15:29:19.917 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-02 15:29:19.917 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-02 15:29:19.917 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-02 15:29:19.917 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-02 15:29:19.917 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-02 15:29:19.917 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-02 15:29:19.917 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-02 15:29:19.917 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-02 15:29:19.917 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-02 15:29:19.917 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-02 15:29:19.918 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-02 15:29:19.918 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-02 15:29:19.918 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-02 15:29:19.918 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-02 15:29:19.918 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-02 15:29:19.918 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-02 15:29:19.918 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-02 15:29:19.918 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-02 15:29:19.918 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-02 15:29:19.918 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-02 15:29:19.918 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-02 15:29:19.918 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-02 15:29:20.002 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-02 15:29:20.005 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-02 15:29:20.144 +08:00 [INF] DB tables already exist. Exit install +2021-09-02 15:29:20.166 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-02 15:29:20.167 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-02 15:29:20.167 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-02 15:29:20.167 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-02 15:29:20.187 +08:00 [DBG] Execution loop BackgroundServerProcess:6f0b75a7 has started in 5.3368 ms +2021-09-02 15:29:20.310 +08:00 [INF] Server szqh003802a:34120:1939bd28 successfully announced in 109.6248 ms +2021-09-02 15:29:20.319 +08:00 [INF] Server szqh003802a:34120:1939bd28 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-02 15:29:20.319 +08:00 [DBG] Execution loop ServerHeartbeatProcess:4663d690 has started in 9.2165 ms +2021-09-02 15:29:20.322 +08:00 [DBG] Execution loop ServerWatchdog:79b5ad31 has started in 2.9644 ms +2021-09-02 15:29:20.325 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:3ca7d69e has started in 5.187 ms +2021-09-02 15:29:20.334 +08:00 [DBG] Execution loop ExpirationManager:00678c96 has started in 11.2741 ms +2021-09-02 15:29:20.336 +08:00 [DBG] Execution loop CountersAggregator:fbcd6454 has started in 3.5526 ms +2021-09-02 15:29:20.338 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:29:20.339 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 15:29:20.339 +08:00 [DBG] Execution loop Worker:4e37cc22 has started in 5.2693 ms +2021-09-02 15:29:20.341 +08:00 [DBG] Execution loop Worker:b5d1da7c has started in 6.8963 ms +2021-09-02 15:29:20.341 +08:00 [DBG] Execution loop Worker:90a27969 has started in 6.8975 ms +2021-09-02 15:29:20.343 +08:00 [DBG] Execution loop Worker:5c362676 has started in 9.2119 ms +2021-09-02 15:29:20.346 +08:00 [DBG] Execution loop Worker:fefdfef8 has started in 11.6791 ms +2021-09-02 15:29:20.348 +08:00 [DBG] Execution loop Worker:66181494 has started in 14.0796 ms +2021-09-02 15:29:20.351 +08:00 [DBG] Execution loop Worker:e3b4db71 has started in 16.7873 ms +2021-09-02 15:29:20.352 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 15:29:20.354 +08:00 [DBG] Execution loop Worker:f1be9d29 has started in 20.4176 ms +2021-09-02 15:29:20.354 +08:00 [DBG] Execution loop Worker:0237d47a has started in 20.4306 ms +2021-09-02 15:29:20.358 +08:00 [DBG] Execution loop Worker:847a98c3 has started in 23.6941 ms +2021-09-02 15:29:20.362 +08:00 [DBG] Execution loop Worker:62360d2c has started in 27.7457 ms +2021-09-02 15:29:20.370 +08:00 [DBG] Execution loop Worker:80327508 has started in 36.3211 ms +2021-09-02 15:29:20.375 +08:00 [DBG] Execution loop Worker:c7dfc22a has started in 40.2912 ms +2021-09-02 15:29:20.377 +08:00 [DBG] Execution loop Worker:7dd34989 has started in 42.7844 ms +2021-09-02 15:29:20.385 +08:00 [DBG] Execution loop Worker:45294462 has started in 51.2715 ms +2021-09-02 15:29:20.392 +08:00 [DBG] Execution loop Worker:9fe0ec37 has started in 57.6905 ms +2021-09-02 15:29:20.398 +08:00 [DBG] Execution loop Worker:eab07844 has started in 64.4791 ms +2021-09-02 15:29:20.403 +08:00 [DBG] removed records count=0 +2021-09-02 15:29:20.403 +08:00 [DBG] Execution loop Worker:099ffafa has started in 68.9295 ms +2021-09-02 15:29:20.406 +08:00 [DBG] Execution loop Worker:89ddd146 has started in 72.0365 ms +2021-09-02 15:29:20.408 +08:00 [DBG] Execution loop Worker:7f739d71 has started in 73.8962 ms +2021-09-02 15:29:20.409 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 15:29:20.412 +08:00 [INF] Server szqh003802a:34120:1939bd28 all the dispatchers started +2021-09-02 15:29:20.412 +08:00 [DBG] Execution loop DelayedJobScheduler:e2875c0c has started in 6.3245 ms +2021-09-02 15:29:20.415 +08:00 [DBG] Execution loop RecurringJobScheduler:08825ab5 has started in 6.6172 ms +2021-09-02 15:29:20.444 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 15:29:20.467 +08:00 [DBG] removed records count=0 +2021-09-02 15:29:20.514 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 15:29:20.515 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 15:29:20.527 +08:00 [DBG] removed records count=0 +2021-09-02 15:29:20.533 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 15:29:20.535 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 15:29:20.551 +08:00 [DBG] removed records count=0 +2021-09-02 15:29:20.552 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 15:29:20.553 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 15:29:20.565 +08:00 [DBG] removed records count=0 +2021-09-02 15:29:20.972 +08:00 [INF] Initialized all ABP modules. +2021-09-02 15:29:21.042 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-02 15:29:21.042 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-02 15:29:21.042 +08:00 [INF] Hosting environment: Development +2021-09-02 15:29:21.042 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-02 15:29:21.667 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-02 15:29:24.056 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 15:29:24.120 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-02 15:29:24.153 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-02 15:29:24.160 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 35.7747ms +2021-09-02 15:29:24.160 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 15:29:24.180 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 2513.6418ms +2021-09-02 15:29:24.196 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 15:29:24.246 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 50.0285ms +2021-09-02 15:29:24.405 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 15:29:24.780 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 374.8531ms +2021-09-02 15:29:50.371 +08:00 [DBG] Server szqh003802a:34120:1939bd28 heartbeat successfully sent +2021-09-02 15:30:20.419 +08:00 [DBG] Server szqh003802a:34120:1939bd28 heartbeat successfully sent +2021-09-02 15:30:28.979 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - +2021-09-02 15:30:28.987 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:30:28.996 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - - 204 - - 17.3699ms +2021-09-02 15:30:29.000 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/updateBasic application/json 687 +2021-09-02 15:30:29.004 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:30:29.079 +08:00 [INF] Successfully validated the token. +2021-09-02 15:30:29.092 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:30:29.110 +08:00 [INF] Route matched with {action = "UpdateBasicData", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateBasicDataAsync(CompanyName.ProjectName.IdentityServers.Clients.UpdataBasicDataInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:30:30.400 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi) in 1290.1819ms +2021-09-02 15:30:30.401 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:30:31.343 +08:00 [ERR] Failed executing DbCommand (801ms) [Parameters=[@p48='?' (DbType = Guid), @p0='?' (DbType = Int32), @p1='?' (DbType = Int32), @p2='?' (DbType = Int32), @p3='?' (DbType = Boolean), @p4='?' (DbType = Boolean), @p5='?' (DbType = Boolean), @p6='?' (DbType = Boolean), @p7='?' (Size = 100), @p8='?' (DbType = Boolean), @p9='?' (DbType = Boolean), @p10='?' (DbType = Int32), @p11='?' (DbType = Boolean), @p12='?' (Size = 2000), @p13='?' (Size = 200), @p14='?' (Size = 200), @p15='?' (Size = 200), @p16='?' (Size = 2000), @p17='?' (Size = 40), @p49='?' (Size = 40), @p18='?' (DbType = Int32), @p19='?' (DbType = DateTime), @p20='?' (DbType = Guid), @p21='?' (DbType = Guid), @p22='?' (DbType = DateTime), @p23='?' (Size = 1000), @p24='?' (DbType = Int32), @p25='?' (DbType = Boolean), @p26='?' (DbType = Boolean), @p27='?' (Size = 4000), @p28='?' (DbType = Boolean), @p29='?' (Size = 2000), @p30='?' (DbType = Int32), @p31='?' (DbType = Boolean), @p32='?' (DbType = Boolean), @p33='?' (DbType = DateTime), @p34='?' (DbType = Guid), @p35='?' (Size = 2000), @p36='?' (Size = 200), @p37='?' (Size = 200), @p38='?' (DbType = Int32), @p39='?' (DbType = Int32), @p40='?' (DbType = Boolean), @p41='?' (DbType = Boolean), @p42='?' (DbType = Boolean), @p43='?' (DbType = Boolean), @p44='?' (DbType = Int32), @p45='?' (DbType = Boolean), @p46='?' (Size = 100), @p47='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30'] +UPDATE `IdentityServerClients` SET `AbsoluteRefreshTokenLifetime` = @p0, `AccessTokenLifetime` = @p1, `AccessTokenType` = @p2, `AllowAccessTokensViaBrowser` = @p3, `AllowOfflineAccess` = @p4, `AllowPlainTextPkce` = @p5, `AllowRememberConsent` = @p6, `AllowedIdentityTokenSigningAlgorithms` = @p7, `AlwaysIncludeUserClaimsInIdToken` = @p8, `AlwaysSendClientClaims` = @p9, `AuthorizationCodeLifetime` = @p10, `BackChannelLogoutSessionRequired` = @p11, `BackChannelLogoutUri` = @p12, `ClientClaimsPrefix` = @p13, `ClientId` = @p14, `ClientName` = @p15, `ClientUri` = @p16, `ConcurrencyStamp` = @p17, `ConsentLifetime` = @p18, `CreationTime` = @p19, `CreatorId` = @p20, `DeleterId` = @p21, `DeletionTime` = @p22, `Description` = @p23, `DeviceCodeLifetime` = @p24, `EnableLocalLogin` = @p25, `Enabled` = @p26, `ExtraProperties` = @p27, `FrontChannelLogoutSessionRequired` = @p28, `FrontChannelLogoutUri` = @p29, `IdentityTokenLifetime` = @p30, `IncludeJwtId` = @p31, `IsDeleted` = @p32, `LastModificationTime` = @p33, `LastModifierId` = @p34, `LogoUri` = @p35, `PairWiseSubjectSalt` = @p36, `ProtocolType` = @p37, `RefreshTokenExpiration` = @p38, `RefreshTokenUsage` = @p39, `RequireClientSecret` = @p40, `RequireConsent` = @p41, `RequirePkce` = @p42, `RequireRequestObject` = @p43, `SlidingRefreshTokenLifetime` = @p44, `UpdateAccessTokenClaimsOnRefresh` = @p45, `UserCodeType` = @p46, `UserSsoLifetime` = @p47 +WHERE `Id` = @p48 AND `ConcurrencyStamp` = @p49; +SELECT ROW_COUNT(); +2021-09-02 15:30:31.521 +08:00 [ERR] An exception occurred in the database while saving changes for context type 'Volo.Abp.IdentityServer.EntityFrameworkCore.IdentityServerDbContext'. +Microsoft.EntityFrameworkCore.DbUpdateException: An error occurred while updating the entries. See the inner exception for details. + ---> MySqlConnector.MySqlException (0x80004005): Column 'ProtocolType' cannot be null + at MySqlConnector.Core.ServerSession.ReceiveReplyAsyncAwaited(ValueTask`1 task) in /_/src/MySqlConnector/Core/ServerSession.cs:line 875 + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 135 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) + --- End of inner exception stack trace --- + at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(IList`1 entriesToSave, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(DbContext _, Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) +Microsoft.EntityFrameworkCore.DbUpdateException: An error occurred while updating the entries. See the inner exception for details. + ---> MySqlConnector.MySqlException (0x80004005): Column 'ProtocolType' cannot be null + at MySqlConnector.Core.ServerSession.ReceiveReplyAsyncAwaited(ValueTask`1 task) in /_/src/MySqlConnector/Core/ServerSession.cs:line 875 + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 135 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) + --- End of inner exception stack trace --- + at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(IList`1 entriesToSave, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(DbContext _, Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Volo.Abp.EntityFrameworkCore.AbpDbContext`1.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Volo.Abp.Uow.UnitOfWork.SaveChangesAsync(CancellationToken cancellationToken) + at Volo.Abp.Uow.UnitOfWork.CompleteAsync(CancellationToken cancellationToken) + at Volo.Abp.AspNetCore.Uow.AbpUnitOfWorkMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2021-09-02 15:30:31.535 +08:00 [ERR] An error occurred while updating the entries. See the inner exception for details. +Microsoft.EntityFrameworkCore.DbUpdateException: An error occurred while updating the entries. See the inner exception for details. + ---> MySqlConnector.MySqlException (0x80004005): Column 'ProtocolType' cannot be null + at MySqlConnector.Core.ServerSession.ReceiveReplyAsyncAwaited(ValueTask`1 task) in /_/src/MySqlConnector/Core/ServerSession.cs:line 875 + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 135 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) + --- End of inner exception stack trace --- + at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(IList`1 entriesToSave, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(DbContext _, Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Volo.Abp.EntityFrameworkCore.AbpDbContext`1.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Volo.Abp.Uow.UnitOfWork.SaveChangesAsync(CancellationToken cancellationToken) + at Volo.Abp.Uow.UnitOfWork.CompleteAsync(CancellationToken cancellationToken) + at Volo.Abp.AspNetCore.Uow.AbpUnitOfWorkMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Volo.Abp.AspNetCore.ExceptionHandling.AbpExceptionHandlingMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2021-09-02 15:30:31.860 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:30:31.860 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:30:31.864 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/updateBasic application/json 687 - 500 - - 2863.8793ms +2021-09-02 15:30:31.971 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:30:31.972 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:30:31.972 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 1.2390ms +2021-09-02 15:30:31.974 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:30:31.974 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:30:31.981 +08:00 [INF] Successfully validated the token. +2021-09-02 15:30:31.983 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:30:31.986 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:30:32.658 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:30:32.698 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 712.7093ms +2021-09-02 15:30:32.699 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:30:32.711 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:30:32.755 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:30:32.755 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:30:32.756 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 781.8759ms +2021-09-02 15:30:42.073 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - +2021-09-02 15:30:42.073 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:30:42.073 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - - 204 - - 0.5436ms +2021-09-02 15:30:42.075 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/updateBasic application/json 687 +2021-09-02 15:30:42.075 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:30:42.079 +08:00 [INF] Successfully validated the token. +2021-09-02 15:30:42.081 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:30:42.082 +08:00 [INF] Route matched with {action = "UpdateBasicData", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateBasicDataAsync(CompanyName.ProjectName.IdentityServers.Clients.UpdataBasicDataInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:30:57.472 +08:00 [DBG] Server szqh003802a:34120:1939bd28 heartbeat successfully sent +2021-09-02 15:31:27.878 +08:00 [DBG] Server szqh003802a:34120:1939bd28 heartbeat successfully sent +2021-09-02 15:31:36.704 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi) in 54629.9707ms +2021-09-02 15:31:36.704 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:31:37.083 +08:00 [DBG] 814 recurring job(s) processed by scheduler. +2021-09-02 15:31:37.192 +08:00 [ERR] Failed executing DbCommand (478ms) [Parameters=[@p48='?' (DbType = Guid), @p0='?' (DbType = Int32), @p1='?' (DbType = Int32), @p2='?' (DbType = Int32), @p3='?' (DbType = Boolean), @p4='?' (DbType = Boolean), @p5='?' (DbType = Boolean), @p6='?' (DbType = Boolean), @p7='?' (Size = 100), @p8='?' (DbType = Boolean), @p9='?' (DbType = Boolean), @p10='?' (DbType = Int32), @p11='?' (DbType = Boolean), @p12='?' (Size = 2000), @p13='?' (Size = 200), @p14='?' (Size = 200), @p15='?' (Size = 200), @p16='?' (Size = 2000), @p17='?' (Size = 40), @p49='?' (Size = 40), @p18='?' (DbType = Int32), @p19='?' (DbType = DateTime), @p20='?' (DbType = Guid), @p21='?' (DbType = Guid), @p22='?' (DbType = DateTime), @p23='?' (Size = 1000), @p24='?' (DbType = Int32), @p25='?' (DbType = Boolean), @p26='?' (DbType = Boolean), @p27='?' (Size = 4000), @p28='?' (DbType = Boolean), @p29='?' (Size = 2000), @p30='?' (DbType = Int32), @p31='?' (DbType = Boolean), @p32='?' (DbType = Boolean), @p33='?' (DbType = DateTime), @p34='?' (DbType = Guid), @p35='?' (Size = 2000), @p36='?' (Size = 200), @p37='?' (Size = 200), @p38='?' (DbType = Int32), @p39='?' (DbType = Int32), @p40='?' (DbType = Boolean), @p41='?' (DbType = Boolean), @p42='?' (DbType = Boolean), @p43='?' (DbType = Boolean), @p44='?' (DbType = Int32), @p45='?' (DbType = Boolean), @p46='?' (Size = 100), @p47='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30'] +UPDATE `IdentityServerClients` SET `AbsoluteRefreshTokenLifetime` = @p0, `AccessTokenLifetime` = @p1, `AccessTokenType` = @p2, `AllowAccessTokensViaBrowser` = @p3, `AllowOfflineAccess` = @p4, `AllowPlainTextPkce` = @p5, `AllowRememberConsent` = @p6, `AllowedIdentityTokenSigningAlgorithms` = @p7, `AlwaysIncludeUserClaimsInIdToken` = @p8, `AlwaysSendClientClaims` = @p9, `AuthorizationCodeLifetime` = @p10, `BackChannelLogoutSessionRequired` = @p11, `BackChannelLogoutUri` = @p12, `ClientClaimsPrefix` = @p13, `ClientId` = @p14, `ClientName` = @p15, `ClientUri` = @p16, `ConcurrencyStamp` = @p17, `ConsentLifetime` = @p18, `CreationTime` = @p19, `CreatorId` = @p20, `DeleterId` = @p21, `DeletionTime` = @p22, `Description` = @p23, `DeviceCodeLifetime` = @p24, `EnableLocalLogin` = @p25, `Enabled` = @p26, `ExtraProperties` = @p27, `FrontChannelLogoutSessionRequired` = @p28, `FrontChannelLogoutUri` = @p29, `IdentityTokenLifetime` = @p30, `IncludeJwtId` = @p31, `IsDeleted` = @p32, `LastModificationTime` = @p33, `LastModifierId` = @p34, `LogoUri` = @p35, `PairWiseSubjectSalt` = @p36, `ProtocolType` = @p37, `RefreshTokenExpiration` = @p38, `RefreshTokenUsage` = @p39, `RequireClientSecret` = @p40, `RequireConsent` = @p41, `RequirePkce` = @p42, `RequireRequestObject` = @p43, `SlidingRefreshTokenLifetime` = @p44, `UpdateAccessTokenClaimsOnRefresh` = @p45, `UserCodeType` = @p46, `UserSsoLifetime` = @p47 +WHERE `Id` = @p48 AND `ConcurrencyStamp` = @p49; +SELECT ROW_COUNT(); +2021-09-02 15:31:37.219 +08:00 [ERR] An exception occurred in the database while saving changes for context type 'Volo.Abp.IdentityServer.EntityFrameworkCore.IdentityServerDbContext'. +Microsoft.EntityFrameworkCore.DbUpdateException: An error occurred while updating the entries. See the inner exception for details. + ---> MySqlConnector.MySqlException (0x80004005): Column 'ProtocolType' cannot be null + at MySqlConnector.Core.ServerSession.ReceiveReplyAsyncAwaited(ValueTask`1 task) in /_/src/MySqlConnector/Core/ServerSession.cs:line 875 + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 135 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) + --- End of inner exception stack trace --- + at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(IList`1 entriesToSave, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(DbContext _, Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) +Microsoft.EntityFrameworkCore.DbUpdateException: An error occurred while updating the entries. See the inner exception for details. + ---> MySqlConnector.MySqlException (0x80004005): Column 'ProtocolType' cannot be null + at MySqlConnector.Core.ServerSession.ReceiveReplyAsyncAwaited(ValueTask`1 task) in /_/src/MySqlConnector/Core/ServerSession.cs:line 875 + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 135 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) + --- End of inner exception stack trace --- + at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(IList`1 entriesToSave, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(DbContext _, Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Volo.Abp.EntityFrameworkCore.AbpDbContext`1.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Volo.Abp.Uow.UnitOfWork.SaveChangesAsync(CancellationToken cancellationToken) + at Volo.Abp.Uow.UnitOfWork.CompleteAsync(CancellationToken cancellationToken) + at Volo.Abp.AspNetCore.Uow.AbpUnitOfWorkMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult() +2021-09-02 15:31:37.224 +08:00 [ERR] An error occurred while updating the entries. See the inner exception for details. +Microsoft.EntityFrameworkCore.DbUpdateException: An error occurred while updating the entries. See the inner exception for details. + ---> MySqlConnector.MySqlException (0x80004005): Column 'ProtocolType' cannot be null + at MySqlConnector.Core.ServerSession.ReceiveReplyAsyncAwaited(ValueTask`1 task) in /_/src/MySqlConnector/Core/ServerSession.cs:line 875 + at MySqlConnector.Core.ResultSet.ReadResultSetHeaderAsync(IOBehavior ioBehavior) in /_/src/MySqlConnector/Core/ResultSet.cs:line 50 + at MySqlConnector.MySqlDataReader.ActivateResultSet(CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 135 + at MySqlConnector.MySqlDataReader.CreateAsync(CommandListPosition commandListPosition, ICommandPayloadCreator payloadCreator, IDictionary`2 cachedProcedures, IMySqlCommand command, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlDataReader.cs:line 444 + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 60 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) + --- End of inner exception stack trace --- + at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.ExecuteAsync(IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.ExecuteAsync(IEnumerable`1 commandBatches, IRelationalConnection connection, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(IList`1 entriesToSave, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChangesAsync(DbContext _, Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.DbContext.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Volo.Abp.EntityFrameworkCore.AbpDbContext`1.SaveChangesAsync(Boolean acceptAllChangesOnSuccess, CancellationToken cancellationToken) + at Volo.Abp.Uow.UnitOfWork.SaveChangesAsync(CancellationToken cancellationToken) + at Volo.Abp.Uow.UnitOfWork.CompleteAsync(CancellationToken cancellationToken) + at Volo.Abp.AspNetCore.Uow.AbpUnitOfWorkMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) + at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext() +--- End of stack trace from previous location --- + at Volo.Abp.AspNetCore.ExceptionHandling.AbpExceptionHandlingMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) +2021-09-02 15:31:37.264 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:31:37.265 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:31:37.265 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/updateBasic application/json 687 - 500 - - 55198.2861ms +2021-09-02 15:31:37.376 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:31:37.376 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:31:37.376 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4860ms +2021-09-02 15:31:37.378 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:31:37.378 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:31:37.381 +08:00 [INF] Successfully validated the token. +2021-09-02 15:31:37.382 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:31:37.382 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:31:37.441 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:31:37.442 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 60.1277ms +2021-09-02 15:31:37.443 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:31:37.448 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:31:37.482 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:31:37.482 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:31:37.482 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 104.2764ms +2021-09-02 15:31:57.895 +08:00 [DBG] Server szqh003802a:34120:1939bd28 heartbeat successfully sent +2021-09-02 15:32:24.147 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-02 15:32:28.794 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-02 15:32:28.909 +08:00 [INF] Loaded ABP modules: +2021-09-02 15:32:28.909 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-02 15:32:28.909 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-02 15:32:28.909 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-02 15:32:28.909 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-02 15:32:28.909 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-02 15:32:28.909 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-02 15:32:28.909 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-02 15:32:28.909 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-02 15:32:28.909 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-02 15:32:28.909 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-02 15:32:28.909 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-02 15:32:28.909 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-02 15:32:28.909 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-02 15:32:28.909 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-02 15:32:28.909 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-02 15:32:28.909 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-02 15:32:28.909 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-02 15:32:28.910 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-02 15:32:28.910 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-02 15:32:28.910 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-02 15:32:28.910 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-02 15:32:28.910 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-02 15:32:28.910 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-02 15:32:28.910 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-02 15:32:28.910 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-02 15:32:28.910 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-02 15:32:28.910 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-02 15:32:28.910 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-02 15:32:28.910 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-02 15:32:28.993 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-02 15:32:28.996 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-02 15:32:29.136 +08:00 [INF] DB tables already exist. Exit install +2021-09-02 15:32:29.158 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-02 15:32:29.159 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-02 15:32:29.159 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-02 15:32:29.159 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-02 15:32:29.178 +08:00 [DBG] Execution loop BackgroundServerProcess:7dd9a545 has started in 5.8306 ms +2021-09-02 15:32:29.295 +08:00 [INF] Server szqh003802a:10924:a4126a7e successfully announced in 104.6676 ms +2021-09-02 15:32:29.298 +08:00 [INF] Server szqh003802a:10924:a4126a7e is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-02 15:32:29.299 +08:00 [DBG] Execution loop ServerHeartbeatProcess:c4ef38ed has started in 3.3185 ms +2021-09-02 15:32:29.338 +08:00 [DBG] Execution loop ServerWatchdog:34035291 has started in 39.1725 ms +2021-09-02 15:32:29.338 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:686fe72c has started in 38.1621 ms +2021-09-02 15:32:29.340 +08:00 [DBG] Execution loop ExpirationManager:7f19256d has started in 2.4622 ms +2021-09-02 15:32:29.342 +08:00 [DBG] Execution loop CountersAggregator:995c7c1b has started in 3.5186 ms +2021-09-02 15:32:29.344 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:32:29.344 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 15:32:29.346 +08:00 [DBG] Execution loop Worker:9bfa6945 has started in 5.1905 ms +2021-09-02 15:32:29.347 +08:00 [DBG] Execution loop Worker:cb2cffbf has started in 6.368 ms +2021-09-02 15:32:29.348 +08:00 [DBG] Execution loop Worker:d84203a0 has started in 7.4715 ms +2021-09-02 15:32:29.349 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 15:32:29.351 +08:00 [DBG] Execution loop Worker:98ba141c has started in 10.6021 ms +2021-09-02 15:32:29.353 +08:00 [DBG] Execution loop Worker:e9baff1e has started in 12.8477 ms +2021-09-02 15:32:29.353 +08:00 [DBG] Execution loop Worker:8c296bd4 has started in 12.8477 ms +2021-09-02 15:32:29.356 +08:00 [DBG] Execution loop Worker:abd6eb41 has started in 15.4354 ms +2021-09-02 15:32:29.359 +08:00 [DBG] Execution loop Worker:6a8e1f91 has started in 18.0801 ms +2021-09-02 15:32:29.363 +08:00 [DBG] Execution loop Worker:6fd584c1 has started in 22.475 ms +2021-09-02 15:32:29.368 +08:00 [DBG] Execution loop Worker:046ce13d has started in 27.0716 ms +2021-09-02 15:32:29.368 +08:00 [DBG] Execution loop Worker:48c3e621 has started in 27.1062 ms +2021-09-02 15:32:29.373 +08:00 [DBG] Execution loop Worker:1d8e8bdd has started in 31.8537 ms +2021-09-02 15:32:29.376 +08:00 [DBG] Execution loop Worker:5ed8fde6 has started in 35.597 ms +2021-09-02 15:32:29.381 +08:00 [DBG] Execution loop Worker:efe85706 has started in 40.7117 ms +2021-09-02 15:32:29.392 +08:00 [DBG] Execution loop Worker:488850ac has started in 51.5207 ms +2021-09-02 15:32:29.396 +08:00 [DBG] Execution loop Worker:1f6b0ee0 has started in 55.36 ms +2021-09-02 15:32:29.410 +08:00 [DBG] Execution loop Worker:26aa87b2 has started in 69.1088 ms +2021-09-02 15:32:29.414 +08:00 [DBG] removed records count=0 +2021-09-02 15:32:29.414 +08:00 [DBG] Execution loop Worker:a73e8404 has started in 73.1915 ms +2021-09-02 15:32:29.417 +08:00 [DBG] Execution loop Worker:7ec63e1e has started in 76.1034 ms +2021-09-02 15:32:29.420 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 15:32:29.421 +08:00 [DBG] Execution loop Worker:f6315c06 has started in 80.4601 ms +2021-09-02 15:32:29.424 +08:00 [DBG] Execution loop DelayedJobScheduler:e47b8616 has started in 7.0703 ms +2021-09-02 15:32:29.425 +08:00 [INF] Server szqh003802a:10924:a4126a7e all the dispatchers started +2021-09-02 15:32:29.430 +08:00 [DBG] Execution loop RecurringJobScheduler:35426d8c has started in 9.252 ms +2021-09-02 15:32:29.444 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 15:32:29.471 +08:00 [DBG] removed records count=0 +2021-09-02 15:32:29.498 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 15:32:29.500 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 15:32:29.525 +08:00 [DBG] removed records count=0 +2021-09-02 15:32:29.526 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 15:32:29.527 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 15:32:29.541 +08:00 [DBG] removed records count=0 +2021-09-02 15:32:29.554 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 15:32:29.556 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 15:32:29.567 +08:00 [DBG] removed records count=0 +2021-09-02 15:32:30.142 +08:00 [INF] Initialized all ABP modules. +2021-09-02 15:32:30.211 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-02 15:32:30.212 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-02 15:32:30.212 +08:00 [INF] Hosting environment: Development +2021-09-02 15:32:30.212 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-02 15:32:30.583 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-02 15:32:32.948 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 15:32:33.043 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-02 15:32:33.098 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-02 15:32:33.110 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 62.7747ms +2021-09-02 15:32:33.111 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 15:32:33.142 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 2558.4836ms +2021-09-02 15:32:33.163 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 15:32:33.252 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 89.3059ms +2021-09-02 15:32:33.451 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 15:32:34.001 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 549.8597ms +2021-09-02 15:32:38.260 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - +2021-09-02 15:32:38.268 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:32:38.276 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - - 204 - - 16.6328ms +2021-09-02 15:32:38.279 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/updateBasic application/json 687 +2021-09-02 15:32:38.282 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:32:38.359 +08:00 [INF] Successfully validated the token. +2021-09-02 15:32:38.369 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:32:38.388 +08:00 [INF] Route matched with {action = "UpdateBasicData", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateBasicDataAsync(CompanyName.ProjectName.IdentityServers.Clients.UpdataBasicDataInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:32:42.498 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi) in 4110.0176ms +2021-09-02 15:32:42.498 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:32:42.660 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:42.660 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:42.914 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:42.914 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:42.919 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/updateBasic application/json 687 - 204 - - 4640.7914ms +2021-09-02 15:32:43.057 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:32:43.058 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:32:43.058 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 1.3570ms +2021-09-02 15:32:43.061 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:32:43.061 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:32:43.064 +08:00 [INF] Successfully validated the token. +2021-09-02 15:32:43.066 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:32:43.071 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:32:43.738 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:32:43.777 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 705.6952ms +2021-09-02 15:32:43.777 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:32:43.786 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:43.826 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:43.826 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:43.826 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 765.6238ms +2021-09-02 15:32:56.653 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - +2021-09-02 15:32:56.654 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:32:56.654 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - - 204 - - 0.6545ms +2021-09-02 15:32:56.656 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/updateBasic application/json 733 +2021-09-02 15:32:56.657 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:32:56.662 +08:00 [INF] Successfully validated the token. +2021-09-02 15:32:56.663 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:32:56.664 +08:00 [INF] Route matched with {action = "UpdateBasicData", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateBasicDataAsync(CompanyName.ProjectName.IdentityServers.Clients.UpdataBasicDataInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:32:58.417 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi) in 1752.973ms +2021-09-02 15:32:58.417 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:32:58.452 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:58.452 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:58.496 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:58.496 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:58.496 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/updateBasic application/json 733 - 204 - - 1840.1769ms +2021-09-02 15:32:58.622 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:32:58.622 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:32:58.622 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.5036ms +2021-09-02 15:32:58.625 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:32:58.626 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:32:58.631 +08:00 [INF] Successfully validated the token. +2021-09-02 15:32:58.632 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:32:58.633 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:32:58.703 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:32:58.704 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 71.6306ms +2021-09-02 15:32:58.704 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:32:58.712 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:58.748 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:58.748 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:32:58.749 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 123.5634ms +2021-09-02 15:32:59.610 +08:00 [DBG] Server szqh003802a:10924:a4126a7e heartbeat successfully sent +2021-09-02 15:33:00.356 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:33:01.072 +08:00 [DBG] 26 recurring job(s) processed by scheduler. +2021-09-02 15:33:20.724 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - +2021-09-02 15:33:20.724 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:33:20.724 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - - 204 - - 0.4513ms +2021-09-02 15:33:20.726 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/updateBasic application/json 771 +2021-09-02 15:33:20.727 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:33:20.729 +08:00 [INF] Successfully validated the token. +2021-09-02 15:33:20.730 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:33:20.730 +08:00 [INF] Route matched with {action = "UpdateBasicData", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateBasicDataAsync(CompanyName.ProjectName.IdentityServers.Clients.UpdataBasicDataInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:34:28.843 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-02 15:34:33.470 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-02 15:34:33.586 +08:00 [INF] Loaded ABP modules: +2021-09-02 15:34:33.586 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-02 15:34:33.586 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-02 15:34:33.586 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-02 15:34:33.586 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-02 15:34:33.586 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-02 15:34:33.587 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-02 15:34:33.587 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-02 15:34:33.587 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-02 15:34:33.587 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-02 15:34:33.587 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-02 15:34:33.587 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-02 15:34:33.587 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-02 15:34:33.587 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-02 15:34:33.587 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-02 15:34:33.587 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-02 15:34:33.587 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-02 15:34:33.587 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-02 15:34:33.671 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-02 15:34:33.674 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-02 15:34:33.816 +08:00 [INF] DB tables already exist. Exit install +2021-09-02 15:34:33.839 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-02 15:34:33.839 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-02 15:34:33.839 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-02 15:34:33.839 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-02 15:34:33.857 +08:00 [DBG] Execution loop BackgroundServerProcess:bb398e94 has started in 4.8122 ms +2021-09-02 15:34:33.984 +08:00 [INF] Server szqh003802a:37684:d1216fbe successfully announced in 111.893 ms +2021-09-02 15:34:33.988 +08:00 [INF] Server szqh003802a:37684:d1216fbe is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-02 15:34:33.988 +08:00 [DBG] Execution loop ServerHeartbeatProcess:3c731070 has started in 3.4466 ms +2021-09-02 15:34:33.997 +08:00 [DBG] Execution loop ServerWatchdog:4a241484 has started in 8.1861 ms +2021-09-02 15:34:33.998 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:2eb54111 has started in 3.2947 ms +2021-09-02 15:34:34.000 +08:00 [DBG] Execution loop ExpirationManager:037e9a95 has started in 2.8879 ms +2021-09-02 15:34:34.002 +08:00 [DBG] Execution loop CountersAggregator:5721ebbf has started in 3.7067 ms +2021-09-02 15:34:34.004 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:34:34.004 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 15:34:34.005 +08:00 [DBG] Execution loop Worker:7e920f4c has started in 4.6912 ms +2021-09-02 15:34:34.006 +08:00 [DBG] Execution loop Worker:5662c76d has started in 5.8328 ms +2021-09-02 15:34:34.011 +08:00 [DBG] Execution loop Worker:581ddf59 has started in 11.1963 ms +2021-09-02 15:34:34.014 +08:00 [DBG] Execution loop Worker:694a35c5 has started in 12.6253 ms +2021-09-02 15:34:34.021 +08:00 [DBG] Execution loop Worker:c697ba59 has started in 21.2089 ms +2021-09-02 15:34:34.024 +08:00 [DBG] Execution loop Worker:14eb6ef5 has started in 23.5577 ms +2021-09-02 15:34:34.027 +08:00 [DBG] Execution loop Worker:cbf76653 has started in 26.4837 ms +2021-09-02 15:34:34.027 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 15:34:34.029 +08:00 [DBG] Execution loop Worker:3115d6d3 has started in 29.0972 ms +2021-09-02 15:34:34.032 +08:00 [DBG] Execution loop Worker:e7675898 has started in 31.721 ms +2021-09-02 15:34:34.034 +08:00 [INF] 1 servers were removed due to timeout +2021-09-02 15:34:34.037 +08:00 [DBG] Execution loop Worker:e1f7905f has started in 36.5091 ms +2021-09-02 15:34:34.040 +08:00 [DBG] Execution loop Worker:077ee233 has started in 39.6887 ms +2021-09-02 15:34:34.044 +08:00 [DBG] Execution loop Worker:a0be09f5 has started in 44.2149 ms +2021-09-02 15:34:34.052 +08:00 [DBG] Execution loop Worker:52a449c8 has started in 51.4658 ms +2021-09-02 15:34:34.058 +08:00 [DBG] Execution loop Worker:87597f76 has started in 57.9222 ms +2021-09-02 15:34:34.064 +08:00 [DBG] Execution loop Worker:e82f5372 has started in 63.2377 ms +2021-09-02 15:34:34.068 +08:00 [DBG] Execution loop Worker:cde34edd has started in 67.5531 ms +2021-09-02 15:34:34.077 +08:00 [DBG] removed records count=0 +2021-09-02 15:34:34.078 +08:00 [DBG] Execution loop Worker:5f6dc232 has started in 76.8113 ms +2021-09-02 15:34:34.079 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 15:34:34.084 +08:00 [DBG] Execution loop Worker:bcbdbf81 has started in 83.9578 ms +2021-09-02 15:34:34.086 +08:00 [DBG] Execution loop Worker:38e19225 has started in 85.782 ms +2021-09-02 15:34:34.089 +08:00 [DBG] Execution loop Worker:450055c1 has started in 88.7894 ms +2021-09-02 15:34:34.092 +08:00 [INF] Server szqh003802a:37684:d1216fbe all the dispatchers started +2021-09-02 15:34:34.092 +08:00 [DBG] Execution loop DelayedJobScheduler:b6eba047 has started in 6.4382 ms +2021-09-02 15:34:34.099 +08:00 [DBG] Execution loop RecurringJobScheduler:1daaa1be has started in 10.4725 ms +2021-09-02 15:34:34.109 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 15:34:34.130 +08:00 [DBG] removed records count=0 +2021-09-02 15:34:34.172 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 15:34:34.174 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 15:34:34.190 +08:00 [DBG] removed records count=0 +2021-09-02 15:34:34.220 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 15:34:34.221 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 15:34:34.235 +08:00 [DBG] removed records count=0 +2021-09-02 15:34:34.236 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 15:34:34.237 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 15:34:34.254 +08:00 [DBG] removed records count=0 +2021-09-02 15:34:34.911 +08:00 [INF] Initialized all ABP modules. +2021-09-02 15:34:34.983 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-02 15:34:34.983 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-02 15:34:34.983 +08:00 [INF] Hosting environment: Development +2021-09-02 15:34:34.983 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-02 15:34:35.318 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-02 15:34:37.686 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 15:34:37.783 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-02 15:34:37.837 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-02 15:34:37.848 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 58.8863ms +2021-09-02 15:34:37.848 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 15:34:37.880 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 2563.8740ms +2021-09-02 15:34:37.900 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 15:34:38.016 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 116.5288ms +2021-09-02 15:34:38.220 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 15:34:38.938 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 718.2367ms +2021-09-02 15:34:43.091 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 15:34:43.100 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:34:43.106 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 14.4449ms +2021-09-02 15:34:43.109 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 15:34:43.111 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:34:43.189 +08:00 [INF] Successfully validated the token. +2021-09-02 15:34:43.195 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:34:43.217 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:34:44.970 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:34:45.012 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1795.1468ms +2021-09-02 15:34:45.013 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:34:45.071 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:34:45.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:34:45.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:34:45.412 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 2302.7705ms +2021-09-02 15:34:50.111 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 15:34:50.111 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:34:50.111 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.8349ms +2021-09-02 15:34:50.114 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 15:34:50.115 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:34:50.121 +08:00 [INF] Successfully validated the token. +2021-09-02 15:34:50.122 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:34:50.125 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:34:50.732 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:34:50.738 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 612.8817ms +2021-09-02 15:34:50.738 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:34:50.750 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:34:50.795 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:34:50.795 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:34:50.796 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 682.2913ms +2021-09-02 15:35:00.947 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:35:01.064 +08:00 [DBG] 3 recurring job(s) processed by scheduler. +2021-09-02 15:35:06.036 +08:00 [DBG] Server szqh003802a:37684:d1216fbe heartbeat successfully sent +2021-09-02 15:35:36.088 +08:00 [DBG] Server szqh003802a:37684:d1216fbe heartbeat successfully sent +2021-09-02 15:36:06.127 +08:00 [DBG] Server szqh003802a:37684:d1216fbe heartbeat successfully sent +2021-09-02 15:36:36.193 +08:00 [DBG] Server szqh003802a:37684:d1216fbe heartbeat successfully sent +2021-09-02 15:37:01.067 +08:00 [DBG] 597 recurring job(s) processed by scheduler. +2021-09-02 15:37:08.671 +08:00 [DBG] Server szqh003802a:37684:d1216fbe heartbeat successfully sent +2021-09-02 15:37:11.820 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 15:37:11.821 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:37:11.821 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5320ms +2021-09-02 15:37:11.822 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 15:37:11.823 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:37:11.825 +08:00 [INF] Successfully validated the token. +2021-09-02 15:37:11.827 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:37:11.827 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:37:11.869 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:37:11.869 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 41.9598ms +2021-09-02 15:37:11.869 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:37:11.874 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:11.915 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:11.915 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:11.915 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 92.6192ms +2021-09-02 15:37:30.593 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - +2021-09-02 15:37:30.593 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:37:30.594 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - - 204 - - 0.4457ms +2021-09-02 15:37:30.595 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 117 +2021-09-02 15:37:30.596 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:37:30.599 +08:00 [INF] Successfully validated the token. +2021-09-02 15:37:30.600 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:37:30.603 +08:00 [INF] Route matched with {action = "Create", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Dtos.CreateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:37:30.665 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 62.7236ms +2021-09-02 15:37:30.666 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:37:30.718 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:30.718 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:30.780 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:30.780 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:30.780 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 117 - 204 - - 184.8976ms +2021-09-02 15:37:30.828 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 15:37:30.828 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:37:30.829 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4787ms +2021-09-02 15:37:30.830 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 15:37:30.831 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:37:30.833 +08:00 [INF] Successfully validated the token. +2021-09-02 15:37:30.834 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:37:30.834 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:37:30.874 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:37:30.874 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.8783ms +2021-09-02 15:37:30.874 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:37:30.878 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:30.908 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:30.908 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:30.908 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 77.6192ms +2021-09-02 15:37:38.157 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/delete - - +2021-09-02 15:37:38.158 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:37:38.158 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/delete - - - 204 - - 0.4463ms +2021-09-02 15:37:38.159 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/delete application/json 2 +2021-09-02 15:37:38.159 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:37:38.162 +08:00 [INF] Successfully validated the token. +2021-09-02 15:37:38.163 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:37:38.165 +08:00 [INF] Route matched with {action = "Delete", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:37:38.244 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 78.6826ms +2021-09-02 15:37:38.244 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:37:38.247 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:38.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:38.287 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:38.288 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/delete application/json 2 - 204 - - 128.4222ms +2021-09-02 15:37:38.325 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 15:37:38.325 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:37:38.325 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4426ms +2021-09-02 15:37:38.327 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 15:37:38.327 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:37:38.329 +08:00 [INF] Successfully validated the token. +2021-09-02 15:37:38.331 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:37:38.331 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:37:38.369 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:37:38.370 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.8845ms +2021-09-02 15:37:38.370 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:37:38.373 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:38.402 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:38.402 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:37:38.403 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 76.1132ms +2021-09-02 15:37:38.930 +08:00 [DBG] Server szqh003802a:37684:d1216fbe heartbeat successfully sent +2021-09-02 15:38:08.832 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/delete - - +2021-09-02 15:38:08.832 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:38:08.832 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/delete - - - 204 - - 0.4540ms +2021-09-02 15:38:08.834 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/delete application/json 2 +2021-09-02 15:38:08.834 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:38:08.836 +08:00 [INF] Successfully validated the token. +2021-09-02 15:38:08.837 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:38:08.838 +08:00 [INF] Route matched with {action = "Delete", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:38:08.870 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 32.0432ms +2021-09-02 15:38:08.870 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:38:08.872 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:38:08.910 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:38:08.910 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:38:08.910 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/delete application/json 2 - 204 - - 76.4888ms +2021-09-02 15:38:08.948 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 15:38:08.949 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:38:08.949 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4436ms +2021-09-02 15:38:08.950 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 15:38:08.950 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:38:08.953 +08:00 [INF] Successfully validated the token. +2021-09-02 15:38:08.954 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:38:08.954 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:38:08.996 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:38:08.996 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 41.8944ms +2021-09-02 15:38:08.996 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:38:09.000 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:38:09.008 +08:00 [DBG] Server szqh003802a:37684:d1216fbe heartbeat successfully sent +2021-09-02 15:38:09.032 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:38:09.032 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:38:09.032 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 82.1600ms +2021-09-02 15:38:39.033 +08:00 [DBG] Server szqh003802a:37684:d1216fbe heartbeat successfully sent +2021-09-02 15:39:00.654 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/delete - - +2021-09-02 15:39:00.654 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:39:00.654 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/delete - - - 204 - - 0.5006ms +2021-09-02 15:39:00.656 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/delete application/json 2 +2021-09-02 15:39:00.656 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:39:00.659 +08:00 [INF] Successfully validated the token. +2021-09-02 15:39:00.662 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:39:00.662 +08:00 [INF] Route matched with {action = "Delete", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:39:00.699 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 37.4592ms +2021-09-02 15:39:00.699 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:39:00.703 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:39:00.739 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:39:00.739 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:39:00.740 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/delete application/json 2 - 204 - - 83.9780ms +2021-09-02 15:39:00.792 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 15:39:00.793 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:39:00.794 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 1.3459ms +2021-09-02 15:39:00.796 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 15:39:00.796 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:39:00.799 +08:00 [INF] Successfully validated the token. +2021-09-02 15:39:00.801 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:39:00.802 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:39:00.850 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:39:00.850 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 48.3883ms +2021-09-02 15:39:00.850 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:39:00.856 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:39:00.896 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:39:00.896 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:39:00.897 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 101.5051ms +2021-09-02 15:39:01.110 +08:00 [DBG] 587 recurring job(s) processed by scheduler. +2021-09-02 15:39:09.993 +08:00 [DBG] Server szqh003802a:37684:d1216fbe heartbeat successfully sent +2021-09-02 15:39:28.796 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 15:39:28.797 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:39:28.797 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4489ms +2021-09-02 15:39:28.799 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 15:39:28.799 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:39:28.801 +08:00 [INF] Successfully validated the token. +2021-09-02 15:39:28.803 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:39:28.803 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:39:28.848 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:39:28.848 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 45.6571ms +2021-09-02 15:39:28.849 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:39:28.852 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:39:28.895 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:39:28.895 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:39:28.896 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 97.1347ms +2021-09-02 15:39:30.795 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 15:39:30.795 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:39:30.798 +08:00 [INF] Successfully validated the token. +2021-09-02 15:39:30.799 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:39:30.799 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:39:30.841 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:39:30.842 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.4705ms +2021-09-02 15:39:30.842 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:39:30.845 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:39:30.882 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:39:30.882 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:39:30.883 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 88.0243ms +2021-09-02 15:39:34.050 +08:00 [INF] 2 servers were removed due to timeout +2021-09-02 15:39:34.058 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:39:40.024 +08:00 [DBG] Server szqh003802a:37684:d1216fbe heartbeat successfully sent +2021-09-02 15:40:10.079 +08:00 [DBG] Server szqh003802a:37684:d1216fbe heartbeat successfully sent +2021-09-02 15:40:29.639 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-02 15:40:34.902 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-02 15:40:35.017 +08:00 [INF] Loaded ABP modules: +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-02 15:40:35.018 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-02 15:40:35.018 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-02 15:40:35.103 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-02 15:40:35.106 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-02 15:40:35.244 +08:00 [INF] DB tables already exist. Exit install +2021-09-02 15:40:35.268 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-02 15:40:35.268 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-02 15:40:35.268 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-02 15:40:35.269 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-02 15:40:35.289 +08:00 [DBG] Execution loop BackgroundServerProcess:fab1b2cc has started in 5.2211 ms +2021-09-02 15:40:35.435 +08:00 [INF] Server szqh003802a:2032:1e56716c successfully announced in 132.911 ms +2021-09-02 15:40:35.439 +08:00 [INF] Server szqh003802a:2032:1e56716c is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-02 15:40:35.469 +08:00 [DBG] Execution loop ServerHeartbeatProcess:ca7d21a4 has started in 32.5528 ms +2021-09-02 15:40:35.471 +08:00 [DBG] Execution loop ServerWatchdog:d3f6fddd has started in 32.2714 ms +2021-09-02 15:40:35.473 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:47e43e2a has started in 3.6907 ms +2021-09-02 15:40:35.475 +08:00 [DBG] Execution loop ExpirationManager:686de1af has started in 2.7769 ms +2021-09-02 15:40:35.476 +08:00 [DBG] Execution loop CountersAggregator:3e9fefb5 has started in 3.5384 ms +2021-09-02 15:40:35.478 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:40:35.478 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 15:40:35.479 +08:00 [DBG] Execution loop Worker:35bdd83b has started in 4.5368 ms +2021-09-02 15:40:35.480 +08:00 [DBG] Execution loop Worker:ee5a58ef has started in 5.6613 ms +2021-09-02 15:40:35.483 +08:00 [DBG] Execution loop Worker:a81029b8 has started in 8.1418 ms +2021-09-02 15:40:35.487 +08:00 [DBG] Execution loop Worker:7b074a53 has started in 11.7334 ms +2021-09-02 15:40:35.488 +08:00 [DBG] Execution loop Worker:782f021f has started in 13.0158 ms +2021-09-02 15:40:35.491 +08:00 [DBG] Execution loop Worker:bf4102cc has started in 16.0634 ms +2021-09-02 15:40:35.491 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 15:40:35.492 +08:00 [DBG] Execution loop Worker:b343a0bf has started in 17.4214 ms +2021-09-02 15:40:35.494 +08:00 [DBG] Execution loop Worker:7ad864af has started in 19.3639 ms +2021-09-02 15:40:35.497 +08:00 [DBG] Execution loop Worker:84ba4d88 has started in 22.1416 ms +2021-09-02 15:40:35.504 +08:00 [DBG] Execution loop Worker:a25c1019 has started in 29.454 ms +2021-09-02 15:40:35.510 +08:00 [DBG] Execution loop Worker:593ee9bb has started in 35.0548 ms +2021-09-02 15:40:35.513 +08:00 [DBG] Execution loop Worker:276b0aff has started in 38.6018 ms +2021-09-02 15:40:35.513 +08:00 [DBG] Execution loop Worker:2dd6f82e has started in 38.6027 ms +2021-09-02 15:40:35.518 +08:00 [DBG] Execution loop Worker:44db9dfb has started in 43.4995 ms +2021-09-02 15:40:35.524 +08:00 [DBG] Execution loop Worker:fc04dd7d has started in 49.0923 ms +2021-09-02 15:40:35.528 +08:00 [DBG] Execution loop Worker:3752dacb has started in 53.4736 ms +2021-09-02 15:40:35.533 +08:00 [DBG] Execution loop Worker:be19bbd7 has started in 57.8853 ms +2021-09-02 15:40:35.538 +08:00 [DBG] Execution loop Worker:a8b88474 has started in 63.2115 ms +2021-09-02 15:40:35.549 +08:00 [DBG] removed records count=0 +2021-09-02 15:40:35.549 +08:00 [DBG] Execution loop Worker:f38f63c3 has started in 74.2456 ms +2021-09-02 15:40:35.553 +08:00 [DBG] Execution loop Worker:3368e509 has started in 78.1012 ms +2021-09-02 15:40:35.553 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 15:40:35.568 +08:00 [DBG] Execution loop DelayedJobScheduler:bd76ff66 has started in 19.4375 ms +2021-09-02 15:40:35.571 +08:00 [INF] Server szqh003802a:2032:1e56716c all the dispatchers started +2021-09-02 15:40:35.577 +08:00 [DBG] Execution loop RecurringJobScheduler:ebe34014 has started in 22.3108 ms +2021-09-02 15:40:35.607 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 15:40:35.628 +08:00 [DBG] removed records count=0 +2021-09-02 15:40:35.665 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 15:40:35.666 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 15:40:35.685 +08:00 [DBG] removed records count=0 +2021-09-02 15:40:35.686 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 15:40:35.687 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 15:40:35.706 +08:00 [DBG] removed records count=0 +2021-09-02 15:40:35.710 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 15:40:35.712 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 15:40:35.738 +08:00 [DBG] removed records count=0 +2021-09-02 15:40:36.202 +08:00 [INF] Initialized all ABP modules. +2021-09-02 15:40:36.271 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-02 15:40:36.272 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-02 15:40:36.272 +08:00 [INF] Hosting environment: Development +2021-09-02 15:40:36.272 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-02 15:40:36.937 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-02 15:40:38.648 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 15:40:38.707 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-02 15:40:38.739 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-02 15:40:38.745 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 34.314ms +2021-09-02 15:40:38.745 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 15:40:38.763 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1828.1428ms +2021-09-02 15:40:38.778 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 15:40:38.832 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 53.8385ms +2021-09-02 15:40:38.994 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 15:40:39.355 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 360.4886ms +2021-09-02 15:40:46.247 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 15:40:46.418 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 170.8021ms +2021-09-02 15:41:01.110 +08:00 [DBG] 397 recurring job(s) processed by scheduler. +2021-09-02 15:41:05.953 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:41:10.829 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 15:41:10.836 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:41:10.841 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 12.0138ms +2021-09-02 15:41:10.844 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 15:41:10.845 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:41:10.902 +08:00 [INF] Successfully validated the token. +2021-09-02 15:41:10.908 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:41:10.922 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:41:12.202 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:41:12.221 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1298.4663ms +2021-09-02 15:41:12.222 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:41:12.243 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:41:12.448 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:41:12.448 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:41:12.452 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 1607.7416ms +2021-09-02 15:41:35.968 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:42:00.226 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 15:42:00.227 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:42:00.227 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4407ms +2021-09-02 15:42:00.228 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 15:42:00.229 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:42:00.231 +08:00 [INF] Successfully validated the token. +2021-09-02 15:42:00.232 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:42:00.233 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:42:00.273 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:42:00.273 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.3246ms +2021-09-02 15:42:00.273 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:42:00.277 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:00.306 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:00.306 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:00.307 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 78.3479ms +2021-09-02 15:42:06.032 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:42:08.481 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/delete - - +2021-09-02 15:42:08.481 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:42:08.482 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/delete - - - 204 - - 0.4676ms +2021-09-02 15:42:08.483 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/delete application/json 45 +2021-09-02 15:42:08.484 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:42:08.486 +08:00 [INF] Successfully validated the token. +2021-09-02 15:42:08.488 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:42:08.490 +08:00 [INF] Route matched with {action = "Delete", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:42:08.599 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 108.6446ms +2021-09-02 15:42:08.599 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:42:08.658 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:08.658 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:08.721 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:08.721 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:08.721 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/delete application/json 45 - 204 - - 237.6224ms +2021-09-02 15:42:08.764 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 15:42:08.764 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:42:08.764 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4508ms +2021-09-02 15:42:08.766 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 15:42:08.766 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:42:08.768 +08:00 [INF] Successfully validated the token. +2021-09-02 15:42:08.770 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:42:08.770 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:42:08.818 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:42:08.818 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 48.1201ms +2021-09-02 15:42:08.818 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:42:08.824 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:08.857 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:08.857 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:08.857 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 91.3952ms +2021-09-02 15:42:16.874 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - +2021-09-02 15:42:16.874 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:42:16.875 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - - 204 - - 0.4397ms +2021-09-02 15:42:16.876 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 115 +2021-09-02 15:42:16.876 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:42:16.879 +08:00 [INF] Successfully validated the token. +2021-09-02 15:42:16.880 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:42:16.882 +08:00 [INF] Route matched with {action = "Create", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Dtos.CreateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:42:16.936 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 53.4476ms +2021-09-02 15:42:16.936 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:42:16.967 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:16.967 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:17.012 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:17.012 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:17.013 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 115 - 204 - - 136.3485ms +2021-09-02 15:42:17.064 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 15:42:17.065 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:42:17.065 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4446ms +2021-09-02 15:42:17.067 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 15:42:17.067 +08:00 [INF] CORS policy execution successful. +2021-09-02 15:42:17.069 +08:00 [INF] Successfully validated the token. +2021-09-02 15:42:17.071 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:42:17.071 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 15:42:17.113 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 15:42:17.113 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.428ms +2021-09-02 15:42:17.113 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 15:42:17.116 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:17.155 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:17.155 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 15:42:17.155 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 88.5659ms +2021-09-02 15:42:36.077 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:43:01.575 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 15:43:06.103 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:43:36.132 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:44:06.234 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:44:36.297 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:45:06.321 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:45:38.920 +08:00 [INF] 1 servers were removed due to timeout +2021-09-02 15:45:38.944 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:45:39.891 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:45:41.279 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:46:01.071 +08:00 [DBG] 823 recurring job(s) processed by scheduler. +2021-09-02 15:46:13.295 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:46:43.374 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:47:13.447 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:47:40.418 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:47:44.696 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:48:01.072 +08:00 [DBG] 843 recurring job(s) processed by scheduler. +2021-09-02 15:48:17.397 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:48:47.489 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:49:17.556 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:49:50.544 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:49:54.978 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:50:01.065 +08:00 [DBG] 260 recurring job(s) processed by scheduler. +2021-09-02 15:50:21.006 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:50:38.947 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:50:51.078 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:51:21.111 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:51:52.371 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:51:54.681 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 15:52:01.063 +08:00 [DBG] 274 recurring job(s) processed by scheduler. +2021-09-02 15:52:22.385 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:52:52.400 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:53:22.471 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:53:53.623 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:54:01.071 +08:00 [DBG] 633 recurring job(s) processed by scheduler. +2021-09-02 15:54:23.636 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:54:53.753 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:55:23.875 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:55:39.186 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 15:55:55.315 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:56:01.077 +08:00 [DBG] 624 recurring job(s) processed by scheduler. +2021-09-02 15:56:25.376 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:56:55.483 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:57:25.531 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:57:55.648 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:58:01.695 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 15:58:25.722 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:58:55.820 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:59:25.884 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 15:59:56.000 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:00:26.402 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:00:30.328 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:00:46.128 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 16:00:50.296 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:01:01.074 +08:00 [DBG] 454 recurring job(s) processed by scheduler. +2021-09-02 16:01:05.191 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:01:35.263 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:02:05.378 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:02:38.819 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:02:40.123 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:03:01.057 +08:00 [DBG] 922 recurring job(s) processed by scheduler. +2021-09-02 16:03:12.439 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:03:42.531 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:04:12.644 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:04:40.490 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:04:47.367 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:05:01.082 +08:00 [DBG] 844 recurring job(s) processed by scheduler. +2021-09-02 16:05:19.481 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:05:46.132 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 16:05:49.506 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:06:19.525 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:06:52.949 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:06:54.566 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:07:01.068 +08:00 [DBG] 262 recurring job(s) processed by scheduler. +2021-09-02 16:07:22.996 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:07:53.106 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:08:23.151 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:08:54.469 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:09:01.099 +08:00 [DBG] 625 recurring job(s) processed by scheduler. +2021-09-02 16:09:24.522 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:09:54.628 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:10:24.674 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:10:46.135 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 16:10:55.911 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:11:01.072 +08:00 [DBG] 633 recurring job(s) processed by scheduler. +2021-09-02 16:11:25.958 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:11:56.057 +08:00 [DBG] Server szqh003802a:2032:1e56716c heartbeat successfully sent +2021-09-02 16:27:10.785 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-02 16:27:19.267 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-02 16:27:19.384 +08:00 [INF] Loaded ABP modules: +2021-09-02 16:27:19.384 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-02 16:27:19.384 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-02 16:27:19.384 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-02 16:27:19.384 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-02 16:27:19.384 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-02 16:27:19.384 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-02 16:27:19.384 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-02 16:27:19.384 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-02 16:27:19.385 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-02 16:27:19.385 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-02 16:27:19.385 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-02 16:27:19.385 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-02 16:27:19.385 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-02 16:27:19.385 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-02 16:27:19.385 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-02 16:27:19.385 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-02 16:27:19.385 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-02 16:27:19.470 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-02 16:27:19.473 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-02 16:27:19.615 +08:00 [INF] DB tables already exist. Exit install +2021-09-02 16:27:19.639 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-02 16:27:19.639 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-02 16:27:19.639 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-02 16:27:19.639 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-02 16:27:19.660 +08:00 [DBG] Execution loop BackgroundServerProcess:49744717 has started in 6.4852 ms +2021-09-02 16:27:19.803 +08:00 [INF] Server szqh003802a:15028:8fd93d48 successfully announced in 130.6403 ms +2021-09-02 16:27:19.808 +08:00 [INF] Server szqh003802a:15028:8fd93d48 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-02 16:27:19.809 +08:00 [DBG] Execution loop ServerHeartbeatProcess:e10b8184 has started in 3.6244 ms +2021-09-02 16:27:19.812 +08:00 [DBG] Execution loop ServerWatchdog:c69388fd has started in 4.0906 ms +2021-09-02 16:27:19.812 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:40928ebd has started in 3.065 ms +2021-09-02 16:27:19.814 +08:00 [DBG] Execution loop ExpirationManager:efe0bb5e has started in 3.5666 ms +2021-09-02 16:27:19.816 +08:00 [DBG] Execution loop CountersAggregator:d638ea5b has started in 3.9293 ms +2021-09-02 16:27:19.818 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 16:27:19.818 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 16:27:19.820 +08:00 [DBG] Execution loop Worker:84a3f8c7 has started in 5.9228 ms +2021-09-02 16:27:19.822 +08:00 [DBG] Execution loop Worker:546b6526 has started in 8.0675 ms +2021-09-02 16:27:19.822 +08:00 [DBG] Execution loop Worker:8879c978 has started in 8.1413 ms +2021-09-02 16:27:19.825 +08:00 [DBG] Execution loop Worker:2b4a12f2 has started in 10.5741 ms +2021-09-02 16:27:19.829 +08:00 [DBG] Execution loop Worker:ccd35a39 has started in 14.603 ms +2021-09-02 16:27:19.831 +08:00 [DBG] Execution loop Worker:bd4a1dfe has started in 16.6334 ms +2021-09-02 16:27:19.831 +08:00 [DBG] Execution loop Worker:b05f7857 has started in 16.9305 ms +2021-09-02 16:27:19.835 +08:00 [DBG] Execution loop Worker:efc4ce83 has started in 21.1202 ms +2021-09-02 16:27:19.836 +08:00 [INF] 1 servers were removed due to timeout +2021-09-02 16:27:19.839 +08:00 [DBG] Execution loop Worker:90cfb5ff has started in 23.599 ms +2021-09-02 16:27:19.839 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 16:27:19.845 +08:00 [DBG] Execution loop Worker:73dc8107 has started in 30.7445 ms +2021-09-02 16:27:19.845 +08:00 [DBG] Execution loop Worker:fc62111e has started in 30.7554 ms +2021-09-02 16:27:19.847 +08:00 [DBG] Execution loop Worker:4775ef3b has started in 32.2421 ms +2021-09-02 16:27:19.852 +08:00 [DBG] Execution loop Worker:18d0a376 has started in 37.4917 ms +2021-09-02 16:27:19.855 +08:00 [DBG] Execution loop Worker:ed45095f has started in 40.5606 ms +2021-09-02 16:27:19.861 +08:00 [DBG] Execution loop Worker:75069955 has started in 47.0343 ms +2021-09-02 16:27:19.867 +08:00 [DBG] Execution loop Worker:9a7ee2d8 has started in 52.304 ms +2021-09-02 16:27:19.875 +08:00 [DBG] Execution loop Worker:560c8cc6 has started in 60.2494 ms +2021-09-02 16:27:19.881 +08:00 [DBG] removed records count=0 +2021-09-02 16:27:19.896 +08:00 [DBG] Execution loop Worker:843de0d2 has started in 81.5045 ms +2021-09-02 16:27:19.896 +08:00 [DBG] Execution loop Worker:ced6db38 has started in 81.5128 ms +2021-09-02 16:27:19.905 +08:00 [DBG] Execution loop Worker:f49a60b3 has started in 90.971 ms +2021-09-02 16:27:19.905 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 16:27:19.913 +08:00 [INF] Server szqh003802a:15028:8fd93d48 all the dispatchers started +2021-09-02 16:27:19.913 +08:00 [DBG] Execution loop DelayedJobScheduler:4e368c6c has started in 16.5008 ms +2021-09-02 16:27:19.915 +08:00 [DBG] Execution loop RecurringJobScheduler:bc7dcf0c has started in 7.8787 ms +2021-09-02 16:27:19.925 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 16:27:19.952 +08:00 [DBG] removed records count=0 +2021-09-02 16:27:19.981 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 16:27:19.982 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 16:27:19.995 +08:00 [DBG] removed records count=0 +2021-09-02 16:27:20.012 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 16:27:20.013 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 16:27:20.028 +08:00 [DBG] removed records count=0 +2021-09-02 16:27:20.029 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 16:27:20.030 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 16:27:20.040 +08:00 [DBG] removed records count=0 +2021-09-02 16:27:20.236 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 16:27:20.371 +08:00 [INF] Initialized all ABP modules. +2021-09-02 16:27:20.438 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-02 16:27:20.438 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-02 16:27:20.439 +08:00 [INF] Hosting environment: Development +2021-09-02 16:27:20.439 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-02 16:27:20.988 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-02 16:27:23.358 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 16:27:23.421 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-02 16:27:23.458 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-02 16:27:23.466 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 40.3518ms +2021-09-02 16:27:23.466 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 16:27:23.487 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 2499.1721ms +2021-09-02 16:27:23.503 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 16:27:23.557 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 53.7969ms +2021-09-02 16:27:23.725 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 16:27:24.125 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 399.8841ms +2021-09-02 16:27:49.838 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:28:01.078 +08:00 [DBG] 463 recurring job(s) processed by scheduler. +2021-09-02 16:28:11.158 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie - - +2021-09-02 16:28:11.162 +08:00 [INF] Executing endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-09-02 16:28:11.164 +08:00 [INF] Route matched with {area = "Abp", action = "SetCsrfCookie", controller = "AbpSwashbuckle", page = ""}. Executing controller action with signature Void SetCsrfCookie() on controller Volo.Abp.Swashbuckle.AbpSwashbuckleController (Volo.Abp.Swashbuckle). +2021-09-02 16:28:11.184 +08:00 [WRN] The cookie 'XSRF-TOKEN' has set 'SameSite=None' and must also set 'Secure'. +2021-09-02 16:28:11.185 +08:00 [INF] Executed action Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle) in 20.6041ms +2021-09-02 16:28:11.185 +08:00 [INF] Executed endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-09-02 16:28:11.185 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie - - - 204 - - 27.5196ms +2021-09-02 16:28:11.293 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 16:28:11.300 +08:00 [INF] CORS policy execution failed. +2021-09-02 16:28:11.300 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 16:28:11.307 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:28:11.312 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:28:11.917 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:28:11.931 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 618.9545ms +2021-09-02 16:28:11.932 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:28:11.957 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:28:12.163 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:28:12.163 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:28:12.167 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 873.1473ms +2021-09-02 16:28:19.898 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:28:49.928 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:29:19.988 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:29:50.036 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:30:01.587 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 16:30:20.179 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:30:50.217 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:31:20.247 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:31:50.321 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:32:21.571 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 16:32:22.117 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:32:26.633 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:32:51.857 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:32:57.852 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:33:01.064 +08:00 [DBG] 362 recurring job(s) processed by scheduler. +2021-09-02 16:33:27.889 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:33:58.028 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:34:30.490 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:34:39.679 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:35:01.076 +08:00 [DBG] 918 recurring job(s) processed by scheduler. +2021-09-02 16:35:05.771 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:35:35.853 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:36:05.891 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:36:39.555 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:36:41.274 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:37:01.065 +08:00 [DBG] 825 recurring job(s) processed by scheduler. +2021-09-02 16:37:13.062 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:37:28.861 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 16:37:43.100 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:37:52.325 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie application/json - +2021-09-02 16:37:52.329 +08:00 [INF] Executing endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-09-02 16:37:52.330 +08:00 [INF] Route matched with {area = "Abp", action = "SetCsrfCookie", controller = "AbpSwashbuckle", page = ""}. Executing controller action with signature Void SetCsrfCookie() on controller Volo.Abp.Swashbuckle.AbpSwashbuckleController (Volo.Abp.Swashbuckle). +2021-09-02 16:37:52.336 +08:00 [WRN] The cookie 'XSRF-TOKEN' has set 'SameSite=None' and must also set 'Secure'. +2021-09-02 16:37:52.336 +08:00 [INF] Executed action Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle) in 6.4508ms +2021-09-02 16:37:52.336 +08:00 [INF] Executed endpoint 'Volo.Abp.Swashbuckle.AbpSwashbuckleController.SetCsrfCookie (Volo.Abp.Swashbuckle)' +2021-09-02 16:37:52.337 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/abp/Swashbuckle/SetCsrfCookie application/json - - 204 - - 11.6470ms +2021-09-02 16:37:52.464 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 5 +2021-09-02 16:37:52.466 +08:00 [INF] CORS policy execution failed. +2021-09-02 16:37:52.466 +08:00 [INF] Request origin http://localhost:44315 does not have permission to access the resource. +2021-09-02 16:37:52.469 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:37:52.480 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:37:53.258 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:37:53.266 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 786.1372ms +2021-09-02 16:37:53.266 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:37:53.275 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:37:53.304 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:37:53.304 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:37:53.304 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 5 - 200 - application/json;+charset=utf-8 840.6018ms +2021-09-02 16:38:13.150 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:38:45.374 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:38:55.101 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:39:01.056 +08:00 [DBG] 253 recurring job(s) processed by scheduler. +2021-09-02 16:39:17.570 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:39:47.589 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:40:17.680 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:40:48.035 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:41:01.058 +08:00 [DBG] 631 recurring job(s) processed by scheduler. +2021-09-02 16:41:16.643 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 16:41:16.836 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 193.0881ms +2021-09-02 16:41:19.537 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:41:49.558 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:42:19.586 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:42:28.849 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 16:42:50.055 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:43:01.079 +08:00 [DBG] 580 recurring job(s) processed by scheduler. +2021-09-02 16:43:21.879 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:43:51.960 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:44:22.071 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:44:52.086 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:44:54.286 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 16:44:54.287 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:44:54.290 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 3.3634ms +2021-09-02 16:44:54.296 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:44:54.296 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:44:54.350 +08:00 [INF] Successfully validated the token. +2021-09-02 16:44:54.355 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:44:54.355 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:44:54.506 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:44:54.507 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 151.601ms +2021-09-02 16:44:54.507 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:44:54.510 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:44:54.553 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:44:54.553 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:44:54.553 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 257.3780ms +2021-09-02 16:45:01.684 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 16:45:19.113 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 16:45:19.113 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:45:19.113 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4538ms +2021-09-02 16:45:19.115 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:45:19.115 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:45:19.117 +08:00 [INF] Successfully validated the token. +2021-09-02 16:45:19.119 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:45:19.119 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:45:19.158 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:45:19.158 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.6685ms +2021-09-02 16:45:19.159 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:45:19.163 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:45:19.204 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:45:19.204 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:45:19.204 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 89.2019ms +2021-09-02 16:45:22.124 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:45:24.203 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 16:45:24.203 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:45:24.203 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4460ms +2021-09-02 16:45:24.205 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:45:24.206 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:45:24.208 +08:00 [INF] Successfully validated the token. +2021-09-02 16:45:24.209 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:45:24.209 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:45:24.250 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:45:24.250 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.8751ms +2021-09-02 16:45:24.250 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:45:24.253 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:45:24.284 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:45:24.284 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:45:24.284 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 78.6921ms +2021-09-02 16:45:26.970 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:45:26.970 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:45:26.972 +08:00 [INF] Successfully validated the token. +2021-09-02 16:45:26.974 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:45:26.974 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:45:27.012 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:45:27.012 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.5409ms +2021-09-02 16:45:27.013 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:45:27.016 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:45:27.051 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:45:27.051 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:45:27.051 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 81.1502ms +2021-09-02 16:45:52.190 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:45:53.310 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 16:45:53.311 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:45:53.311 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6596ms +2021-09-02 16:45:53.312 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:45:53.312 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:45:53.315 +08:00 [INF] Successfully validated the token. +2021-09-02 16:45:53.316 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:45:53.316 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:45:53.357 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:45:53.358 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 41.5878ms +2021-09-02 16:45:53.358 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:45:53.362 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:45:53.394 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:45:53.394 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:45:53.395 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 82.2880ms +2021-09-02 16:46:18.175 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 16:46:18.176 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:46:18.176 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4576ms +2021-09-02 16:46:18.177 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:46:18.178 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:46:18.180 +08:00 [INF] Successfully validated the token. +2021-09-02 16:46:18.181 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:46:18.181 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:46:18.220 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:46:18.220 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.6163ms +2021-09-02 16:46:18.220 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:46:18.224 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:18.254 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:18.254 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:18.254 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 76.6892ms +2021-09-02 16:46:21.532 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:46:21.532 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:46:21.535 +08:00 [INF] Successfully validated the token. +2021-09-02 16:46:21.536 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:46:21.536 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:46:21.576 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:46:21.577 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.5647ms +2021-09-02 16:46:21.577 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:46:21.580 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:21.609 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:21.609 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:21.609 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 77.2557ms +2021-09-02 16:46:22.253 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:46:25.347 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 16:46:25.347 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:46:25.348 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5099ms +2021-09-02 16:46:25.349 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:46:25.349 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:46:25.352 +08:00 [INF] Successfully validated the token. +2021-09-02 16:46:25.353 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:46:25.353 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:46:25.390 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:46:25.390 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.9822ms +2021-09-02 16:46:25.390 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:46:25.394 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:25.421 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:25.421 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:25.422 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 72.5008ms +2021-09-02 16:46:28.412 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:46:28.412 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:46:28.415 +08:00 [INF] Successfully validated the token. +2021-09-02 16:46:28.416 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:46:28.416 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:46:28.453 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:46:28.454 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.5363ms +2021-09-02 16:46:28.454 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:46:28.457 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:28.487 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:28.487 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:28.487 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 75.3282ms +2021-09-02 16:46:31.221 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 16:46:31.221 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:46:31.221 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.9409ms +2021-09-02 16:46:31.223 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 16:46:31.223 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:46:31.226 +08:00 [INF] Successfully validated the token. +2021-09-02 16:46:31.227 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:46:31.227 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:46:31.249 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:46:31.250 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 22.4336ms +2021-09-02 16:46:31.250 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:46:31.253 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:31.281 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:31.281 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:46:31.282 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 58.6850ms +2021-09-02 16:46:52.269 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:47:02.540 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 16:47:22.406 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:47:29.023 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 16:47:52.520 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:48:22.642 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:48:52.760 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:49:23.587 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:49:43.060 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:49:59.132 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:50:01.069 +08:00 [DBG] 722 recurring job(s) processed by scheduler. +2021-09-02 16:50:29.183 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:50:59.309 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:51:30.208 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:51:41.532 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:52:01.060 +08:00 [DBG] 765 recurring job(s) processed by scheduler. +2021-09-02 16:52:05.241 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:52:29.082 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 16:52:35.273 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:53:05.410 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:53:27.136 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 16:53:27.136 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:53:27.136 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6335ms +2021-09-02 16:53:27.139 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:53:27.139 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:53:27.142 +08:00 [INF] Successfully validated the token. +2021-09-02 16:53:27.144 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:53:27.144 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:53:27.198 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:53:27.201 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 55.9488ms +2021-09-02 16:53:27.201 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:53:27.208 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:27.254 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:27.254 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:27.254 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 115.6087ms +2021-09-02 16:53:36.232 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:53:37.591 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 16:53:37.592 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:53:37.592 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.7996ms +2021-09-02 16:53:37.596 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:53:37.596 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:53:37.600 +08:00 [INF] Successfully validated the token. +2021-09-02 16:53:37.602 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:53:37.602 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:53:37.660 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:53:37.661 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 58.2422ms +2021-09-02 16:53:37.661 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:53:37.669 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:37.717 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:37.717 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:37.718 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 121.9528ms +2021-09-02 16:53:46.033 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 16:53:46.034 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:53:46.034 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 1.2049ms +2021-09-02 16:53:46.038 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:53:46.039 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:53:46.042 +08:00 [INF] Successfully validated the token. +2021-09-02 16:53:46.044 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:53:46.044 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:53:46.102 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:53:46.103 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 58.2505ms +2021-09-02 16:53:46.103 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:53:46.109 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:46.148 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:46.148 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:46.148 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 110.5128ms +2021-09-02 16:53:47.523 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 16:53:47.524 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:53:47.524 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.4735ms +2021-09-02 16:53:47.526 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 16:53:47.526 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:53:47.529 +08:00 [INF] Successfully validated the token. +2021-09-02 16:53:47.530 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:53:47.531 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:53:47.556 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:53:47.557 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 25.9332ms +2021-09-02 16:53:47.557 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:53:47.561 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:47.594 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:47.594 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:47.595 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 68.5883ms +2021-09-02 16:53:54.627 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 16:53:54.628 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:53:54.628 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.5675ms +2021-09-02 16:53:54.630 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 16:53:54.630 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:53:54.634 +08:00 [INF] Successfully validated the token. +2021-09-02 16:53:54.636 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:53:54.636 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:53:54.660 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:53:54.661 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 23.9933ms +2021-09-02 16:53:54.661 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:53:54.666 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:54.699 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:54.699 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:53:54.699 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 69.8618ms +2021-09-02 16:53:58.700 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:54:01.079 +08:00 [DBG] 89 recurring job(s) processed by scheduler. +2021-09-02 16:54:03.007 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 16:54:03.008 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:54:03.008 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.4576ms +2021-09-02 16:54:03.010 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 16:54:03.010 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:54:03.013 +08:00 [INF] Successfully validated the token. +2021-09-02 16:54:03.014 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:54:03.014 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:54:03.036 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:54:03.036 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 21.4539ms +2021-09-02 16:54:03.036 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:54:03.039 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:03.069 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:03.069 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:03.069 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 59.4185ms +2021-09-02 16:54:10.222 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:54:29.666 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 16:54:29.666 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:54:29.667 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5504ms +2021-09-02 16:54:29.668 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:54:29.668 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:54:29.670 +08:00 [INF] Successfully validated the token. +2021-09-02 16:54:29.672 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:54:29.672 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:54:29.711 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:54:29.712 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.0898ms +2021-09-02 16:54:29.712 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:54:29.715 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:29.744 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:29.744 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:29.744 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 76.1236ms +2021-09-02 16:54:40.325 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:54:49.248 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - +2021-09-02 16:54:49.248 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:54:49.248 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - - 204 - - 0.4665ms +2021-09-02 16:54:49.250 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 89 +2021-09-02 16:54:49.250 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:54:49.253 +08:00 [INF] Successfully validated the token. +2021-09-02 16:54:49.255 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:54:49.258 +08:00 [INF] Route matched with {action = "Create", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Dtos.CreateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:54:49.549 +08:00 [WRN] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "ApiResource已存在", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 16:54:49.550 +08:00 [WRN] ApiResource已存在 +Volo.Abp.UserFriendlyException: ApiResource已存在 + at CompanyName.ProjectName.IdentityServer.IdenityServerApiResourceManager.CreateAsync(Guid id, String name, String displayName, String description, Boolean enabled, String allowedAccessTokenSigningAlgorithms, Boolean showInDiscoveryDocument, List`1 secrets, List`1 scopes, List`1 claims, List`1 properties, CancellationToken cancellationToken) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Domain\IdentityServer\IdenityServerApiResourceManager.cs:line 68 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method2718(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 16:54:49.550 +08:00 [WRN] Code: +2021-09-02 16:54:49.550 +08:00 [WRN] Details: +2021-09-02 16:54:49.553 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 16:54:49.554 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 296.0629ms +2021-09-02 16:54:49.554 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:54:49.678 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:49.678 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:49.678 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 89 - 500 - application/json;+charset=utf-8 428.5285ms +2021-09-02 16:54:52.891 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 90 +2021-09-02 16:54:52.892 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:54:52.894 +08:00 [INF] Successfully validated the token. +2021-09-02 16:54:52.895 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:54:52.895 +08:00 [INF] Route matched with {action = "Create", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Dtos.CreateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:54:52.924 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 28.7195ms +2021-09-02 16:54:52.924 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:54:52.968 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:52.968 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:53.035 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:53.035 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:53.035 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 90 - 204 - - 144.1486ms +2021-09-02 16:54:53.093 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 16:54:53.094 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:54:53.094 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4477ms +2021-09-02 16:54:53.095 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:54:53.096 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:54:53.098 +08:00 [INF] Successfully validated the token. +2021-09-02 16:54:53.100 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:54:53.100 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:54:53.143 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:54:53.144 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 43.0778ms +2021-09-02 16:54:53.144 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:54:53.148 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:53.179 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:53.180 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:53.180 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 84.6747ms +2021-09-02 16:54:55.237 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 16:54:55.238 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:54:55.238 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.4373ms +2021-09-02 16:54:55.240 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 16:54:55.240 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:54:55.242 +08:00 [INF] Successfully validated the token. +2021-09-02 16:54:55.244 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:54:55.244 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:54:55.268 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:54:55.268 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 23.8248ms +2021-09-02 16:54:55.268 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:54:55.271 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:55.304 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:55.304 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:54:55.304 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 64.1060ms +2021-09-02 16:55:10.347 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:55:42.081 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:55:56.231 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - +2021-09-02 16:55:56.231 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:55:56.231 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - - 204 - - 0.5711ms +2021-09-02 16:55:56.234 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 65 +2021-09-02 16:55:56.234 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:55:56.237 +08:00 [INF] Successfully validated the token. +2021-09-02 16:55:56.240 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:55:56.240 +08:00 [INF] Route matched with {action = "Create", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Dtos.CreateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:56:12.382 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 16142.9469ms +2021-09-02 16:56:12.382 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:56:12.485 +08:00 [DBG] Server szqh003802a:15028:8fd93d48 heartbeat successfully sent +2021-09-02 16:56:12.553 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:56:12.553 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:56:12.596 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:56:12.596 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:56:12.597 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 65 - 204 - - 16364.3630ms +2021-09-02 16:56:12.618 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 16:56:12.687 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 16:56:12.688 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:56:12.688 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4453ms +2021-09-02 16:56:12.690 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 16:56:12.690 +08:00 [INF] CORS policy execution successful. +2021-09-02 16:56:12.693 +08:00 [INF] Successfully validated the token. +2021-09-02 16:56:12.695 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:56:12.695 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 16:56:12.740 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 16:56:12.740 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.5308ms +2021-09-02 16:56:12.740 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 16:56:12.744 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:56:12.782 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:56:12.782 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 16:56:12.783 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 92.9796ms +2021-09-02 16:59:25.568 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-02 16:59:30.613 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-02 16:59:30.732 +08:00 [INF] Loaded ABP modules: +2021-09-02 16:59:30.732 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-02 16:59:30.732 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-02 16:59:30.732 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-02 16:59:30.732 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-02 16:59:30.732 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-02 16:59:30.732 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-02 16:59:30.732 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-02 16:59:30.732 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-02 16:59:30.732 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-02 16:59:30.732 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-02 16:59:30.733 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-02 16:59:30.733 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-02 16:59:30.733 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-02 16:59:30.733 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-02 16:59:30.733 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-02 16:59:30.733 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-02 16:59:30.733 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-02 16:59:30.819 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-02 16:59:30.821 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-02 16:59:30.962 +08:00 [INF] DB tables already exist. Exit install +2021-09-02 16:59:30.986 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-02 16:59:30.986 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-02 16:59:30.987 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-02 16:59:30.987 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-02 16:59:31.007 +08:00 [DBG] Execution loop BackgroundServerProcess:8ca22465 has started in 5.7674 ms +2021-09-02 16:59:31.138 +08:00 [INF] Server szqh003802a:28196:41ed1b13 successfully announced in 117.8581 ms +2021-09-02 16:59:31.148 +08:00 [INF] Server szqh003802a:28196:41ed1b13 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-02 16:59:31.149 +08:00 [DBG] Execution loop ServerHeartbeatProcess:66d6100c has started in 9.0008 ms +2021-09-02 16:59:31.152 +08:00 [DBG] Execution loop ServerWatchdog:3b7a53aa has started in 3.1042 ms +2021-09-02 16:59:31.153 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:299a58fb has started in 3.6706 ms +2021-09-02 16:59:31.164 +08:00 [DBG] Execution loop ExpirationManager:89714ea7 has started in 12.2324 ms +2021-09-02 16:59:31.166 +08:00 [DBG] Execution loop CountersAggregator:e91f905e has started in 3.7314 ms +2021-09-02 16:59:31.168 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 16:59:31.168 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 16:59:31.169 +08:00 [DBG] Execution loop Worker:b8bd1ffb has started in 4.8733 ms +2021-09-02 16:59:31.170 +08:00 [DBG] Execution loop Worker:4b4c7e7c has started in 6.2585 ms +2021-09-02 16:59:31.173 +08:00 [DBG] Execution loop Worker:5de1d784 has started in 8.9909 ms +2021-09-02 16:59:31.177 +08:00 [DBG] Execution loop Worker:9233dcef has started in 12.2893 ms +2021-09-02 16:59:31.178 +08:00 [DBG] Execution loop Worker:9b5df59e has started in 13.7693 ms +2021-09-02 16:59:31.181 +08:00 [DBG] Execution loop Worker:fded101f has started in 16.4842 ms +2021-09-02 16:59:31.182 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 16:59:31.184 +08:00 [DBG] Execution loop Worker:463f3799 has started in 19.7617 ms +2021-09-02 16:59:31.186 +08:00 [DBG] Execution loop Worker:6e1dc1cd has started in 21.6827 ms +2021-09-02 16:59:31.191 +08:00 [DBG] Execution loop Worker:61dd0b84 has started in 25.9461 ms +2021-09-02 16:59:31.191 +08:00 [DBG] Execution loop Worker:b93c8d49 has started in 25.9619 ms +2021-09-02 16:59:31.194 +08:00 [DBG] Execution loop Worker:96862326 has started in 29.3148 ms +2021-09-02 16:59:31.199 +08:00 [DBG] Execution loop Worker:5fa470b7 has started in 34.6243 ms +2021-09-02 16:59:31.211 +08:00 [DBG] Execution loop Worker:1b49fce5 has started in 46.5264 ms +2021-09-02 16:59:31.211 +08:00 [DBG] Execution loop Worker:d6c71ef4 has started in 46.5393 ms +2021-09-02 16:59:31.211 +08:00 [DBG] Execution loop Worker:3af0b9d8 has started in 46.5129 ms +2021-09-02 16:59:31.215 +08:00 [DBG] Execution loop Worker:8c093c62 has started in 50.5315 ms +2021-09-02 16:59:31.218 +08:00 [DBG] Execution loop Worker:0912a60d has started in 54.0217 ms +2021-09-02 16:59:31.223 +08:00 [DBG] Execution loop Worker:80443b75 has started in 58.9155 ms +2021-09-02 16:59:31.229 +08:00 [DBG] Execution loop Worker:6327b1a8 has started in 64.7533 ms +2021-09-02 16:59:31.232 +08:00 [DBG] Execution loop Worker:ca942b72 has started in 68.3841 ms +2021-09-02 16:59:31.239 +08:00 [DBG] removed records count=0 +2021-09-02 16:59:31.242 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 16:59:31.242 +08:00 [INF] Server szqh003802a:28196:41ed1b13 all the dispatchers started +2021-09-02 16:59:31.242 +08:00 [DBG] Execution loop DelayedJobScheduler:79c57b0c has started in 13.5584 ms +2021-09-02 16:59:31.249 +08:00 [DBG] Execution loop RecurringJobScheduler:3a32aa6a has started in 16.8954 ms +2021-09-02 16:59:31.273 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 16:59:31.288 +08:00 [DBG] removed records count=0 +2021-09-02 16:59:31.317 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 16:59:31.319 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 16:59:31.340 +08:00 [DBG] removed records count=0 +2021-09-02 16:59:31.367 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 16:59:31.369 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 16:59:31.382 +08:00 [DBG] removed records count=0 +2021-09-02 16:59:31.384 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 16:59:31.385 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 16:59:31.403 +08:00 [DBG] removed records count=0 +2021-09-02 16:59:31.609 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 16:59:31.758 +08:00 [INF] Initialized all ABP modules. +2021-09-02 16:59:31.827 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-02 16:59:31.827 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-02 16:59:31.827 +08:00 [INF] Hosting environment: Development +2021-09-02 16:59:31.828 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-02 16:59:32.231 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-02 16:59:34.649 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 16:59:34.704 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-02 16:59:34.737 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-02 16:59:34.743 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 35.6519ms +2021-09-02 16:59:34.744 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 16:59:34.762 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 2532.1891ms +2021-09-02 16:59:34.777 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 16:59:34.829 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 51.7535ms +2021-09-02 16:59:34.982 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 16:59:35.349 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 367.1831ms +2021-09-02 16:59:38.245 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 16:59:38.445 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 200.1470ms +2021-09-02 16:59:48.331 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 16:59:48.654 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 323.4593ms +2021-09-02 17:00:01.101 +08:00 [DBG] 550 recurring job(s) processed by scheduler. +2021-09-02 17:00:02.961 +08:00 [DBG] Server szqh003802a:28196:41ed1b13 heartbeat successfully sent +2021-09-02 17:00:11.595 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:00:11.601 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:00:11.607 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 11.1874ms +2021-09-02 17:00:11.610 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:00:11.611 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:00:11.667 +08:00 [INF] Successfully validated the token. +2021-09-02 17:00:11.673 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:00:11.688 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:00:12.982 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:00:13.001 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1312.9456ms +2021-09-02 17:00:13.001 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:00:13.024 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:00:13.237 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:00:13.237 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:00:13.240 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 1630.4865ms +2021-09-02 17:00:32.989 +08:00 [DBG] Server szqh003802a:28196:41ed1b13 heartbeat successfully sent +2021-09-02 17:00:40.863 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - +2021-09-02 17:00:40.863 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:00:40.863 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - - 204 - - 0.4700ms +2021-09-02 17:00:40.865 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 84 +2021-09-02 17:00:40.865 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:00:40.868 +08:00 [INF] Successfully validated the token. +2021-09-02 17:00:40.869 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:00:40.871 +08:00 [INF] Route matched with {action = "Create", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Dtos.CreateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:00:40.948 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 76.6537ms +2021-09-02 17:00:40.948 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:00:40.994 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:00:40.994 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:00:41.059 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:00:41.059 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:00:41.059 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 84 - 204 - - 194.2554ms +2021-09-02 17:00:41.135 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:00:41.136 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:00:41.136 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4959ms +2021-09-02 17:00:41.138 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:00:41.138 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:00:41.140 +08:00 [INF] Successfully validated the token. +2021-09-02 17:00:41.142 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:00:41.142 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:00:41.192 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:00:41.194 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 51.5898ms +2021-09-02 17:00:41.194 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:00:41.199 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:00:41.232 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:00:41.232 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:00:41.232 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 94.6851ms +2021-09-02 17:00:43.309 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:00:43.310 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:00:43.310 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.6991ms +2021-09-02 17:00:43.311 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:00:43.312 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:00:43.314 +08:00 [INF] Successfully validated the token. +2021-09-02 17:00:43.315 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:00:43.317 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:00:43.620 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:00:43.624 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 306.7009ms +2021-09-02 17:00:43.624 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:00:43.633 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:00:43.676 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:00:43.676 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:00:43.677 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 365.4589ms +2021-09-02 17:01:02.708 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - +2021-09-02 17:01:02.709 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:01:02.709 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - - 204 - - 0.5214ms +2021-09-02 17:01:02.711 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 67 +2021-09-02 17:01:02.711 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:01:02.714 +08:00 [INF] Successfully validated the token. +2021-09-02 17:01:02.715 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:01:02.715 +08:00 [INF] Route matched with {action = "Create", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Dtos.CreateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:01:41.094 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-02 17:01:45.807 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-02 17:01:45.924 +08:00 [INF] Loaded ABP modules: +2021-09-02 17:01:45.924 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-02 17:01:45.924 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-02 17:01:45.924 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-02 17:01:45.924 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-02 17:01:45.924 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-02 17:01:45.924 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-02 17:01:45.924 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-02 17:01:45.924 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-02 17:01:45.924 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-02 17:01:45.924 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-02 17:01:45.925 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-02 17:01:45.925 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-02 17:01:45.925 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-02 17:01:45.925 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-02 17:01:45.925 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-02 17:01:45.925 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-02 17:01:45.925 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-02 17:01:46.011 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-02 17:01:46.013 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-02 17:01:46.162 +08:00 [INF] DB tables already exist. Exit install +2021-09-02 17:01:46.190 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-02 17:01:46.190 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-02 17:01:46.190 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-02 17:01:46.190 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-02 17:01:46.216 +08:00 [DBG] Execution loop BackgroundServerProcess:dfbb7af5 has started in 6.5421 ms +2021-09-02 17:01:46.371 +08:00 [INF] Server szqh003802a:27012:f8dc69b0 successfully announced in 139.6745 ms +2021-09-02 17:01:46.384 +08:00 [INF] Server szqh003802a:27012:f8dc69b0 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-02 17:01:46.384 +08:00 [DBG] Execution loop ServerHeartbeatProcess:c4e337ac has started in 13.0136 ms +2021-09-02 17:01:46.388 +08:00 [DBG] Execution loop ServerWatchdog:e8a64c91 has started in 3.8234 ms +2021-09-02 17:01:46.390 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:997fb498 has started in 4.4942 ms +2021-09-02 17:01:46.403 +08:00 [DBG] Execution loop ExpirationManager:794adccd has started in 14.368 ms +2021-09-02 17:01:46.405 +08:00 [DBG] Execution loop CountersAggregator:f5781f21 has started in 11.9072 ms +2021-09-02 17:01:46.407 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 17:01:46.407 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 17:01:46.409 +08:00 [DBG] Execution loop Worker:14e6570b has started in 6.0133 ms +2021-09-02 17:01:46.413 +08:00 [DBG] Execution loop Worker:fda13f4b has started in 9.5026 ms +2021-09-02 17:01:46.418 +08:00 [DBG] Execution loop Worker:207e02dd has started in 11.798 ms +2021-09-02 17:01:46.425 +08:00 [DBG] Execution loop Worker:d432116f has started in 22.3622 ms +2021-09-02 17:01:46.434 +08:00 [DBG] Execution loop Worker:00565253 has started in 30.4753 ms +2021-09-02 17:01:46.435 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 17:01:46.439 +08:00 [DBG] Execution loop Worker:afd10996 has started in 36.0479 ms +2021-09-02 17:01:46.450 +08:00 [DBG] Execution loop Worker:85ba44d4 has started in 46.5359 ms +2021-09-02 17:01:46.451 +08:00 [INF] 1 servers were removed due to timeout +2021-09-02 17:01:46.455 +08:00 [DBG] Execution loop Worker:79e118a8 has started in 51.1602 ms +2021-09-02 17:01:46.464 +08:00 [DBG] Execution loop Worker:47401e21 has started in 61.36 ms +2021-09-02 17:01:46.470 +08:00 [DBG] Execution loop Worker:6cea240c has started in 66.5446 ms +2021-09-02 17:01:46.474 +08:00 [DBG] Execution loop Worker:d48361de has started in 70.4295 ms +2021-09-02 17:01:46.480 +08:00 [DBG] removed records count=0 +2021-09-02 17:01:46.483 +08:00 [DBG] Execution loop Worker:4cc1adcf has started in 80.3793 ms +2021-09-02 17:01:46.484 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 17:01:46.493 +08:00 [DBG] Execution loop Worker:ab4f8843 has started in 89.6619 ms +2021-09-02 17:01:46.499 +08:00 [DBG] Execution loop Worker:e4019527 has started in 96.3319 ms +2021-09-02 17:01:46.504 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 17:01:46.505 +08:00 [DBG] Execution loop Worker:eb1e54cd has started in 102.4312 ms +2021-09-02 17:01:46.510 +08:00 [DBG] Execution loop Worker:10f4545f has started in 107.513 ms +2021-09-02 17:01:46.516 +08:00 [DBG] Execution loop Worker:4393f489 has started in 112.1855 ms +2021-09-02 17:01:46.519 +08:00 [DBG] Execution loop Worker:93fc7c16 has started in 116.3176 ms +2021-09-02 17:01:46.529 +08:00 [DBG] Execution loop Worker:97080a4c has started in 125.5914 ms +2021-09-02 17:01:46.533 +08:00 [DBG] Execution loop Worker:63e2b54e has started in 130.5255 ms +2021-09-02 17:01:46.538 +08:00 [DBG] removed records count=0 +2021-09-02 17:01:46.556 +08:00 [INF] Server szqh003802a:27012:f8dc69b0 all the dispatchers started +2021-09-02 17:01:46.563 +08:00 [DBG] Execution loop DelayedJobScheduler:80d305f9 has started in 29.3952 ms +2021-09-02 17:01:46.567 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 17:01:46.585 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 17:01:46.586 +08:00 [DBG] Execution loop RecurringJobScheduler:2850cc9a has started in 47.7431 ms +2021-09-02 17:01:46.604 +08:00 [DBG] removed records count=0 +2021-09-02 17:01:46.648 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 17:01:46.650 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 17:01:46.668 +08:00 [DBG] removed records count=0 +2021-09-02 17:01:46.669 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 17:01:46.670 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 17:01:46.690 +08:00 [DBG] removed records count=0 +2021-09-02 17:01:47.115 +08:00 [INF] Initialized all ABP modules. +2021-09-02 17:01:47.187 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-02 17:01:47.188 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-02 17:01:47.188 +08:00 [INF] Hosting environment: Development +2021-09-02 17:01:47.188 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-02 17:01:47.471 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-02 17:01:49.094 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 17:01:49.153 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-02 17:01:49.184 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-02 17:01:49.191 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 34.3178ms +2021-09-02 17:01:49.191 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 17:01:49.210 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1739.3000ms +2021-09-02 17:01:49.225 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 17:01:49.280 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 54.5281ms +2021-09-02 17:01:49.440 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 17:01:49.808 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 367.8765ms +2021-09-02 17:02:00.548 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - +2021-09-02 17:02:00.554 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:02:00.560 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - - 204 - - 12.4129ms +2021-09-02 17:02:00.564 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 84 +2021-09-02 17:02:00.565 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:02:00.622 +08:00 [INF] Successfully validated the token. +2021-09-02 17:02:00.627 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:02:00.641 +08:00 [INF] Route matched with {action = "Create", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Dtos.CreateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:02:01.994 +08:00 [WRN] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "ApiResource已存在", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 17:02:01.995 +08:00 [WRN] ApiResource已存在 +Volo.Abp.UserFriendlyException: ApiResource已存在 + at CompanyName.ProjectName.IdentityServer.IdenityServerApiResourceManager.CreateAsync(Guid id, String name, String displayName, String description, Boolean enabled, String allowedAccessTokenSigningAlgorithms, Boolean showInDiscoveryDocument, String secret, CancellationToken cancellationToken) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Domain\IdentityServer\IdenityServerApiResourceManager.cs:line 67 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method1654(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 17:02:01.996 +08:00 [WRN] Code: +2021-09-02 17:02:01.996 +08:00 [WRN] Details: +2021-09-02 17:02:02.042 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 17:02:02.055 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 1414.3851ms +2021-09-02 17:02:02.056 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:02:02.133 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 17:02:02.351 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:02.351 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:02.356 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 84 - 500 - application/json;+charset=utf-8 1792.1548ms +2021-09-02 17:02:05.869 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - +2021-09-02 17:02:05.869 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:02:05.869 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - - 204 - - 0.4519ms +2021-09-02 17:02:05.872 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 87 +2021-09-02 17:02:05.872 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:02:05.875 +08:00 [INF] Successfully validated the token. +2021-09-02 17:02:05.876 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:02:05.877 +08:00 [INF] Route matched with {action = "Create", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Dtos.CreateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:02:10.466 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 4589.4842ms +2021-09-02 17:02:10.466 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:02:10.519 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:10.519 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:10.585 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:10.585 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:10.585 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 87 - 204 - - 4713.9696ms +2021-09-02 17:02:10.673 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:02:10.673 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:02:10.673 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4572ms +2021-09-02 17:02:10.675 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:02:10.675 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:02:10.678 +08:00 [INF] Successfully validated the token. +2021-09-02 17:02:10.679 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:02:10.682 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:02:11.159 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:02:11.170 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 487.3524ms +2021-09-02 17:02:11.170 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:02:11.173 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:11.215 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:11.215 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:11.215 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 540.4839ms +2021-09-02 17:02:14.261 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:02:14.262 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:02:14.262 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.6716ms +2021-09-02 17:02:14.264 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:02:14.264 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:02:14.266 +08:00 [INF] Successfully validated the token. +2021-09-02 17:02:14.268 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:02:14.270 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:02:14.568 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:02:14.569 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 298.7995ms +2021-09-02 17:02:14.569 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:02:14.577 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:14.610 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:14.610 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:14.611 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 347.2380ms +2021-09-02 17:02:16.458 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:02:38.924 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:02:38.924 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:02:38.925 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5839ms +2021-09-02 17:02:38.929 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:02:38.929 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:02:38.932 +08:00 [INF] Successfully validated the token. +2021-09-02 17:02:38.933 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:02:38.933 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:02:38.977 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:02:38.978 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.3716ms +2021-09-02 17:02:38.978 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:02:38.983 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:39.020 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:39.020 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:39.020 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 91.8008ms +2021-09-02 17:02:46.564 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:02:56.338 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:02:56.338 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:02:56.338 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.4545ms +2021-09-02 17:02:56.340 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:02:56.340 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:02:56.342 +08:00 [INF] Successfully validated the token. +2021-09-02 17:02:56.344 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:02:56.344 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:02:56.367 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:02:56.367 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 23.0351ms +2021-09-02 17:02:56.367 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:02:56.370 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:56.412 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:56.412 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:02:56.413 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 72.7840ms +2021-09-02 17:03:16.605 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:03:46.645 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:04:18.209 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:04:27.364 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 17:04:51.713 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 17:04:53.725 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:05:01.085 +08:00 [DBG] 360 recurring job(s) processed by scheduler. +2021-09-02 17:05:24.916 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:05:39.075 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:05:39.076 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:05:39.076 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.5045ms +2021-09-02 17:05:39.077 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:05:39.078 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:05:39.080 +08:00 [INF] Successfully validated the token. +2021-09-02 17:05:39.081 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:05:39.081 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:05:39.104 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:05:39.104 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 22.2505ms +2021-09-02 17:05:39.104 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:05:39.107 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:05:39.155 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:05:39.155 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:05:39.156 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 78.3260ms +2021-09-02 17:05:44.020 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:05:44.021 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:05:44.023 +08:00 [INF] Successfully validated the token. +2021-09-02 17:05:44.024 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:05:44.024 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:05:44.046 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:05:44.046 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 21.9792ms +2021-09-02 17:05:44.046 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:05:44.051 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:05:44.083 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:05:44.083 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:05:44.084 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 63.5360ms +2021-09-02 17:05:55.079 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:06:20.163 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:06:20.163 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:06:20.164 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6188ms +2021-09-02 17:06:20.166 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:06:20.167 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:06:20.171 +08:00 [INF] Successfully validated the token. +2021-09-02 17:06:20.173 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:06:20.173 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:06:20.233 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:06:20.234 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 60.0932ms +2021-09-02 17:06:20.234 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:06:20.241 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:20.284 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:20.284 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:20.284 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 118.1588ms +2021-09-02 17:06:22.092 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:06:22.093 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:06:22.093 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.4649ms +2021-09-02 17:06:22.096 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:06:22.096 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:06:22.099 +08:00 [INF] Successfully validated the token. +2021-09-02 17:06:22.102 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:06:22.102 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:06:22.129 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:06:22.129 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 26.9419ms +2021-09-02 17:06:22.129 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:06:22.133 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:22.171 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:22.171 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:22.172 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 76.3199ms +2021-09-02 17:06:26.702 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:06:38.330 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:06:38.330 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:06:38.330 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5766ms +2021-09-02 17:06:38.332 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:06:38.333 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:06:38.337 +08:00 [INF] Successfully validated the token. +2021-09-02 17:06:38.340 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:06:38.344 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:06:38.424 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:06:38.428 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 83.8391ms +2021-09-02 17:06:38.428 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:06:38.432 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:38.471 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:38.471 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:38.472 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 139.2910ms +2021-09-02 17:06:41.830 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 17:06:45.514 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/create - - +2021-09-02 17:06:45.514 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:06:45.514 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/create - - - 204 - - 0.7112ms +2021-09-02 17:06:45.517 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/create application/json 54 +2021-09-02 17:06:45.518 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:06:45.523 +08:00 [INF] Successfully validated the token. +2021-09-02 17:06:45.525 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:06:45.528 +08:00 [INF] Route matched with {action = "Create", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.CreateApiScopeInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:06:45.587 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.CreateAsync (CompanyName.ProjectName.HttpApi) in 59.269ms +2021-09-02 17:06:45.587 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:06:45.605 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:45.605 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:45.667 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:45.667 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:45.667 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/create application/json 54 - 204 - - 150.1340ms +2021-09-02 17:06:45.748 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:06:45.749 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:06:45.749 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.6423ms +2021-09-02 17:06:45.751 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:06:45.752 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:06:45.756 +08:00 [INF] Successfully validated the token. +2021-09-02 17:06:45.757 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:06:45.757 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:06:45.798 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:06:45.798 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.6672ms +2021-09-02 17:06:45.798 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:06:45.805 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:45.847 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:45.847 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:45.847 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 96.1281ms +2021-09-02 17:06:48.931 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:06:48.932 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:06:48.932 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.4783ms +2021-09-02 17:06:48.934 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:06:48.934 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:06:48.938 +08:00 [INF] Successfully validated the token. +2021-09-02 17:06:48.940 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:06:48.940 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:06:48.967 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:06:48.967 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 27.3084ms +2021-09-02 17:06:48.967 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:06:48.971 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:49.008 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:49.008 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:06:49.008 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 74.6312ms +2021-09-02 17:06:52.137 +08:00 [INF] 1 servers were removed due to timeout +2021-09-02 17:06:52.177 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 17:07:01.068 +08:00 [DBG] 780 recurring job(s) processed by scheduler. +2021-09-02 17:07:02.231 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:07:32.248 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:08:02.359 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:08:05.044 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:08:05.045 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:08:05.045 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.4488ms +2021-09-02 17:08:05.046 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:08:05.047 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:08:05.049 +08:00 [INF] Successfully validated the token. +2021-09-02 17:08:05.050 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:08:05.050 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:08:05.074 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:08:05.074 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 23.9517ms +2021-09-02 17:08:05.075 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:08:05.078 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:08:05.111 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:08:05.111 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:08:05.111 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 64.4918ms +2021-09-02 17:08:11.719 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:08:11.720 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:08:11.720 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5684ms +2021-09-02 17:08:11.723 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:08:11.723 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:08:11.726 +08:00 [INF] Successfully validated the token. +2021-09-02 17:08:11.728 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:08:11.729 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:08:11.788 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:08:11.789 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 59.6854ms +2021-09-02 17:08:11.789 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:08:11.793 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:08:11.834 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:08:11.834 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:08:11.835 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 112.0890ms +2021-09-02 17:08:13.148 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:08:13.148 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:08:13.148 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.4633ms +2021-09-02 17:08:13.150 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:08:13.150 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:08:13.152 +08:00 [INF] Successfully validated the token. +2021-09-02 17:08:13.154 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:08:13.154 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:08:13.178 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:08:13.178 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 24.5316ms +2021-09-02 17:08:13.179 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:08:13.182 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:08:13.257 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:08:13.258 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:08:13.258 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 108.3576ms +2021-09-02 17:08:35.213 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:08:40.656 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 17:08:43.470 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:08:43.471 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:08:43.471 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 1.1149ms +2021-09-02 17:08:43.473 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:08:43.474 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:08:43.477 +08:00 [INF] Successfully validated the token. +2021-09-02 17:08:43.479 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:08:43.479 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.Guid,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:08:43.509 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.Guid, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:08:43.509 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 30.2002ms +2021-09-02 17:08:43.509 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:08:43.515 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:08:43.552 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:08:43.552 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:08:43.553 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 79.4874ms +2021-09-02 17:09:01.069 +08:00 [DBG] 838 recurring job(s) processed by scheduler. +2021-09-02 17:09:09.299 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:09:20.865 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:09:20.865 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:09:20.865 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4942ms +2021-09-02 17:09:20.867 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:09:20.867 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:09:20.869 +08:00 [INF] Successfully validated the token. +2021-09-02 17:09:20.870 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:09:20.871 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:09:20.911 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:09:20.912 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 41.2868ms +2021-09-02 17:09:20.912 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:09:20.917 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:09:20.950 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:09:20.950 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:09:20.954 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 83.6250ms +2021-09-02 17:09:39.336 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:10:09.463 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:10:40.202 +08:00 [DBG] Server szqh003802a:27012:f8dc69b0 heartbeat successfully sent +2021-09-02 17:15:00.160 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-02 17:15:07.297 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-02 17:15:07.415 +08:00 [INF] Loaded ABP modules: +2021-09-02 17:15:07.415 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-02 17:15:07.415 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-02 17:15:07.415 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-02 17:15:07.415 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-02 17:15:07.415 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-02 17:15:07.416 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-02 17:15:07.416 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-02 17:15:07.416 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-02 17:15:07.416 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-02 17:15:07.416 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-02 17:15:07.416 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-02 17:15:07.416 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-02 17:15:07.416 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-02 17:15:07.416 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-02 17:15:07.416 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-02 17:15:07.416 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-02 17:15:07.416 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-02 17:15:07.501 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-02 17:15:07.504 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-02 17:15:07.650 +08:00 [INF] DB tables already exist. Exit install +2021-09-02 17:15:07.676 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-02 17:15:07.676 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-02 17:15:07.677 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-02 17:15:07.677 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-02 17:15:07.698 +08:00 [DBG] Execution loop BackgroundServerProcess:f523fbe0 has started in 6.4732 ms +2021-09-02 17:15:07.828 +08:00 [INF] Server szqh003802a:17916:a0ff428a successfully announced in 116.9488 ms +2021-09-02 17:15:07.832 +08:00 [INF] Server szqh003802a:17916:a0ff428a is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-02 17:15:07.833 +08:00 [DBG] Execution loop ServerHeartbeatProcess:e4e3c30d has started in 3.4886 ms +2021-09-02 17:15:07.836 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:6251fcdf has started in 3.0821 ms +2021-09-02 17:15:07.836 +08:00 [DBG] Execution loop ServerWatchdog:36528891 has started in 4.1215 ms +2021-09-02 17:15:07.839 +08:00 [DBG] Execution loop ExpirationManager:481fe1fe has started in 3.868 ms +2021-09-02 17:15:07.841 +08:00 [DBG] Execution loop CountersAggregator:5fd4a9e7 has started in 4.1471 ms +2021-09-02 17:15:07.843 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 17:15:07.843 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 17:15:07.844 +08:00 [DBG] Execution loop Worker:3895bf9a has started in 5.7351 ms +2021-09-02 17:15:07.846 +08:00 [DBG] Execution loop Worker:e1d006de has started in 7.1762 ms +2021-09-02 17:15:07.849 +08:00 [DBG] Execution loop Worker:6a213434 has started in 10.7042 ms +2021-09-02 17:15:07.850 +08:00 [DBG] Execution loop Worker:c945eb80 has started in 11.7308 ms +2021-09-02 17:15:07.853 +08:00 [DBG] Execution loop Worker:5e9a45f4 has started in 14.4981 ms +2021-09-02 17:15:07.858 +08:00 [DBG] Execution loop Worker:231f2751 has started in 19.1096 ms +2021-09-02 17:15:07.860 +08:00 [DBG] Execution loop Worker:cec25ee4 has started in 21.5314 ms +2021-09-02 17:15:07.863 +08:00 [DBG] Execution loop Worker:ec36a26a has started in 24.8768 ms +2021-09-02 17:15:07.864 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 17:15:07.869 +08:00 [DBG] Execution loop Worker:f520a417 has started in 30.4225 ms +2021-09-02 17:15:07.873 +08:00 [DBG] Execution loop Worker:d5fe9a20 has started in 34.4392 ms +2021-09-02 17:15:07.878 +08:00 [DBG] Execution loop Worker:220e140c has started in 39.5385 ms +2021-09-02 17:15:07.884 +08:00 [DBG] Execution loop Worker:c476a8fe has started in 45.6828 ms +2021-09-02 17:15:07.895 +08:00 [DBG] Execution loop Worker:759cb147 has started in 56.5275 ms +2021-09-02 17:15:07.895 +08:00 [DBG] Execution loop Worker:4b53da55 has started in 56.55 ms +2021-09-02 17:15:07.903 +08:00 [DBG] Execution loop Worker:bc6e0e2d has started in 64.348 ms +2021-09-02 17:15:07.907 +08:00 [DBG] Execution loop Worker:7e052395 has started in 68.6834 ms +2021-09-02 17:15:07.911 +08:00 [DBG] Execution loop Worker:a3902505 has started in 72.589 ms +2021-09-02 17:15:07.912 +08:00 [DBG] removed records count=0 +2021-09-02 17:15:07.916 +08:00 [DBG] Execution loop Worker:1f247d6a has started in 77.899 ms +2021-09-02 17:15:07.916 +08:00 [DBG] Execution loop Worker:67e94047 has started in 77.9001 ms +2021-09-02 17:15:07.921 +08:00 [DBG] Execution loop Worker:a55a99e4 has started in 82.497 ms +2021-09-02 17:15:07.924 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 17:15:07.928 +08:00 [INF] Server szqh003802a:17916:a0ff428a all the dispatchers started +2021-09-02 17:15:07.928 +08:00 [DBG] Execution loop DelayedJobScheduler:b4cf89e6 has started in 12.614 ms +2021-09-02 17:15:07.940 +08:00 [DBG] Execution loop RecurringJobScheduler:8ff7fef3 has started in 15.8186 ms +2021-09-02 17:15:07.964 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 17:15:07.991 +08:00 [DBG] removed records count=0 +2021-09-02 17:15:08.029 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 17:15:08.032 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 17:15:08.048 +08:00 [DBG] removed records count=0 +2021-09-02 17:15:08.051 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 17:15:08.053 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 17:15:08.074 +08:00 [DBG] removed records count=0 +2021-09-02 17:15:08.083 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 17:15:08.085 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 17:15:08.097 +08:00 [DBG] removed records count=0 +2021-09-02 17:15:08.311 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 17:15:08.471 +08:00 [INF] Initialized all ABP modules. +2021-09-02 17:15:08.543 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-02 17:15:08.543 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-02 17:15:08.544 +08:00 [INF] Hosting environment: Development +2021-09-02 17:15:08.544 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-02 17:15:08.805 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-02 17:15:10.505 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 17:15:10.563 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-02 17:15:10.596 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-02 17:15:10.603 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 35.9259ms +2021-09-02 17:15:10.603 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 17:15:10.625 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1820.2674ms +2021-09-02 17:15:10.643 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 17:15:10.701 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 58.2926ms +2021-09-02 17:15:10.858 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 17:15:11.244 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 385.8401ms +2021-09-02 17:15:33.280 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 17:15:33.494 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 214.5848ms +2021-09-02 17:15:37.873 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:15:55.447 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:15:55.454 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:15:55.460 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 13.2739ms +2021-09-02 17:15:55.464 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:15:55.465 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:15:55.538 +08:00 [INF] Successfully validated the token. +2021-09-02 17:15:55.545 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:15:55.562 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:15:56.957 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:15:56.985 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1422.2425ms +2021-09-02 17:15:56.985 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:15:57.014 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:15:57.243 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:15:57.243 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:15:57.247 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 1784.2537ms +2021-09-02 17:16:07.932 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:16:08.563 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:16:08.564 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:16:08.564 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.7548ms +2021-09-02 17:16:08.565 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:16:08.566 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:16:08.569 +08:00 [INF] Successfully validated the token. +2021-09-02 17:16:08.570 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:16:08.572 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:16:08.872 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:16:08.877 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 304.3683ms +2021-09-02 17:16:08.877 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:16:08.886 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:16:08.919 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:16:08.919 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:16:08.920 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 354.4533ms +2021-09-02 17:16:37.960 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:16:39.092 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:16:39.092 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:16:39.093 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5314ms +2021-09-02 17:16:39.094 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:16:39.095 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:16:39.097 +08:00 [INF] Successfully validated the token. +2021-09-02 17:16:39.098 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:16:39.099 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:16:39.144 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:16:39.144 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 45.2861ms +2021-09-02 17:16:39.144 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:16:39.149 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:16:39.189 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:16:39.190 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:16:39.190 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 95.6141ms +2021-09-02 17:16:51.129 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:16:51.129 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:16:51.129 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4662ms +2021-09-02 17:16:51.131 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:16:51.131 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:16:51.134 +08:00 [INF] Successfully validated the token. +2021-09-02 17:16:51.136 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:16:51.138 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:16:51.196 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:16:51.198 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 59.4175ms +2021-09-02 17:16:51.198 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:16:51.201 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:16:51.231 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:16:51.231 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:16:51.231 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 100.2879ms +2021-09-02 17:17:01.062 +08:00 [DBG] 304 recurring job(s) processed by scheduler. +2021-09-02 17:17:09.322 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:17:16.972 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:17:16.972 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:17:16.972 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.4242ms +2021-09-02 17:17:16.974 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:17:16.974 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:17:16.976 +08:00 [INF] Successfully validated the token. +2021-09-02 17:17:16.977 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:17:16.978 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:17:17.001 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:17:17.001 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 23.2656ms +2021-09-02 17:17:17.001 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:17:17.005 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:17:17.042 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:17:17.042 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:17:17.042 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 68.6776ms +2021-09-02 17:17:21.816 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:17:21.816 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:17:21.816 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5071ms +2021-09-02 17:17:21.818 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:17:21.818 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:17:21.821 +08:00 [INF] Successfully validated the token. +2021-09-02 17:17:21.823 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:17:21.823 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:17:21.863 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:17:21.863 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.9266ms +2021-09-02 17:17:21.863 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:17:21.867 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:17:21.908 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:17:21.908 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:17:21.908 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 90.3596ms +2021-09-02 17:17:30.237 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:17:30.237 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:17:30.238 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4583ms +2021-09-02 17:17:30.239 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:17:30.239 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:17:30.242 +08:00 [INF] Successfully validated the token. +2021-09-02 17:17:30.243 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:17:30.243 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:17:30.282 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:17:30.282 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.3829ms +2021-09-02 17:17:30.282 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:17:30.286 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:17:30.328 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:17:30.328 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:17:30.329 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 89.4917ms +2021-09-02 17:17:39.344 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:18:02.255 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - +2021-09-02 17:18:02.256 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:18:02.256 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - - 204 - - 0.4536ms +2021-09-02 17:18:02.258 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 81 +2021-09-02 17:18:02.258 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:18:02.260 +08:00 [INF] Successfully validated the token. +2021-09-02 17:18:02.262 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:18:02.264 +08:00 [INF] Route matched with {action = "Create", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Dtos.CreateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:18:02.327 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 63.6465ms +2021-09-02 17:18:02.328 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:18:02.372 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:18:02.372 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:18:02.435 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:18:02.435 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:18:02.435 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 81 - 204 - - 177.7655ms +2021-09-02 17:18:02.512 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:18:02.513 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:18:02.513 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4732ms +2021-09-02 17:18:02.514 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:18:02.515 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:18:02.517 +08:00 [INF] Successfully validated the token. +2021-09-02 17:18:02.518 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:18:02.519 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:18:02.561 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:18:02.562 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 43.2089ms +2021-09-02 17:18:02.562 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:18:02.566 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:18:02.598 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:18:02.599 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:18:02.599 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 84.2899ms +2021-09-02 17:18:08.991 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:18:08.991 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:18:08.991 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5418ms +2021-09-02 17:18:08.993 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:18:08.993 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:18:08.995 +08:00 [INF] Successfully validated the token. +2021-09-02 17:18:08.997 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:18:08.997 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:18:09.036 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:18:09.037 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 39.2681ms +2021-09-02 17:18:09.037 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:18:09.041 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:18:09.081 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:18:09.081 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:18:09.081 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 88.3869ms +2021-09-02 17:18:09.448 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:18:39.528 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:19:01.729 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 17:19:09.661 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:19:39.791 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:20:07.866 +08:00 [INF] 1 servers were removed due to timeout +2021-09-02 17:20:07.890 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 17:20:09.818 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:20:11.510 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - +2021-09-02 17:20:11.510 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:20:11.510 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/create - - - 204 - - 0.5094ms +2021-09-02 17:20:11.513 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 70 +2021-09-02 17:20:11.513 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:20:11.517 +08:00 [INF] Successfully validated the token. +2021-09-02 17:20:11.520 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:20:11.520 +08:00 [INF] Route matched with {action = "Create", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.Dtos.CreateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:21:05.404 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 53884.7666ms +2021-09-02 17:21:05.404 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:21:05.426 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:21:05.594 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:21:05.594 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:21:05.645 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:21:05.645 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:21:05.645 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/create application/json 70 - 204 - - 54134.2456ms +2021-09-02 17:21:05.792 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:21:05.792 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:21:05.792 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4524ms +2021-09-02 17:21:05.796 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:21:05.796 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:21:05.801 +08:00 [INF] Successfully validated the token. +2021-09-02 17:21:05.803 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:21:05.803 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:21:05.865 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:21:05.870 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 66.822ms +2021-09-02 17:21:05.870 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:21:05.878 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:21:05.921 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:21:05.921 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:21:05.921 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 125.5441ms +2021-09-02 17:21:32.094 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 17:21:37.302 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:21:40.575 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:21:40.576 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:21:40.576 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5978ms +2021-09-02 17:21:40.578 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:21:40.579 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:21:40.581 +08:00 [INF] Successfully validated the token. +2021-09-02 17:21:40.583 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:21:40.583 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:21:40.651 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:21:40.652 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 69.2143ms +2021-09-02 17:21:40.652 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:21:40.660 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:21:40.725 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:21:40.725 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:21:40.726 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 147.6548ms +2021-09-02 17:22:00.581 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:22:00.582 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:22:00.582 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 1.2734ms +2021-09-02 17:22:00.585 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:22:00.585 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:22:00.589 +08:00 [INF] Successfully validated the token. +2021-09-02 17:22:00.591 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:22:00.591 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:22:00.643 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:22:00.644 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.2352ms +2021-09-02 17:22:00.644 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:22:00.648 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:00.687 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:00.687 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:00.687 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 102.8615ms +2021-09-02 17:22:01.082 +08:00 [DBG] 957 recurring job(s) processed by scheduler. +2021-09-02 17:22:08.734 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:22:13.532 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:22:13.532 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:22:13.532 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4816ms +2021-09-02 17:22:13.534 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:22:13.534 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:22:13.537 +08:00 [INF] Successfully validated the token. +2021-09-02 17:22:13.538 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:22:13.538 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:22:13.585 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:22:13.586 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 47.8237ms +2021-09-02 17:22:13.586 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:22:13.593 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:13.632 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:13.632 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:13.632 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 98.1637ms +2021-09-02 17:22:19.693 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:22:19.693 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:22:19.693 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6441ms +2021-09-02 17:22:19.697 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:22:19.697 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:22:19.701 +08:00 [INF] Successfully validated the token. +2021-09-02 17:22:19.703 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:22:19.704 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:22:19.753 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:22:19.753 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 49.683ms +2021-09-02 17:22:19.753 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:22:19.760 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:19.815 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:19.815 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:19.816 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 118.6484ms +2021-09-02 17:22:23.555 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:22:23.555 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:22:23.558 +08:00 [INF] Successfully validated the token. +2021-09-02 17:22:23.560 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:22:23.561 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:22:23.605 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:22:23.605 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.7293ms +2021-09-02 17:22:23.605 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:22:23.610 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:23.641 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:23.641 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:23.642 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 87.1154ms +2021-09-02 17:22:27.695 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:22:27.695 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:22:27.695 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6496ms +2021-09-02 17:22:27.699 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:22:27.700 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:22:27.703 +08:00 [INF] Successfully validated the token. +2021-09-02 17:22:27.705 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:22:27.705 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:22:27.749 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:22:27.749 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 43.9576ms +2021-09-02 17:22:27.749 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:22:27.754 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:27.792 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:27.793 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:27.793 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 93.4620ms +2021-09-02 17:22:38.838 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:22:41.547 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:22:41.548 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:22:41.548 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4682ms +2021-09-02 17:22:41.550 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:22:41.550 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:22:41.552 +08:00 [INF] Successfully validated the token. +2021-09-02 17:22:41.554 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:22:41.555 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:22:42.001 +08:00 [ERR] Failed executing DbCommand (367ms) [Parameters=[@__ef_filter__p_0='?' (DbType = Boolean), @__p_1='?' (DbType = Int32), @__p_0='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30'] +SELECT `i0`.`ApiResourceId`, `i0`.`Type`, `i0`.`Value`, `i0`.`Description`, `i0`.`Expiration`, `t`.`Id` +FROM ( + SELECT `i`.`Id`, `i`.`CreationTime` + FROM `IdentityServerApiResources` AS `i` + WHERE @__ef_filter__p_0 OR NOT (`i`.`IsDeleted`) + ORDER BY `i`.`CreationTime` DESC + LIMIT @__p_1 OFFSET @__p_0 +) AS `t` +INNER JOIN `IdentityServerApiResourceSecrets` AS `i0` ON `t`.`Id` = `i0`.`ApiResourceId` +ORDER BY `t`.`CreationTime` DESC, `t`.`Id` +2021-09-02 17:22:42.123 +08:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.IdentityServer.EntityFrameworkCore.IdentityServerDbContext'. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.<>c__DisplayClass63_0`2.<g__InitializeReaderAsync|0>d.MoveNext() +--- End of stack trace from previous location --- + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.PopulateSplitIncludeCollectionAsync[TIncludingEntity,TIncludedEntity](Int32 collectionId, RelationalQueryContext queryContext, IExecutionStrategy executionStrategy, Boolean detailedErrorsEnabled, SplitQueryResultCoordinator resultCoordinator, RelationalCommandCache relationalCommandCache, Func`3 childIdentifier, IReadOnlyList`1 identifierValueComparers, Func`5 innerShaper, Func`4 relatedDataLoaders, INavigationBase inverseNavigation, Action`2 fixup, Boolean trackingQuery) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.TaskAwaiter(Func`1[] taskFactories) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.<>c__DisplayClass63_0`2.<g__InitializeReaderAsync|0>d.MoveNext() +--- End of stack trace from previous location --- + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.PopulateSplitIncludeCollectionAsync[TIncludingEntity,TIncludedEntity](Int32 collectionId, RelationalQueryContext queryContext, IExecutionStrategy executionStrategy, Boolean detailedErrorsEnabled, SplitQueryResultCoordinator resultCoordinator, RelationalCommandCache relationalCommandCache, Func`3 childIdentifier, IReadOnlyList`1 identifierValueComparers, Func`5 innerShaper, Func`4 relatedDataLoaders, INavigationBase inverseNavigation, Action`2 fixup, Boolean trackingQuery) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.TaskAwaiter(Func`1[] taskFactories) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +2021-09-02 17:22:43.177 +08:00 [ERR] An error occurred using a transaction. +2021-09-02 17:22:43.207 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 17:22:43.208 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.<>c__DisplayClass63_0`2.<g__InitializeReaderAsync|0>d.MoveNext() +--- End of stack trace from previous location --- + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.PopulateSplitIncludeCollectionAsync[TIncludingEntity,TIncludedEntity](Int32 collectionId, RelationalQueryContext queryContext, IExecutionStrategy executionStrategy, Boolean detailedErrorsEnabled, SplitQueryResultCoordinator resultCoordinator, RelationalCommandCache relationalCommandCache, Func`3 childIdentifier, IReadOnlyList`1 identifierValueComparers, Func`5 innerShaper, Func`4 relatedDataLoaders, INavigationBase inverseNavigation, Action`2 fixup, Boolean trackingQuery) + at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.TaskAwaiter(Func`1[] taskFactories) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.IdentityServer.ApiResources.ApiResourceRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.ApiResources.ApiResourceAppService.GetListAsync(PagingApiRseourceListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\ApiResources\ApiResourceAppService.cs:line 22 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method1656(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 17:22:43.212 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 17:22:43.214 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1659.3095ms +2021-09-02 17:22:43.214 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:22:43.284 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:43.284 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:22:43.284 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 500 - application/json;+charset=utf-8 1734.7418ms +2021-09-02 17:23:08.858 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:23:09.534 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:23:09.534 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:23:09.534 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5191ms +2021-09-02 17:23:09.536 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:23:09.537 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:23:09.539 +08:00 [INF] Successfully validated the token. +2021-09-02 17:23:09.540 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:23:09.540 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:23:09.580 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:23:09.581 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.5132ms +2021-09-02 17:23:09.581 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:23:09.585 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:23:09.625 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:23:09.625 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:23:09.625 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 88.4873ms +2021-09-02 17:23:16.565 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:23:16.565 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:23:16.565 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4742ms +2021-09-02 17:23:16.567 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:23:16.568 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:23:16.572 +08:00 [INF] Successfully validated the token. +2021-09-02 17:23:16.573 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:23:16.574 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:23:16.624 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:23:16.625 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 50.9762ms +2021-09-02 17:23:16.625 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:23:16.632 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:23:16.667 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:23:16.667 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:23:16.667 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 99.9001ms +2021-09-02 17:23:28.581 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:23:28.582 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:23:28.582 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.8601ms +2021-09-02 17:23:28.585 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:23:28.585 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:23:28.591 +08:00 [INF] Successfully validated the token. +2021-09-02 17:23:28.592 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:23:28.592 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:23:28.645 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:23:28.646 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 53.0474ms +2021-09-02 17:23:28.646 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:23:28.652 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:23:28.690 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:23:28.690 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:23:28.691 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 106.1958ms +2021-09-02 17:23:42.124 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 17:23:43.382 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:24:01.080 +08:00 [DBG] 764 recurring job(s) processed by scheduler. +2021-09-02 17:24:16.395 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:24:46.464 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:25:07.959 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 17:25:16.539 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:25:19.375 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:25:19.375 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:25:19.375 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.4735ms +2021-09-02 17:25:19.377 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:25:19.377 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:25:19.379 +08:00 [INF] Successfully validated the token. +2021-09-02 17:25:19.381 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:25:19.381 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:25:19.402 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:25:19.402 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 21.5726ms +2021-09-02 17:25:19.402 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:25:19.406 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:25:19.438 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:25:19.438 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:25:19.438 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 61.5155ms +2021-09-02 17:25:22.490 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:25:22.490 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:25:22.490 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 0.4743ms +2021-09-02 17:25:22.492 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 176 +2021-09-02 17:25:22.492 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:25:22.495 +08:00 [INF] Successfully validated the token. +2021-09-02 17:25:22.496 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:25:22.499 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:25:22.657 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 17:25:22.657 +08:00 [ERR] Value cannot be null. (Parameter 'source') +System.ArgumentNullException: Value cannot be null. (Parameter 'source') + at System.Linq.ThrowHelper.ThrowArgumentNullException(ExceptionArgument argument) + at System.Linq.Enumerable.Any[TSource](IEnumerable`1 source, Func`2 predicate) + at CompanyName.ProjectName.IdentityServer.IdenityServerApiResourceManager.UpdateAsync(String name, String displayName, String description, Boolean enabled, String allowedAccessTokenSigningAlgorithms, Boolean showInDiscoveryDocument, String secret, List`1 scopes, CancellationToken cancellationToken) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Domain\IdentityServer\IdenityServerApiResourceManager.cs:line 122 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method2943(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 17:25:22.657 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 17:25:22.658 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 158.708ms +2021-09-02 17:25:22.658 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:25:22.691 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:25:22.691 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:25:22.691 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 176 - 500 - application/json;+charset=utf-8 199.1828ms +2021-09-02 17:25:22.799 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:25:22.799 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:25:22.800 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4726ms +2021-09-02 17:25:22.801 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:25:22.801 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:25:22.804 +08:00 [INF] Successfully validated the token. +2021-09-02 17:25:22.805 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:25:22.806 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:25:22.846 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:25:22.846 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 40.6487ms +2021-09-02 17:25:22.846 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:25:22.851 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:25:22.881 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:25:22.882 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:25:22.882 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 80.7406ms +2021-09-02 17:25:49.556 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:25:55.842 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 17:26:01.068 +08:00 [DBG] 212 recurring job(s) processed by scheduler. +2021-09-02 17:26:18.245 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:26:18.245 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:26:18.245 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 0.4636ms +2021-09-02 17:26:18.247 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 176 +2021-09-02 17:26:18.247 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:26:18.250 +08:00 [INF] Successfully validated the token. +2021-09-02 17:26:18.251 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:26:18.251 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:26:35.290 +08:00 [DBG] Server szqh003802a:17916:a0ff428a heartbeat successfully sent +2021-09-02 17:27:07.971 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-02 17:27:12.631 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-02 17:27:12.751 +08:00 [INF] Loaded ABP modules: +2021-09-02 17:27:12.751 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-02 17:27:12.751 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-02 17:27:12.751 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-02 17:27:12.751 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-02 17:27:12.751 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-02 17:27:12.752 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-02 17:27:12.752 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-02 17:27:12.752 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-02 17:27:12.752 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-02 17:27:12.752 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-02 17:27:12.752 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-02 17:27:12.752 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-02 17:27:12.752 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-02 17:27:12.752 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-02 17:27:12.752 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-02 17:27:12.752 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-02 17:27:12.752 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-02 17:27:12.836 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-02 17:27:12.839 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-02 17:27:12.982 +08:00 [INF] DB tables already exist. Exit install +2021-09-02 17:27:13.006 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-02 17:27:13.006 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-02 17:27:13.006 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-02 17:27:13.006 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-02 17:27:13.028 +08:00 [DBG] Execution loop BackgroundServerProcess:34df8a03 has started in 5.3301 ms +2021-09-02 17:27:13.182 +08:00 [INF] Server szqh003802a:27776:9da8f6ad successfully announced in 109.752 ms +2021-09-02 17:27:13.192 +08:00 [INF] Server szqh003802a:27776:9da8f6ad is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-02 17:27:13.193 +08:00 [DBG] Execution loop ServerHeartbeatProcess:b8d98fac has started in 8.8047 ms +2021-09-02 17:27:13.196 +08:00 [DBG] Execution loop ServerWatchdog:23c33112 has started in 2.795 ms +2021-09-02 17:27:13.199 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:47091630 has started in 5.8611 ms +2021-09-02 17:27:13.229 +08:00 [DBG] Execution loop ExpirationManager:f5675f3e has started in 33.1739 ms +2021-09-02 17:27:13.229 +08:00 [DBG] Execution loop CountersAggregator:8fe17edb has started in 24 ms +2021-09-02 17:27:13.232 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 17:27:13.232 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 17:27:13.233 +08:00 [DBG] Execution loop Worker:dfbafb8f has started in 3.794 ms +2021-09-02 17:27:13.233 +08:00 [DBG] Execution loop Worker:4a8b632a has started in 3.8185 ms +2021-09-02 17:27:13.237 +08:00 [DBG] Execution loop Worker:ce38524e has started in 7.2153 ms +2021-09-02 17:27:13.238 +08:00 [DBG] Execution loop Worker:237f57c3 has started in 8.325 ms +2021-09-02 17:27:13.240 +08:00 [DBG] Execution loop Worker:a52e34d1 has started in 10.6381 ms +2021-09-02 17:27:13.243 +08:00 [DBG] Execution loop Worker:a8ecdc6e has started in 13.791 ms +2021-09-02 17:27:13.245 +08:00 [DBG] Execution loop Worker:abd7732e has started in 15.8029 ms +2021-09-02 17:27:13.246 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 17:27:13.247 +08:00 [DBG] Execution loop Worker:a8c049d5 has started in 17.8943 ms +2021-09-02 17:27:13.250 +08:00 [DBG] Execution loop Worker:d3fc25ce has started in 20.6378 ms +2021-09-02 17:27:13.252 +08:00 [DBG] Execution loop Worker:db26dd9f has started in 22.6283 ms +2021-09-02 17:27:13.255 +08:00 [DBG] Execution loop Worker:5ea2be09 has started in 24.559 ms +2021-09-02 17:27:13.259 +08:00 [DBG] Execution loop Worker:e6282eba has started in 30.0392 ms +2021-09-02 17:27:13.259 +08:00 [DBG] Execution loop Worker:d76c9e87 has started in 30.0599 ms +2021-09-02 17:27:13.264 +08:00 [DBG] Execution loop Worker:c85fbc82 has started in 34.5027 ms +2021-09-02 17:27:13.274 +08:00 [DBG] Execution loop Worker:18010f59 has started in 43.8866 ms +2021-09-02 17:27:13.279 +08:00 [DBG] Execution loop Worker:89908b7f has started in 49.9175 ms +2021-09-02 17:27:13.290 +08:00 [DBG] removed records count=0 +2021-09-02 17:27:13.290 +08:00 [DBG] Execution loop Worker:5963043e has started in 60.6607 ms +2021-09-02 17:27:13.294 +08:00 [DBG] Execution loop Worker:26de6305 has started in 63.1966 ms +2021-09-02 17:27:13.300 +08:00 [DBG] Execution loop Worker:7a800041 has started in 70.3827 ms +2021-09-02 17:27:13.307 +08:00 [DBG] Execution loop Worker:1423c6a0 has started in 77.7317 ms +2021-09-02 17:27:13.310 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 17:27:13.318 +08:00 [DBG] Execution loop DelayedJobScheduler:555a4c84 has started in 12.5322 ms +2021-09-02 17:27:13.318 +08:00 [INF] Server szqh003802a:27776:9da8f6ad all the dispatchers started +2021-09-02 17:27:13.324 +08:00 [DBG] Execution loop RecurringJobScheduler:ea47724e has started in 11.7131 ms +2021-09-02 17:27:13.346 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 17:27:13.371 +08:00 [DBG] removed records count=0 +2021-09-02 17:27:13.412 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 17:27:13.414 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 17:27:13.431 +08:00 [DBG] removed records count=0 +2021-09-02 17:27:13.445 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 17:27:13.447 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 17:27:13.464 +08:00 [DBG] removed records count=0 +2021-09-02 17:27:13.472 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 17:27:13.474 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 17:27:13.484 +08:00 [DBG] removed records count=0 +2021-09-02 17:27:13.884 +08:00 [INF] Initialized all ABP modules. +2021-09-02 17:27:13.956 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-02 17:27:13.957 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-02 17:27:13.957 +08:00 [INF] Hosting environment: Development +2021-09-02 17:27:13.957 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-02 17:27:14.424 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-02 17:27:16.223 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 17:27:16.284 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-02 17:27:16.319 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-02 17:27:16.325 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 37.1507ms +2021-09-02 17:27:16.325 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 17:27:16.345 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1923.5018ms +2021-09-02 17:27:16.361 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 17:27:16.416 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 55.2592ms +2021-09-02 17:27:16.594 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 17:27:16.943 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 348.8129ms +2021-09-02 17:27:17.458 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:27:17.463 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:27:17.469 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 11.2159ms +2021-09-02 17:27:17.471 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 176 +2021-09-02 17:27:17.473 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:27:17.535 +08:00 [INF] Successfully validated the token. +2021-09-02 17:27:17.541 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:27:17.559 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:27:54.331 +08:00 [DBG] Server szqh003802a:27776:9da8f6ad heartbeat successfully sent +2021-09-02 17:27:54.382 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 36819.5061ms +2021-09-02 17:27:54.385 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:27:54.558 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:27:54.558 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:27:54.816 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:27:54.816 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:27:54.821 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 176 - 204 - - 37350.0210ms +2021-09-02 17:27:54.904 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:27:54.904 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:27:54.904 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.6011ms +2021-09-02 17:27:54.906 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:27:54.907 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:27:54.911 +08:00 [INF] Successfully validated the token. +2021-09-02 17:27:54.913 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:27:54.917 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:27:55.634 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:27:55.665 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 747.7337ms +2021-09-02 17:27:55.665 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:27:55.671 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:27:55.710 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:27:55.710 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:27:55.711 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 804.5561ms +2021-09-02 17:28:00.155 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:28:00.155 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:00.156 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.7223ms +2021-09-02 17:28:00.158 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:28:00.158 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:00.161 +08:00 [INF] Successfully validated the token. +2021-09-02 17:28:00.163 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:00.167 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:28:00.672 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:28:00.678 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 511.1726ms +2021-09-02 17:28:00.678 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:00.693 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:00.733 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:00.733 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:00.733 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 575.5966ms +2021-09-02 17:28:01.075 +08:00 [DBG] 233 recurring job(s) processed by scheduler. +2021-09-02 17:28:04.816 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:28:04.817 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:04.817 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4827ms +2021-09-02 17:28:04.818 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:28:04.819 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:04.821 +08:00 [INF] Successfully validated the token. +2021-09-02 17:28:04.822 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:04.822 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:28:04.865 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:28:04.865 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.862ms +2021-09-02 17:28:04.865 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:04.870 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:04.904 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:04.905 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:04.905 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 86.5090ms +2021-09-02 17:28:06.061 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:28:06.061 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:06.061 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.4588ms +2021-09-02 17:28:06.063 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:28:06.063 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:06.066 +08:00 [INF] Successfully validated the token. +2021-09-02 17:28:06.067 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:06.067 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:28:06.090 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:28:06.090 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 22.8788ms +2021-09-02 17:28:06.090 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:06.093 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:06.123 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:06.124 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:06.124 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 60.5900ms +2021-09-02 17:28:15.370 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:28:15.371 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:15.371 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.4669ms +2021-09-02 17:28:15.372 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:28:15.373 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:15.375 +08:00 [INF] Successfully validated the token. +2021-09-02 17:28:15.376 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:15.376 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:28:15.400 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:28:15.400 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 23.7986ms +2021-09-02 17:28:15.400 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:15.404 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:15.446 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:15.446 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:15.446 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 73.8978ms +2021-09-02 17:28:17.874 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:28:17.874 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:17.874 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 0.4781ms +2021-09-02 17:28:17.876 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 190 +2021-09-02 17:28:17.876 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:17.878 +08:00 [INF] Successfully validated the token. +2021-09-02 17:28:17.880 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:17.880 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:28:28.196 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-02 17:28:29.878 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-02 17:28:29.935 +08:00 [INF] Loaded ABP modules: +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-02 17:28:29.935 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-02 17:28:29.935 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-02 17:28:29.990 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-02 17:28:29.994 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-02 17:28:30.161 +08:00 [INF] DB tables already exist. Exit install +2021-09-02 17:28:30.189 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-02 17:28:30.189 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-02 17:28:30.189 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-02 17:28:30.189 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-02 17:28:30.198 +08:00 [DBG] Execution loop BackgroundServerProcess:48315081 has started in 3.3275 ms +2021-09-02 17:28:30.336 +08:00 [INF] Server szqh003802a:37192:ee00c5ea successfully announced in 135.585 ms +2021-09-02 17:28:30.338 +08:00 [DBG] Execution loop ServerHeartbeatProcess:7d90f538 has started in 1.6666 ms +2021-09-02 17:28:30.339 +08:00 [INF] Server szqh003802a:37192:ee00c5ea is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-02 17:28:30.340 +08:00 [DBG] Execution loop ServerWatchdog:2f76a227 has started in 0.3912 ms +2021-09-02 17:28:30.340 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:3c0425c6 has started in 0.2656 ms +2021-09-02 17:28:30.341 +08:00 [DBG] Execution loop ExpirationManager:39d5173a has started in 0.4329 ms +2021-09-02 17:28:30.341 +08:00 [DBG] Execution loop CountersAggregator:d1a435dc has started in 0.239 ms +2021-09-02 17:28:30.341 +08:00 [DBG] Execution loop Worker:1ae18c45 has started in 0.3868 ms +2021-09-02 17:28:30.341 +08:00 [DBG] Execution loop Worker:d1ccefea has started in 0.714 ms +2021-09-02 17:28:30.341 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 17:28:30.342 +08:00 [DBG] Execution loop Worker:99395fda has started in 0.9531 ms +2021-09-02 17:28:30.342 +08:00 [DBG] Execution loop Worker:e73acf2a has started in 1.2975 ms +2021-09-02 17:28:30.342 +08:00 [DBG] Execution loop Worker:81f7ac0a has started in 1.493 ms +2021-09-02 17:28:30.342 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 17:28:30.343 +08:00 [DBG] Execution loop Worker:72e5aa52 has started in 1.8276 ms +2021-09-02 17:28:30.343 +08:00 [DBG] Execution loop Worker:06b3fa2f has started in 2.0331 ms +2021-09-02 17:28:30.343 +08:00 [DBG] Execution loop Worker:3b7330a8 has started in 2.2358 ms +2021-09-02 17:28:30.343 +08:00 [DBG] Execution loop Worker:b0c95e3b has started in 2.6372 ms +2021-09-02 17:28:30.343 +08:00 [DBG] Execution loop Worker:6dd1277c has started in 2.6808 ms +2021-09-02 17:28:30.344 +08:00 [DBG] Execution loop Worker:8084d1f5 has started in 2.8217 ms +2021-09-02 17:28:30.344 +08:00 [DBG] Execution loop Worker:43a4ee39 has started in 3.1874 ms +2021-09-02 17:28:30.344 +08:00 [DBG] Execution loop Worker:9c047b08 has started in 3.3456 ms +2021-09-02 17:28:30.344 +08:00 [DBG] Execution loop Worker:0055e3da has started in 3.5057 ms +2021-09-02 17:28:30.345 +08:00 [DBG] Execution loop Worker:07671932 has started in 3.7922 ms +2021-09-02 17:28:30.345 +08:00 [DBG] Execution loop Worker:a4ed852b has started in 3.9357 ms +2021-09-02 17:28:30.345 +08:00 [DBG] Execution loop Worker:5d3e7061 has started in 4.2728 ms +2021-09-02 17:28:30.345 +08:00 [DBG] Execution loop Worker:23d5b0ea has started in 4.441 ms +2021-09-02 17:28:30.345 +08:00 [DBG] Execution loop Worker:b788b691 has started in 4.6546 ms +2021-09-02 17:28:30.346 +08:00 [DBG] Execution loop Worker:0417093f has started in 4.8746 ms +2021-09-02 17:28:30.347 +08:00 [DBG] Execution loop DelayedJobScheduler:9907ca95 has started in 1.5891 ms +2021-09-02 17:28:30.349 +08:00 [DBG] Execution loop RecurringJobScheduler:ffa9d395 has started in 1.4097 ms +2021-09-02 17:28:30.349 +08:00 [INF] Server szqh003802a:37192:ee00c5ea all the dispatchers started +2021-09-02 17:28:30.374 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 17:28:30.431 +08:00 [DBG] removed records count=0 +2021-09-02 17:28:30.432 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 17:28:30.449 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 17:28:30.462 +08:00 [DBG] removed records count=0 +2021-09-02 17:28:30.462 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 17:28:30.463 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 17:28:30.474 +08:00 [DBG] removed records count=0 +2021-09-02 17:28:30.474 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 17:28:30.475 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 17:28:30.488 +08:00 [DBG] removed records count=0 +2021-09-02 17:28:30.489 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 17:28:30.490 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 17:28:30.500 +08:00 [DBG] removed records count=0 +2021-09-02 17:28:30.754 +08:00 [INF] Initialized all ABP modules. +2021-09-02 17:28:30.788 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-02 17:28:30.788 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-02 17:28:30.788 +08:00 [INF] Hosting environment: Development +2021-09-02 17:28:30.788 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-02 17:28:31.233 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-02 17:28:32.150 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 17:28:32.186 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-02 17:28:32.210 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-02 17:28:32.215 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 24.0725ms +2021-09-02 17:28:32.215 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 17:28:32.225 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 991.7368ms +2021-09-02 17:28:32.228 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 17:28:32.289 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 60.9980ms +2021-09-02 17:28:32.440 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 17:28:32.685 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 244.3267ms +2021-09-02 17:28:38.349 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:28:38.353 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:38.354 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 5.2154ms +2021-09-02 17:28:38.356 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 190 +2021-09-02 17:28:38.358 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:38.411 +08:00 [INF] Successfully validated the token. +2021-09-02 17:28:38.414 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:38.424 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:28:39.310 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 885.3795ms +2021-09-02 17:28:39.312 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:39.558 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:39.558 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:39.809 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:39.809 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:39.814 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 190 - 204 - - 1457.9913ms +2021-09-02 17:28:39.860 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:28:39.860 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:39.861 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4093ms +2021-09-02 17:28:39.862 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:28:39.862 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:39.863 +08:00 [INF] Successfully validated the token. +2021-09-02 17:28:39.864 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:39.867 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:28:40.238 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:28:40.282 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 415.2453ms +2021-09-02 17:28:40.282 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:40.285 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:40.302 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:40.302 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:40.303 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 440.4956ms +2021-09-02 17:28:42.525 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:28:42.526 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:42.526 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.3834ms +2021-09-02 17:28:42.528 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:28:42.529 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:42.531 +08:00 [INF] Successfully validated the token. +2021-09-02 17:28:42.531 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:42.534 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:28:42.650 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:28:42.652 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 118.1285ms +2021-09-02 17:28:42.652 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:42.669 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:42.698 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:42.698 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:42.698 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 170.5668ms +2021-09-02 17:28:46.576 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:28:46.576 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:46.576 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4016ms +2021-09-02 17:28:46.578 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:28:46.578 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:46.579 +08:00 [INF] Successfully validated the token. +2021-09-02 17:28:46.580 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:46.580 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:28:46.605 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:28:46.606 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 25.6473ms +2021-09-02 17:28:46.606 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:46.609 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:46.627 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:46.627 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:46.627 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 49.2832ms +2021-09-02 17:28:47.459 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:28:47.460 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:28:47.461 +08:00 [INF] Successfully validated the token. +2021-09-02 17:28:47.461 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:47.462 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:28:47.470 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:28:47.470 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 8.3099ms +2021-09-02 17:28:47.470 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:28:47.472 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:47.501 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:47.501 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:28:47.501 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 41.9639ms +2021-09-02 17:29:00.349 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:29:04.170 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:29:04.170 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:04.170 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.4473ms +2021-09-02 17:29:04.172 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:29:04.172 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:04.173 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:04.174 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:04.174 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:04.182 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:29:04.182 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 7.9252ms +2021-09-02 17:29:04.182 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:04.184 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:04.214 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:04.214 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:04.214 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 42.0198ms +2021-09-02 17:29:06.763 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:29:06.763 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:06.763 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 0.3603ms +2021-09-02 17:29:06.765 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 185 +2021-09-02 17:29:06.765 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:06.766 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:06.767 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:06.767 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:06.783 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 15.9176ms +2021-09-02 17:29:06.783 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:06.793 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:06.793 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:06.817 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:06.817 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:06.818 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 185 - 204 - - 52.7169ms +2021-09-02 17:29:06.933 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:29:06.933 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:06.933 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.3576ms +2021-09-02 17:29:06.935 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:29:06.936 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:06.937 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:06.937 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:06.938 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:06.963 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:29:06.963 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 25.3679ms +2021-09-02 17:29:06.963 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:06.965 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:06.984 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:06.984 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:06.984 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 48.9928ms +2021-09-02 17:29:08.744 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:29:08.745 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:08.746 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:08.746 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:08.746 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:08.754 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:29:08.754 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 7.5859ms +2021-09-02 17:29:08.754 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:08.756 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:08.781 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:08.781 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:08.782 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 37.2921ms +2021-09-02 17:29:16.149 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:29:16.149 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:16.149 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.2997ms +2021-09-02 17:29:16.151 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:29:16.151 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:16.152 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:16.153 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:16.153 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:16.176 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:29:16.177 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 24.136ms +2021-09-02 17:29:16.177 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:16.179 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:16.200 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:16.200 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:16.200 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 49.5128ms +2021-09-02 17:29:23.229 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:29:23.229 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:23.229 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.3587ms +2021-09-02 17:29:23.231 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:29:23.231 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:23.232 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:23.233 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:23.233 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:23.242 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:29:23.242 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 9.0675ms +2021-09-02 17:29:23.242 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:23.244 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:23.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:23.261 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:23.261 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 30.8758ms +2021-09-02 17:29:26.930 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:29:26.930 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:26.930 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 0.4145ms +2021-09-02 17:29:26.932 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 190 +2021-09-02 17:29:26.933 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:26.934 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:26.935 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:26.935 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:26.952 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 17.0637ms +2021-09-02 17:29:26.952 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:26.960 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:26.960 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:26.988 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:26.988 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:26.988 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 190 - 204 - - 55.5807ms +2021-09-02 17:29:27.079 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:29:27.080 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:27.080 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.4191ms +2021-09-02 17:29:27.081 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:29:27.082 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:27.083 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:27.084 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:27.084 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:27.112 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:29:27.113 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 28.2848ms +2021-09-02 17:29:27.113 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:27.116 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:27.133 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:27.133 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:27.134 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 52.1940ms +2021-09-02 17:29:30.403 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:29:38.671 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:29:38.672 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:38.672 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.3087ms +2021-09-02 17:29:38.673 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:29:38.674 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:38.675 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:38.675 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:38.675 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:38.698 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:29:38.699 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 23.3478ms +2021-09-02 17:29:38.699 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:38.702 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:38.727 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:38.727 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:38.727 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 53.5334ms +2021-09-02 17:29:46.359 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:29:46.359 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:46.359 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.6839ms +2021-09-02 17:29:46.361 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:29:46.362 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:46.363 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:46.364 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:46.365 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:46.375 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:29:46.375 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 10.6968ms +2021-09-02 17:29:46.376 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:46.378 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:46.396 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:46.396 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:46.396 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 35.0120ms +2021-09-02 17:29:58.308 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:29:58.308 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:58.308 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.3296ms +2021-09-02 17:29:58.310 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:29:58.310 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:58.311 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:58.312 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:58.312 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:58.345 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:29:58.346 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 32.6643ms +2021-09-02 17:29:58.346 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:58.350 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:58.366 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:58.366 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:58.367 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 56.7083ms +2021-09-02 17:29:59.202 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:29:59.202 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:59.204 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:59.205 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:59.205 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:59.231 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:29:59.232 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 26.7567ms +2021-09-02 17:29:59.232 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:59.235 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:59.253 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:59.253 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:59.253 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 50.7761ms +2021-09-02 17:29:59.458 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:29:59.459 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:59.460 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:59.461 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:59.461 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:59.489 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:29:59.489 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 28.4608ms +2021-09-02 17:29:59.490 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:59.492 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:59.511 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:59.511 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:59.511 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 52.5118ms +2021-09-02 17:29:59.867 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:29:59.867 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:29:59.868 +08:00 [INF] Successfully validated the token. +2021-09-02 17:29:59.869 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:59.869 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:29:59.893 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:29:59.894 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 24.6683ms +2021-09-02 17:29:59.894 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:29:59.897 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:59.913 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:59.913 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:29:59.914 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 46.8756ms +2021-09-02 17:30:00.410 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:30:01.048 +08:00 [DBG] 841 recurring job(s) processed by scheduler. +2021-09-02 17:30:01.148 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:30:01.148 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:01.148 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.2693ms +2021-09-02 17:30:01.149 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:30:01.150 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:01.151 +08:00 [INF] Successfully validated the token. +2021-09-02 17:30:01.152 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:01.152 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:30:01.161 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:30:01.161 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 9.4161ms +2021-09-02 17:30:01.161 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:01.164 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:01.181 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:01.181 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:01.181 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 31.7831ms +2021-09-02 17:30:11.201 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:30:11.202 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:11.202 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.2962ms +2021-09-02 17:30:11.204 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:30:11.204 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:11.205 +08:00 [INF] Successfully validated the token. +2021-09-02 17:30:11.206 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:11.206 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:30:11.237 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:30:11.238 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.8505ms +2021-09-02 17:30:11.238 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:11.242 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:11.269 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:11.269 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:11.269 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 65.1579ms +2021-09-02 17:30:12.808 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:30:12.808 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:12.808 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.5647ms +2021-09-02 17:30:12.810 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:30:12.810 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:12.811 +08:00 [INF] Successfully validated the token. +2021-09-02 17:30:12.812 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:12.812 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:30:12.819 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:30:12.819 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 7.5661ms +2021-09-02 17:30:12.819 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:12.821 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:12.849 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:12.849 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:12.849 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 39.0972ms +2021-09-02 17:30:16.829 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:30:16.829 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:16.830 +08:00 [INF] Successfully validated the token. +2021-09-02 17:30:16.831 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:16.831 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:30:16.838 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:30:16.838 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 7.5269ms +2021-09-02 17:30:16.838 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:16.840 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:16.865 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:16.865 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:16.865 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 36.2089ms +2021-09-02 17:30:20.395 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:30:20.395 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:20.395 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.2425ms +2021-09-02 17:30:20.397 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:30:20.397 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:20.398 +08:00 [INF] Successfully validated the token. +2021-09-02 17:30:20.399 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:20.399 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:30:20.407 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:30:20.407 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 8.0164ms +2021-09-02 17:30:20.407 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:20.408 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:20.426 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:20.426 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:20.426 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 29.3573ms +2021-09-02 17:30:30.026 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:30:30.026 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:30.026 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 0.3941ms +2021-09-02 17:30:30.028 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 185 +2021-09-02 17:30:30.028 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:30.030 +08:00 [INF] Successfully validated the token. +2021-09-02 17:30:30.030 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:30.030 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:30:30.045 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 14.7968ms +2021-09-02 17:30:30.045 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:30.055 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:30.055 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:30.088 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:30.088 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:30.088 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 185 - 204 - - 59.8223ms +2021-09-02 17:30:30.210 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:30:30.210 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:30.210 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.3214ms +2021-09-02 17:30:30.212 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:30:30.213 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:30.214 +08:00 [INF] Successfully validated the token. +2021-09-02 17:30:30.215 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:30.215 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:30:30.238 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:30:30.238 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 23.0879ms +2021-09-02 17:30:30.238 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:30.241 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:30.259 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:30.259 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:30.259 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 46.9653ms +2021-09-02 17:30:30.424 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:30:44.328 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:30:44.328 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:44.328 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.2619ms +2021-09-02 17:30:44.330 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:30:44.330 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:30:44.332 +08:00 [INF] Successfully validated the token. +2021-09-02 17:30:44.332 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:44.333 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:30:44.341 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:30:44.341 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 8.2959ms +2021-09-02 17:30:44.341 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:30:44.343 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:44.370 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:44.370 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:30:44.370 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 40.3689ms +2021-09-02 17:31:00.447 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:31:23.347 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:31:23.348 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:31:23.348 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.3091ms +2021-09-02 17:31:23.350 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:31:23.350 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:31:23.351 +08:00 [INF] Successfully validated the token. +2021-09-02 17:31:23.352 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:31:23.352 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:31:23.362 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:31:23.362 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 9.6724ms +2021-09-02 17:31:23.362 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:31:23.364 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:31:23.387 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:31:23.387 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:31:23.387 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 37.0066ms +2021-09-02 17:31:26.258 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:31:26.259 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:31:26.259 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 0.4416ms +2021-09-02 17:31:26.261 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 190 +2021-09-02 17:31:26.261 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:31:26.262 +08:00 [INF] Successfully validated the token. +2021-09-02 17:31:26.262 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:31:26.262 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:31:26.277 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 14.351ms +2021-09-02 17:31:26.277 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:31:26.285 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:31:26.285 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:31:26.313 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:31:26.313 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:31:26.313 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 190 - 204 - - 52.3272ms +2021-09-02 17:31:26.411 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:31:26.411 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:31:26.411 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.2478ms +2021-09-02 17:31:26.413 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:31:26.413 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:31:26.414 +08:00 [INF] Successfully validated the token. +2021-09-02 17:31:26.415 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:31:26.415 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:31:26.438 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:31:26.438 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 23.3574ms +2021-09-02 17:31:26.438 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:31:26.442 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:31:26.458 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:31:26.458 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:31:26.459 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 46.0082ms +2021-09-02 17:31:30.476 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:31:32.009 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:31:32.009 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:31:32.009 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.2616ms +2021-09-02 17:31:32.011 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:31:32.011 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:31:32.012 +08:00 [INF] Successfully validated the token. +2021-09-02 17:31:32.013 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:31:32.013 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:31:32.020 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:31:32.020 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 7.4157ms +2021-09-02 17:31:32.020 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:31:32.022 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:31:32.037 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:31:32.037 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:31:32.037 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 26.0440ms +2021-09-02 17:32:00.484 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:32:01.051 +08:00 [DBG] 872 recurring job(s) processed by scheduler. +2021-09-02 17:32:04.736 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:32:04.736 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:04.736 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.3532ms +2021-09-02 17:32:04.738 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:32:04.739 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:04.740 +08:00 [INF] Successfully validated the token. +2021-09-02 17:32:04.741 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:04.741 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:32:04.761 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:32:04.762 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.6982ms +2021-09-02 17:32:04.762 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:04.764 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:04.791 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:04.791 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:04.791 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 52.4343ms +2021-09-02 17:32:05.867 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:32:05.868 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:05.868 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.2928ms +2021-09-02 17:32:05.869 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:32:05.870 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:05.871 +08:00 [INF] Successfully validated the token. +2021-09-02 17:32:05.871 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:05.871 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:32:05.878 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:32:05.879 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 7.2667ms +2021-09-02 17:32:05.879 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:05.880 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:05.907 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:05.907 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:05.907 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 37.5628ms +2021-09-02 17:32:13.525 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:32:13.526 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:13.526 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 0.2475ms +2021-09-02 17:32:13.527 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 176 +2021-09-02 17:32:13.527 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:13.528 +08:00 [INF] Successfully validated the token. +2021-09-02 17:32:13.529 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:13.529 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:32:13.540 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 11.3297ms +2021-09-02 17:32:13.541 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:13.548 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:13.548 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:13.567 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:13.567 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:13.567 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 176 - 204 - - 39.7448ms +2021-09-02 17:32:13.663 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:32:13.663 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:13.663 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.2613ms +2021-09-02 17:32:13.664 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:32:13.664 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:13.665 +08:00 [INF] Successfully validated the token. +2021-09-02 17:32:13.666 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:13.666 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:32:13.690 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:32:13.691 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 24.3925ms +2021-09-02 17:32:13.691 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:13.693 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:13.708 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:13.708 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:13.708 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 44.0097ms +2021-09-02 17:32:16.053 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:32:16.053 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:16.054 +08:00 [INF] Successfully validated the token. +2021-09-02 17:32:16.055 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:16.055 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:32:16.077 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:32:16.077 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 22.0724ms +2021-09-02 17:32:16.077 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:16.079 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:16.096 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:16.096 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:16.096 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 43.4965ms +2021-09-02 17:32:16.992 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:32:16.992 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:16.992 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.3497ms +2021-09-02 17:32:16.994 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:32:16.995 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:16.996 +08:00 [INF] Successfully validated the token. +2021-09-02 17:32:16.996 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:16.996 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:32:17.003 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:32:17.003 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 6.9012ms +2021-09-02 17:32:17.003 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:17.005 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:17.020 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:17.020 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:17.020 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 25.4797ms +2021-09-02 17:32:30.505 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:32:32.454 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:32:32.454 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:32.454 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.2963ms +2021-09-02 17:32:32.456 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:32:32.457 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:32.458 +08:00 [INF] Successfully validated the token. +2021-09-02 17:32:32.458 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:32.458 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:32:32.478 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:32:32.478 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.0946ms +2021-09-02 17:32:32.478 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:32.480 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:32.507 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:32.507 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:32.507 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 50.6094ms +2021-09-02 17:32:34.389 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:32:34.389 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:34.390 +08:00 [INF] Successfully validated the token. +2021-09-02 17:32:34.391 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:34.391 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:32:34.412 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:32:34.412 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 21.341ms +2021-09-02 17:32:34.412 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:34.414 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:34.430 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:34.430 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:34.430 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 41.4523ms +2021-09-02 17:32:54.186 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:32:54.186 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:54.186 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.2723ms +2021-09-02 17:32:54.188 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:32:54.188 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:54.190 +08:00 [INF] Successfully validated the token. +2021-09-02 17:32:54.190 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:54.190 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:32:54.211 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:32:54.211 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.8886ms +2021-09-02 17:32:54.211 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:54.214 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:54.229 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:54.229 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:54.229 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 40.9773ms +2021-09-02 17:32:55.683 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:32:55.683 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:55.683 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.2416ms +2021-09-02 17:32:55.684 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:32:55.685 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:32:55.686 +08:00 [INF] Successfully validated the token. +2021-09-02 17:32:55.686 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:55.686 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:32:55.693 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:32:55.693 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 7.0627ms +2021-09-02 17:32:55.693 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:32:55.695 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:55.716 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:55.716 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:32:55.716 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 32.0444ms +2021-09-02 17:33:00.530 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:33:00.861 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:33:00.862 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:33:00.862 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 0.2332ms +2021-09-02 17:33:00.863 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 157 +2021-09-02 17:33:00.863 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:33:00.864 +08:00 [INF] Successfully validated the token. +2021-09-02 17:33:00.865 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:33:00.865 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:33:00.878 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 12.7256ms +2021-09-02 17:33:00.878 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:33:00.884 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:00.884 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:00.906 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:00.906 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:00.906 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 157 - 204 - - 42.8579ms +2021-09-02 17:33:00.996 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:33:00.996 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:33:00.996 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.2440ms +2021-09-02 17:33:00.998 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:33:00.998 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:33:00.999 +08:00 [INF] Successfully validated the token. +2021-09-02 17:33:01.000 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:33:01.000 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:33:01.021 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:33:01.022 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 22.3177ms +2021-09-02 17:33:01.022 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:33:01.024 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:01.038 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:01.038 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:01.039 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 41.0252ms +2021-09-02 17:33:03.297 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:33:03.297 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:33:03.297 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.3450ms +2021-09-02 17:33:03.299 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:33:03.299 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:33:03.300 +08:00 [INF] Successfully validated the token. +2021-09-02 17:33:03.300 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:33:03.301 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:33:03.307 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:33:03.307 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 6.772ms +2021-09-02 17:33:03.307 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:33:03.309 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:03.335 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:03.335 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:03.335 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 36.4097ms +2021-09-02 17:33:28.324 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:33:28.325 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:33:28.325 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.5753ms +2021-09-02 17:33:28.328 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:33:28.328 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:33:28.329 +08:00 [INF] Successfully validated the token. +2021-09-02 17:33:28.329 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:33:28.329 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:33:28.349 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:33:28.349 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 19.601ms +2021-09-02 17:33:28.349 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:33:28.351 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:28.366 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:28.366 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:28.367 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 38.9143ms +2021-09-02 17:33:29.310 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:33:29.310 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:33:29.310 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.3200ms +2021-09-02 17:33:29.312 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:33:29.312 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:33:29.313 +08:00 [INF] Successfully validated the token. +2021-09-02 17:33:29.314 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:33:29.314 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:33:29.320 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:33:29.321 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 6.8474ms +2021-09-02 17:33:29.321 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:33:29.322 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:29.346 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:29.346 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:29.346 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 34.4343ms +2021-09-02 17:33:30.368 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 17:33:30.373 +08:00 [INF] 2 servers were removed due to timeout +2021-09-02 17:33:30.541 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:33:56.287 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:33:56.288 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:33:56.288 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.3294ms +2021-09-02 17:33:56.289 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:33:56.289 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:33:56.290 +08:00 [INF] Successfully validated the token. +2021-09-02 17:33:56.291 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:33:56.291 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:33:56.298 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:33:56.298 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 6.8588ms +2021-09-02 17:33:56.298 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:33:56.299 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:56.313 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:56.314 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:33:56.314 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 24.6288ms +2021-09-02 17:34:00.558 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:34:01.255 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 17:34:03.556 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:34:03.556 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:34:03.556 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 0.2374ms +2021-09-02 17:34:03.558 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 176 +2021-09-02 17:34:03.558 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:34:03.559 +08:00 [INF] Successfully validated the token. +2021-09-02 17:34:03.559 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:34:03.560 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:34:03.572 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 12.8856ms +2021-09-02 17:34:03.573 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:34:03.579 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:34:03.580 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:34:03.609 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:34:03.609 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:34:03.609 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 176 - 204 - - 51.5720ms +2021-09-02 17:34:03.702 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:34:03.702 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:34:03.702 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.2561ms +2021-09-02 17:34:03.704 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:34:03.704 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:34:03.706 +08:00 [INF] Successfully validated the token. +2021-09-02 17:34:03.706 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:34:03.706 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:34:03.736 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:34:03.736 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 30.0058ms +2021-09-02 17:34:03.736 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:34:03.739 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:34:03.757 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:34:03.757 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:34:03.757 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 52.9619ms +2021-09-02 17:34:08.421 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:34:08.421 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:34:08.421 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.2678ms +2021-09-02 17:34:08.423 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:34:08.423 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:34:08.424 +08:00 [INF] Successfully validated the token. +2021-09-02 17:34:08.424 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:34:08.425 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:34:08.432 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:34:08.432 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 7.2133ms +2021-09-02 17:34:08.432 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:34:08.434 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:34:08.447 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:34:08.447 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:34:08.448 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 24.7332ms +2021-09-02 17:34:30.571 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:35:00.589 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:35:30.600 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:35:35.250 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:35:35.251 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:35:35.251 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.3157ms +2021-09-02 17:35:35.253 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:35:35.253 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:35:35.265 +08:00 [INF] Successfully validated the token. +2021-09-02 17:35:35.266 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:35:35.266 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:35:35.286 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:35:35.286 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.1946ms +2021-09-02 17:35:35.286 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:35:35.289 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:35.306 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:35.306 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:35.306 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 53.2953ms +2021-09-02 17:35:36.346 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:35:36.346 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:35:36.346 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.2430ms +2021-09-02 17:35:36.347 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:35:36.347 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:35:36.348 +08:00 [INF] Successfully validated the token. +2021-09-02 17:35:36.349 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:35:36.349 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:35:36.356 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:35:36.356 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 7.3493ms +2021-09-02 17:35:36.356 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:35:36.358 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:36.383 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:36.383 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:36.383 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 35.9673ms +2021-09-02 17:35:41.056 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:35:41.056 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:35:41.056 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 0.3238ms +2021-09-02 17:35:41.058 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 190 +2021-09-02 17:35:41.058 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:35:41.059 +08:00 [INF] Successfully validated the token. +2021-09-02 17:35:41.059 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:35:41.059 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:35:41.073 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 13.2217ms +2021-09-02 17:35:41.073 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:35:41.079 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:41.079 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:41.098 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:41.098 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:41.098 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 190 - 204 - - 40.4439ms +2021-09-02 17:35:41.183 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:35:41.183 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:35:41.184 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.2436ms +2021-09-02 17:35:41.185 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:35:41.185 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:35:41.187 +08:00 [INF] Successfully validated the token. +2021-09-02 17:35:41.187 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:35:41.188 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:35:41.209 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:35:41.210 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 22.0713ms +2021-09-02 17:35:41.210 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:35:41.212 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:41.227 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:41.227 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:41.227 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 42.0442ms +2021-09-02 17:35:45.053 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:35:45.054 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:35:45.054 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.2716ms +2021-09-02 17:35:45.055 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:35:45.055 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:35:45.056 +08:00 [INF] Successfully validated the token. +2021-09-02 17:35:45.057 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:35:45.057 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:35:45.063 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:35:45.064 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 6.8476ms +2021-09-02 17:35:45.064 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:35:45.065 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:45.078 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:45.078 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:35:45.078 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 23.1562ms +2021-09-02 17:36:00.631 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:36:18.766 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 17:36:30.649 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:36:32.634 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:36:32.634 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:36:32.634 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.3019ms +2021-09-02 17:36:32.637 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:36:32.638 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:36:32.640 +08:00 [INF] Successfully validated the token. +2021-09-02 17:36:32.641 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:36:32.641 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:36:32.677 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:36:32.677 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.5319ms +2021-09-02 17:36:32.677 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:36:32.681 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:36:32.705 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:36:32.705 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:36:32.706 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 68.1680ms +2021-09-02 17:36:34.238 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:36:34.238 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:36:34.239 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.2796ms +2021-09-02 17:36:34.241 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:36:34.241 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:36:34.242 +08:00 [INF] Successfully validated the token. +2021-09-02 17:36:34.242 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:36:34.242 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:36:34.250 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:36:34.250 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 7.5422ms +2021-09-02 17:36:34.250 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:36:34.252 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:36:34.268 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:36:34.268 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:36:34.268 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 27.2224ms +2021-09-02 17:36:38.771 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 17:36:57.094 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 17:37:00.659 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:37:01.058 +08:00 [DBG] 210 recurring job(s) processed by scheduler. +2021-09-02 17:37:08.491 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:37:08.491 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:08.491 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.2413ms +2021-09-02 17:37:08.493 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:37:08.493 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:08.494 +08:00 [INF] Successfully validated the token. +2021-09-02 17:37:08.494 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:08.494 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:37:08.517 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:37:08.517 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 22.9836ms +2021-09-02 17:37:08.517 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:08.520 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:08.550 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:08.550 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:08.550 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 57.5488ms +2021-09-02 17:37:13.304 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:37:13.305 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:13.306 +08:00 [INF] Successfully validated the token. +2021-09-02 17:37:13.307 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:13.307 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:37:13.335 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:37:13.335 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 28.0645ms +2021-09-02 17:37:13.335 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:13.338 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:13.358 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:13.358 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:13.358 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 53.8400ms +2021-09-02 17:37:14.788 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:37:14.788 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:14.788 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.2382ms +2021-09-02 17:37:14.790 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:37:14.790 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:14.791 +08:00 [INF] Successfully validated the token. +2021-09-02 17:37:14.791 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:14.791 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:37:14.798 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:37:14.798 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 7.0169ms +2021-09-02 17:37:14.798 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:14.800 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:14.825 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:14.825 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:14.825 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 35.0912ms +2021-09-02 17:37:18.009 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - +2021-09-02 17:37:18.009 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:18.009 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/update - - - 204 - - 0.3233ms +2021-09-02 17:37:18.010 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 176 +2021-09-02 17:37:18.011 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:18.011 +08:00 [INF] Successfully validated the token. +2021-09-02 17:37:18.012 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:18.012 +08:00 [INF] Route matched with {action = "Update", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.Dtos.UpdateApiResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:37:18.024 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 11.9627ms +2021-09-02 17:37:18.024 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:18.031 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:18.031 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:18.051 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:18.051 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:18.051 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/update application/json 176 - 204 - - 40.7695ms +2021-09-02 17:37:18.170 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:37:18.170 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:18.170 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.3056ms +2021-09-02 17:37:18.172 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:37:18.172 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:18.173 +08:00 [INF] Successfully validated the token. +2021-09-02 17:37:18.174 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:18.174 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:37:18.194 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:37:18.195 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 21.014ms +2021-09-02 17:37:18.195 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:18.197 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:18.212 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:18.212 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:18.212 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 40.2615ms +2021-09-02 17:37:20.225 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:37:20.226 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:20.227 +08:00 [INF] Successfully validated the token. +2021-09-02 17:37:20.227 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:20.227 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:37:20.249 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:37:20.249 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 21.7223ms +2021-09-02 17:37:20.249 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:20.251 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:20.267 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:20.267 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:20.267 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 41.4315ms +2021-09-02 17:37:21.367 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:37:21.367 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:21.367 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.2774ms +2021-09-02 17:37:21.369 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:37:21.369 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:21.370 +08:00 [INF] Successfully validated the token. +2021-09-02 17:37:21.370 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:21.370 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:37:21.377 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:37:21.377 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 6.636ms +2021-09-02 17:37:21.377 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:21.378 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:21.391 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:21.392 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:21.392 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 23.1772ms +2021-09-02 17:37:26.949 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - +2021-09-02 17:37:26.949 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:26.949 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/all - - - 204 - - 0.2715ms +2021-09-02 17:37:26.951 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:37:26.951 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:26.952 +08:00 [INF] Successfully validated the token. +2021-09-02 17:37:26.952 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:26.952 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:37:26.959 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:37:26.959 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 6.5494ms +2021-09-02 17:37:26.959 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:26.960 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:26.974 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:26.974 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:26.974 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 23.2504ms +2021-09-02 17:37:30.672 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:37:31.572 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 +2021-09-02 17:37:31.573 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:37:31.574 +08:00 [INF] Successfully validated the token. +2021-09-02 17:37:31.574 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:31.574 +08:00 [INF] Route matched with {action = "FindAll", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[System.String,System.String]]] FindAllAsync() on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:37:31.581 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[CompanyName.ProjectName.Extensions.Customs.Dtos.FromSelector`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], CompanyName.ProjectName.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:37:31.581 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi) in 6.8589ms +2021-09-02 17:37:31.581 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.FindAllAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:37:31.583 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:31.597 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:31.597 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:37:31.597 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/all - 0 - 200 - application/json;+charset=utf-8 25.0010ms +2021-09-02 17:38:00.692 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:38:29.761 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:38:29.761 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:38:29.762 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2434ms +2021-09-02 17:38:29.763 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:38:29.763 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:38:29.765 +08:00 [INF] Successfully validated the token. +2021-09-02 17:38:29.765 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:38:29.769 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:38:29.817 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:38:29.824 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 54.5506ms +2021-09-02 17:38:29.824 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:38:29.825 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:38:29.840 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:38:29.840 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:38:29.840 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 77.2656ms +2021-09-02 17:38:30.369 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 17:38:30.696 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:38:35.085 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 17:38:53.509 +08:00 [DBG] 1000 recurring job(s) processed by scheduler. +2021-09-02 17:38:59.984 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:38:59.985 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:38:59.985 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3741ms +2021-09-02 17:38:59.988 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:38:59.988 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:38:59.990 +08:00 [INF] Successfully validated the token. +2021-09-02 17:38:59.993 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:38:59.993 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:39:00.024 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:39:00.024 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.1893ms +2021-09-02 17:39:00.024 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:00.027 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:00.054 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:00.054 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:00.055 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 67.0583ms +2021-09-02 17:39:00.701 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:39:01.065 +08:00 [DBG] 336 recurring job(s) processed by scheduler. +2021-09-02 17:39:03.634 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:39:03.635 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:03.636 +08:00 [INF] Successfully validated the token. +2021-09-02 17:39:03.636 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:03.636 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:39:03.656 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:39:03.657 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 20.7229ms +2021-09-02 17:39:03.657 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:03.660 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:03.685 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:03.685 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:03.685 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 50.8235ms +2021-09-02 17:39:10.563 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/update - - +2021-09-02 17:39:10.563 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:10.563 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/update - - - 204 - - 0.2515ms +2021-09-02 17:39:10.565 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/update application/json 142 +2021-09-02 17:39:10.565 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:10.566 +08:00 [INF] Successfully validated the token. +2021-09-02 17:39:10.567 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:10.571 +08:00 [INF] Route matched with {action = "Update", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.UpdateCreateApiScopeInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:39:10.600 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 29.6038ms +2021-09-02 17:39:10.600 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:10.607 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:10.607 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:10.642 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:10.642 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:10.642 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/update application/json 142 - 204 - - 77.2694ms +2021-09-02 17:39:10.719 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:39:10.719 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:10.719 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.3090ms +2021-09-02 17:39:10.721 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:39:10.721 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:10.722 +08:00 [INF] Successfully validated the token. +2021-09-02 17:39:10.723 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:10.723 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:39:10.738 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:39:10.738 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 15.4064ms +2021-09-02 17:39:10.738 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:10.741 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:10.757 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:10.757 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:10.757 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 36.4341ms +2021-09-02 17:39:16.593 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/delete - - +2021-09-02 17:39:16.594 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:16.594 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/delete - - - 204 - - 0.2148ms +2021-09-02 17:39:16.595 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/delete application/json 45 +2021-09-02 17:39:16.595 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:16.596 +08:00 [INF] Successfully validated the token. +2021-09-02 17:39:16.597 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:16.599 +08:00 [INF] Route matched with {action = "Delete", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:39:16.669 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 70.1047ms +2021-09-02 17:39:16.669 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:16.724 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:16.724 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:16.742 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:16.742 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:16.743 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/delete application/json 45 - 204 - - 147.5749ms +2021-09-02 17:39:16.796 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:39:16.796 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:16.796 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.2314ms +2021-09-02 17:39:16.797 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:39:16.798 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:16.799 +08:00 [INF] Successfully validated the token. +2021-09-02 17:39:16.799 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:16.799 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:39:16.814 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:39:16.814 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 14.619ms +2021-09-02 17:39:16.814 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:16.815 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:16.831 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:16.831 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:16.832 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 34.3032ms +2021-09-02 17:39:18.957 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 17:39:18.957 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:18.957 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.3199ms +2021-09-02 17:39:18.959 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 17:39:18.959 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:18.960 +08:00 [INF] Successfully validated the token. +2021-09-02 17:39:18.961 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:18.964 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:39:19.093 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:39:19.099 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 134.9016ms +2021-09-02 17:39:19.099 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:19.111 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:19.126 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:19.126 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:19.127 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 168.0698ms +2021-09-02 17:39:30.725 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:39:34.761 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - +2021-09-02 17:39:34.761 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:34.761 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/create - - - 204 - - 0.2410ms +2021-09-02 17:39:34.763 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 137 +2021-09-02 17:39:34.763 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:34.764 +08:00 [INF] Successfully validated the token. +2021-09-02 17:39:34.764 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:34.766 +08:00 [INF] Route matched with {action = "Create", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task CreateAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.CreateIdentityResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:39:34.796 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi) in 29.9971ms +2021-09-02 17:39:34.796 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.CreateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:34.850 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:34.850 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:34.873 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:34.873 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:34.873 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/create application/json 137 - 204 - - 110.6774ms +2021-09-02 17:39:34.975 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 17:39:34.975 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:34.975 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.2614ms +2021-09-02 17:39:34.976 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 17:39:34.977 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:34.977 +08:00 [INF] Successfully validated the token. +2021-09-02 17:39:34.978 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:34.978 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:39:34.995 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:39:34.996 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 17.9744ms +2021-09-02 17:39:34.996 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:34.998 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:35.016 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:35.016 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:35.016 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 39.6998ms +2021-09-02 17:39:40.456 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/delete - - +2021-09-02 17:39:40.457 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:40.457 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/delete - - - 204 - - 0.4634ms +2021-09-02 17:39:40.459 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/delete application/json 45 +2021-09-02 17:39:40.459 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:40.460 +08:00 [INF] Successfully validated the token. +2021-09-02 17:39:40.460 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:40.462 +08:00 [INF] Route matched with {action = "Delete", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task DeleteAsync(CompanyName.ProjectName.Publics.Dtos.IdInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:39:40.494 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi) in 31.1504ms +2021-09-02 17:39:40.494 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.DeleteAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:40.512 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:40.512 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:40.540 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:40.540 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:40.540 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/delete application/json 45 - 204 - - 81.3722ms +2021-09-02 17:39:40.625 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 17:39:40.625 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:40.625 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.2313ms +2021-09-02 17:39:40.626 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 17:39:40.626 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:39:40.627 +08:00 [INF] Successfully validated the token. +2021-09-02 17:39:40.628 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:40.628 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:39:40.645 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:39:40.645 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 17.1365ms +2021-09-02 17:39:40.645 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:39:40.647 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:40.663 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:40.663 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:39:40.663 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 37.0542ms +2021-09-02 17:40:00.749 +08:00 [DBG] Server szqh003802a:37192:ee00c5ea heartbeat successfully sent +2021-09-02 17:43:18.282 +08:00 [INF] Starting CompanyName.ProjectName.HttpApi.Host. +2021-09-02 17:43:23.225 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2021-09-02 17:43:23.341 +08:00 [INF] Loaded ABP modules: +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiHostModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.ProjectNameHttpApiModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationContractsModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainSharedModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationContractsModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainSharedModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementHttpApiModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Caching.StackExchangeRedis.AbpCachingStackExchangeRedisModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.ProjectNameApplicationModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.ProjectNameDomainModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementDomainModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.QueryManagementDomainSharedModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.DataDictionaryManagementApplicationModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreDbMigrationsModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.EntityFrameworkCore.ProjectNameEntityFrameworkCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.EntityFrameworkCore.MySQL.AbpEntityFrameworkCoreMySQLModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.BackgroundJobs.EntityFrameworkCore.AbpBackgroundJobsEntityFrameworkCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.QueryManagement.FreeSqlMySql.QueryManagementFreeSqlMySqlModule +2021-09-02 17:43:23.341 +08:00 [INF] - CompanyName.ProjectName.DataDictionaryManagement.EntityFrameworkCore.DataDictionaryManagementEntityFrameworkCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.BackgroundJobs.Hangfire.AbpBackgroundJobsHangfireModule +2021-09-02 17:43:23.341 +08:00 [INF] - Volo.Abp.Hangfire.AbpHangfireModule +2021-09-02 17:43:23.435 +08:00 [DBG] Started background worker: Volo.Abp.BackgroundJobs.BackgroundJobWorker +2021-09-02 17:43:23.438 +08:00 [DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker +2021-09-02 17:43:23.589 +08:00 [INF] DB tables already exist. Exit install +2021-09-02 17:43:23.614 +08:00 [INF] Starting Hangfire Server using job storage: 'Server: localhost@CompanyNameProjectNameHangfireDB' +2021-09-02 17:43:23.614 +08:00 [INF] Using the following options for SQL Server job storage: +2021-09-02 17:43:23.614 +08:00 [INF] Queue poll interval: 00:00:15. +2021-09-02 17:43:23.614 +08:00 [INF] Using the following options for Hangfire Server: + Worker count: 20 + Listening queues: 'default' + Shutdown timeout: 00:00:15 + Schedule polling interval: 00:00:15 +2021-09-02 17:43:23.668 +08:00 [DBG] Execution loop BackgroundServerProcess:fc9e76b9 has started in 5.9694 ms +2021-09-02 17:43:23.803 +08:00 [INF] Server szqh003802a:28680:8bc41207 successfully announced in 120.5982 ms +2021-09-02 17:43:23.807 +08:00 [INF] Server szqh003802a:28680:8bc41207 is starting the registered dispatchers: ServerWatchdog, ServerJobCancellationWatcher, ExpirationManager, CountersAggregator, Worker, DelayedJobScheduler, RecurringJobScheduler... +2021-09-02 17:43:23.837 +08:00 [DBG] Execution loop ServerHeartbeatProcess:aba7d536 has started in 33.6382 ms +2021-09-02 17:43:23.840 +08:00 [DBG] Execution loop ServerWatchdog:8ab6f674 has started in 2.4712 ms +2021-09-02 17:43:23.842 +08:00 [DBG] Execution loop ServerJobCancellationWatcher:c6f3d445 has started in 4.002 ms +2021-09-02 17:43:23.868 +08:00 [DBG] Execution loop ExpirationManager:55fc41f9 has started in 26.5817 ms +2021-09-02 17:43:23.868 +08:00 [DBG] Execution loop CountersAggregator:3c706bb1 has started in 25.1479 ms +2021-09-02 17:43:23.871 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 17:43:23.871 +08:00 [DBG] Removing outdated records from table 'AggregatedCounter'... +2021-09-02 17:43:23.880 +08:00 [DBG] Execution loop Worker:1fef2bb8 has started in 12.4748 ms +2021-09-02 17:43:23.881 +08:00 [DBG] Execution loop Worker:271a4d47 has started in 13.5097 ms +2021-09-02 17:43:23.884 +08:00 [DBG] Execution loop Worker:7380304c has started in 17.0741 ms +2021-09-02 17:43:23.898 +08:00 [DBG] Execution loop Worker:6c407ac7 has started in 30.4083 ms +2021-09-02 17:43:23.899 +08:00 [DBG] delete from `AggregatedCounter` where ExpireAt < @now limit @count; +2021-09-02 17:43:23.900 +08:00 [DBG] Execution loop Worker:8805865c has started in 33.2391 ms +2021-09-02 17:43:23.903 +08:00 [DBG] Execution loop Worker:39c52160 has started in 36.1997 ms +2021-09-02 17:43:23.907 +08:00 [DBG] Execution loop Worker:ca8f4ae3 has started in 38.708 ms +2021-09-02 17:43:23.910 +08:00 [DBG] Execution loop Worker:370b2da4 has started in 41.6308 ms +2021-09-02 17:43:23.916 +08:00 [DBG] Execution loop Worker:7ab03096 has started in 48.6763 ms +2021-09-02 17:43:23.924 +08:00 [DBG] Execution loop Worker:14c0c7b1 has started in 56.9649 ms +2021-09-02 17:43:23.929 +08:00 [DBG] Execution loop Worker:86f3c05f has started in 60.8696 ms +2021-09-02 17:43:23.933 +08:00 [DBG] Execution loop Worker:b35cd65b has started in 65.6579 ms +2021-09-02 17:43:23.936 +08:00 [DBG] Execution loop Worker:28e0b3df has started in 69.12 ms +2021-09-02 17:43:23.940 +08:00 [DBG] removed records count=0 +2021-09-02 17:43:23.940 +08:00 [DBG] Execution loop Worker:74c1ec29 has started in 72.4079 ms +2021-09-02 17:43:23.943 +08:00 [DBG] Removing outdated records from table 'Job'... +2021-09-02 17:43:23.947 +08:00 [DBG] Execution loop Worker:8c3356ab has started in 80.1831 ms +2021-09-02 17:43:23.951 +08:00 [DBG] Execution loop Worker:bcd55acb has started in 83.5513 ms +2021-09-02 17:43:23.956 +08:00 [DBG] Execution loop Worker:f0ddc591 has started in 89.1794 ms +2021-09-02 17:43:23.959 +08:00 [DBG] Execution loop Worker:e9f3110f has started in 91.5497 ms +2021-09-02 17:43:23.961 +08:00 [DBG] delete from `Job` where ExpireAt < @now limit @count; +2021-09-02 17:43:23.965 +08:00 [DBG] Execution loop Worker:f0a02002 has started in 97.6186 ms +2021-09-02 17:43:23.974 +08:00 [DBG] Execution loop Worker:82336c4f has started in 106.2987 ms +2021-09-02 17:43:23.981 +08:00 [DBG] Execution loop DelayedJobScheduler:cf2d977f has started in 12.2261 ms +2021-09-02 17:43:23.984 +08:00 [INF] Server szqh003802a:28680:8bc41207 all the dispatchers started +2021-09-02 17:43:23.990 +08:00 [DBG] removed records count=0 +2021-09-02 17:43:23.990 +08:00 [DBG] Execution loop RecurringJobScheduler:b47fb6ed has started in 16.2631 ms +2021-09-02 17:43:23.995 +08:00 [DBG] Removing outdated records from table 'List'... +2021-09-02 17:43:24.015 +08:00 [DBG] delete from `List` where ExpireAt < @now limit @count; +2021-09-02 17:43:24.028 +08:00 [DBG] removed records count=0 +2021-09-02 17:43:24.057 +08:00 [DBG] Removing outdated records from table 'Set'... +2021-09-02 17:43:24.058 +08:00 [DBG] delete from `Set` where ExpireAt < @now limit @count; +2021-09-02 17:43:24.074 +08:00 [DBG] removed records count=0 +2021-09-02 17:43:24.075 +08:00 [DBG] Removing outdated records from table 'Hash'... +2021-09-02 17:43:24.076 +08:00 [DBG] delete from `Hash` where ExpireAt < @now limit @count; +2021-09-02 17:43:24.090 +08:00 [DBG] removed records count=0 +2021-09-02 17:43:24.323 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 17:43:24.487 +08:00 [INF] Initialized all ABP modules. +2021-09-02 17:43:24.559 +08:00 [INF] Now listening on: http://localhost:44315 +2021-09-02 17:43:24.560 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2021-09-02 17:43:24.560 +08:00 [INF] Hosting environment: Development +2021-09-02 17:43:24.560 +08:00 [INF] Content root path: D:\abp\aspnet-core\services\src\CompanyName.ProjectName.HttpApi.Host +2021-09-02 17:43:24.768 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/ - - +2021-09-02 17:43:26.396 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 17:43:26.456 +08:00 [INF] Route matched with {action = "Index", controller = "Home", area = "", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult Index() on controller CompanyName.ProjectName.Controllers.HomeController (CompanyName.ProjectName.HttpApi.Host). +2021-09-02 17:43:26.490 +08:00 [INF] Executing RedirectResult, redirecting to /swagger. +2021-09-02 17:43:26.496 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host) in 36.322ms +2021-09-02 17:43:26.497 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.HomeController.Index (CompanyName.ProjectName.HttpApi.Host)' +2021-09-02 17:43:26.515 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/ - - - 302 0 - 1748.7354ms +2021-09-02 17:43:26.531 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/index.html - - +2021-09-02 17:43:26.587 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/index.html - - - 200 - text/html;charset=utf-8 55.9408ms +2021-09-02 17:43:26.739 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - +2021-09-02 17:43:27.145 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:44315/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 405.5166ms +2021-09-02 17:43:53.912 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:44:19.691 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:44:19.698 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:44:19.705 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 13.3116ms +2021-09-02 17:44:19.708 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:44:19.709 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:44:19.780 +08:00 [INF] Successfully validated the token. +2021-09-02 17:44:19.787 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:19.803 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:44:20.904 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:44:20.920 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1116.6751ms +2021-09-02 17:44:20.921 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:20.949 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:21.171 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:21.171 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:21.175 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 1466.7699ms +2021-09-02 17:44:23.952 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:44:27.473 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:44:27.473 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:44:27.473 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4577ms +2021-09-02 17:44:27.475 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:44:27.475 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:44:27.477 +08:00 [INF] Successfully validated the token. +2021-09-02 17:44:27.479 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:27.479 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:44:27.513 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:44:27.514 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 34.5328ms +2021-09-02 17:44:27.514 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:27.517 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:27.559 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:27.559 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:27.559 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 84.5354ms +2021-09-02 17:44:38.488 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:44:38.489 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:44:38.489 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4925ms +2021-09-02 17:44:38.490 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:44:38.490 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:44:38.493 +08:00 [INF] Successfully validated the token. +2021-09-02 17:44:38.494 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:38.494 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:44:38.528 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:44:38.528 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.7408ms +2021-09-02 17:44:38.528 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:38.531 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:38.561 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:38.561 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:38.561 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 70.7330ms +2021-09-02 17:44:43.601 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:44:43.601 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:44:43.602 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.6505ms +2021-09-02 17:44:43.606 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:44:43.606 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:44:43.612 +08:00 [INF] Successfully validated the token. +2021-09-02 17:44:43.614 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:43.615 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:44:43.659 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:44:43.659 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.5933ms +2021-09-02 17:44:43.659 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:43.664 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:43.705 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:43.705 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:43.705 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 99.2438ms +2021-09-02 17:44:47.501 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:44:47.501 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:44:47.505 +08:00 [INF] Successfully validated the token. +2021-09-02 17:44:47.507 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:47.507 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:44:47.545 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:44:47.545 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.5038ms +2021-09-02 17:44:47.545 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:47.549 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:47.587 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:47.587 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:47.588 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 87.3358ms +2021-09-02 17:44:52.511 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:44:52.512 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:44:52.512 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 1.2537ms +2021-09-02 17:44:52.514 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:44:52.514 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:44:52.517 +08:00 [INF] Successfully validated the token. +2021-09-02 17:44:52.518 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:52.518 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:44:52.561 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:44:52.561 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 42.3446ms +2021-09-02 17:44:52.561 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:52.564 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:52.603 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:52.603 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:52.603 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 88.8862ms +2021-09-02 17:44:56.968 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:44:58.496 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:44:58.496 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:44:58.496 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4959ms +2021-09-02 17:44:58.499 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:44:58.499 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:44:58.502 +08:00 [INF] Successfully validated the token. +2021-09-02 17:44:58.503 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:58.503 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:44:58.548 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:44:58.549 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 45.0568ms +2021-09-02 17:44:58.549 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:44:58.554 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:58.591 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:58.591 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:44:58.591 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 92.5536ms +2021-09-02 17:45:01.108 +08:00 [DBG] 723 recurring job(s) processed by scheduler. +2021-09-02 17:45:01.474 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:45:01.474 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:01.476 +08:00 [INF] Successfully validated the token. +2021-09-02 17:45:01.477 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:01.478 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:45:01.511 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:45:01.511 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.4492ms +2021-09-02 17:45:01.511 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:01.514 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:01.553 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:01.553 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:01.553 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 79.2694ms +2021-09-02 17:45:04.541 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:45:04.541 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:04.542 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.6773ms +2021-09-02 17:45:04.543 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:45:04.544 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:04.546 +08:00 [INF] Successfully validated the token. +2021-09-02 17:45:04.548 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:04.549 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:45:05.172 +08:00 [ERR] Failed executing DbCommand (570ms) [Parameters=[@__ef_filter__p_0='?' (DbType = Boolean), @__p_1='?' (DbType = Int32), @__p_0='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30'] +SELECT `i`.`Id`, `i`.`ConcurrencyStamp`, `i`.`CreationTime`, `i`.`CreatorId`, `i`.`DeleterId`, `i`.`DeletionTime`, `i`.`Description`, `i`.`DisplayName`, `i`.`Emphasize`, `i`.`Enabled`, `i`.`ExtraProperties`, `i`.`IsDeleted`, `i`.`LastModificationTime`, `i`.`LastModifierId`, `i`.`Name`, `i`.`Required`, `i`.`ShowInDiscoveryDocument` +FROM `IdentityServerApiScopes` AS `i` +WHERE @__ef_filter__p_0 OR NOT (`i`.`IsDeleted`) +ORDER BY `i`.`CreationTime` DESC +LIMIT @__p_1 OFFSET @__p_0 +2021-09-02 17:45:05.294 +08:00 [ERR] An exception occurred while iterating over the results of a query for context type 'Volo.Abp.IdentityServer.EntityFrameworkCore.IdentityServerDbContext'. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() +2021-09-02 17:45:06.156 +08:00 [ERR] An error occurred using a transaction. +2021-09-02 17:45:06.173 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 17:45:06.174 +08:00 [ERR] The operation was canceled. +System.OperationCanceledException: The operation was canceled. + at System.Threading.CancellationToken.ThrowOperationCanceledException() + at System.Threading.CancellationToken.ThrowIfCancellationRequested() + at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 19 + at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 314 + at MySqlConnector.MySqlCommand.ExecuteDbDataReaderAsync(CommandBehavior behavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 307 + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReaderAsync(RelationalCommandParameterObject parameterObject, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.InitializeReaderAsync(DbContext _, Boolean result, CancellationToken cancellationToken) + at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.SplitQueryingEnumerable`1.AsyncEnumerator.MoveNextAsync() + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync[TSource](IQueryable`1 source, CancellationToken cancellationToken) + at Volo.Abp.IdentityServer.ApiScopes.ApiScopeRepository.GetListAsync(String sorting, Int32 skipCount, Int32 maxResultCount, String filter, Boolean includeDetails, CancellationToken cancellationToken) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at CompanyName.ProjectName.IdentityServers.ApiScopes.ApiScopeAppService.GetListAsync(PagingApiScopeListInput input) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Application\IdentityServers\ApiScopes\ApiScopeAppService.cs:line 25 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method1656(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 17:45:06.177 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 17:45:06.180 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 1631.5991ms +2021-09-02 17:45:06.180 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:06.228 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:06.228 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:06.229 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 500 - application/json;+charset=utf-8 1685.2131ms +2021-09-02 17:45:06.482 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:45:06.482 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:06.485 +08:00 [INF] Successfully validated the token. +2021-09-02 17:45:06.487 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:06.487 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:45:06.519 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:45:06.520 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 32.0125ms +2021-09-02 17:45:06.520 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:06.523 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:06.554 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:06.554 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:06.554 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 72.3012ms +2021-09-02 17:45:08.472 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:45:08.472 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:08.474 +08:00 [INF] Successfully validated the token. +2021-09-02 17:45:08.475 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:08.476 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:45:08.508 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:45:08.508 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 32.389ms +2021-09-02 17:45:08.508 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:08.511 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:08.553 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:08.553 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:08.553 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 81.2789ms +2021-09-02 17:45:10.644 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:45:10.645 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:10.645 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4789ms +2021-09-02 17:45:10.648 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:45:10.648 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:10.651 +08:00 [INF] Successfully validated the token. +2021-09-02 17:45:10.653 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:10.653 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:45:10.691 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:45:10.691 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.9635ms +2021-09-02 17:45:10.691 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:10.695 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:10.731 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:10.731 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:10.732 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 83.9492ms +2021-09-02 17:45:17.590 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:45:17.590 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:17.591 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5926ms +2021-09-02 17:45:17.594 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:45:17.594 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:17.597 +08:00 [INF] Successfully validated the token. +2021-09-02 17:45:17.598 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:17.599 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:45:17.635 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:45:17.635 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.6215ms +2021-09-02 17:45:17.635 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:17.639 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:17.679 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:17.679 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:17.680 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 85.7902ms +2021-09-02 17:45:21.480 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:45:21.480 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:21.483 +08:00 [INF] Successfully validated the token. +2021-09-02 17:45:21.484 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:21.484 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:45:21.515 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:45:21.516 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.2623ms +2021-09-02 17:45:21.516 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:21.519 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:21.559 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:21.559 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:21.559 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 79.7130ms +2021-09-02 17:45:24.474 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:45:24.475 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:24.475 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5693ms +2021-09-02 17:45:24.477 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:45:24.477 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:24.479 +08:00 [INF] Successfully validated the token. +2021-09-02 17:45:24.480 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:24.481 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:45:24.512 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:45:24.512 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.767ms +2021-09-02 17:45:24.513 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:24.516 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:24.546 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:24.546 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:24.546 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 69.4243ms +2021-09-02 17:45:26.475 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:45:26.475 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:26.478 +08:00 [INF] Successfully validated the token. +2021-09-02 17:45:26.479 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:26.480 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:45:26.513 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:45:26.513 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.4296ms +2021-09-02 17:45:26.513 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:26.519 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:26.556 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:26.556 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:26.556 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 81.5092ms +2021-09-02 17:45:27.270 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:45:29.472 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:45:29.472 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:29.474 +08:00 [INF] Successfully validated the token. +2021-09-02 17:45:29.475 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:29.476 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:45:29.507 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:45:29.507 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.886ms +2021-09-02 17:45:29.508 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:29.510 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:29.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:29.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:29.541 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 69.8376ms +2021-09-02 17:45:48.494 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:45:48.494 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:48.494 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.6717ms +2021-09-02 17:45:48.497 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:45:48.497 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:45:48.501 +08:00 [INF] Successfully validated the token. +2021-09-02 17:45:48.503 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:48.503 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:45:48.539 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:45:48.540 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 36.2055ms +2021-09-02 17:45:48.540 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:45:48.545 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:48.598 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:48.598 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:45:48.599 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 101.9356ms +2021-09-02 17:45:57.471 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:46:06.490 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:46:06.490 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:46:06.490 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.5310ms +2021-09-02 17:46:06.492 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:46:06.492 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:46:06.495 +08:00 [INF] Successfully validated the token. +2021-09-02 17:46:06.496 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:46:06.496 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:46:06.529 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:46:06.530 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 33.3765ms +2021-09-02 17:46:06.530 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:46:06.533 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:46:06.567 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:46:06.567 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:46:06.568 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 75.5705ms +2021-09-02 17:46:27.610 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:46:46.468 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:46:46.469 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:46:46.469 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4673ms +2021-09-02 17:46:46.470 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:46:46.471 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:46:46.473 +08:00 [INF] Successfully validated the token. +2021-09-02 17:46:46.475 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:46:46.475 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:46:46.507 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:46:46.507 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 31.9582ms +2021-09-02 17:46:46.507 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:46:46.510 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:46:46.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:46:46.541 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:46:46.541 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 70.8067ms +2021-09-02 17:46:49.489 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:46:49.489 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:46:49.493 +08:00 [INF] Successfully validated the token. +2021-09-02 17:46:49.496 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:46:49.496 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:46:49.540 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:46:49.540 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 44.3085ms +2021-09-02 17:46:49.540 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:46:49.547 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:46:49.587 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:46:49.587 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:46:49.587 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 98.3504ms +2021-09-02 17:46:59.988 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:47:01.070 +08:00 [DBG] 534 recurring job(s) processed by scheduler. +2021-09-02 17:47:24.662 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 17:47:24.663 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:47:24.663 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.6246ms +2021-09-02 17:47:24.664 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 17:47:24.665 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:47:24.667 +08:00 [INF] Successfully validated the token. +2021-09-02 17:47:24.669 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:47:24.671 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:47:25.067 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:47:25.069 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 397.6906ms +2021-09-02 17:47:25.069 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:47:25.079 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:47:25.119 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:47:25.119 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:47:25.119 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 454.8134ms +2021-09-02 17:47:30.046 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:47:38.558 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/update - - +2021-09-02 17:47:38.558 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:47:38.558 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/update - - - 204 - - 0.4515ms +2021-09-02 17:47:38.560 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/update application/json 143 +2021-09-02 17:47:38.560 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:47:38.563 +08:00 [INF] Successfully validated the token. +2021-09-02 17:47:38.564 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:47:38.566 +08:00 [INF] Route matched with {action = "Update", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.UpdateIdentityResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:47:38.716 +08:00 [WRN] ---------- RemoteServiceErrorInfo ---------- +{ + "code": null, + "message": "1231231不存在", + "details": null, + "data": {}, + "validationErrors": null +} + +2021-09-02 17:47:38.716 +08:00 [WRN] 1231231不存在 +Volo.Abp.UserFriendlyException: 1231231不存在 + at CompanyName.ProjectName.IdentityServer.IdentityResourceManager.UpdateAsync(String name, String displayName, String description, Boolean enabled, Boolean required, Boolean emphasize, Boolean showInDiscoveryDocument) in D:\abp\aspnet-core\services\src\CompanyName.ProjectName.Domain\IdentityServer\IdentityResourceManager.cs:line 77 + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Auditing.AuditingInterceptor.ProceedByLoggingAsync(IAbpMethodInvocation invocation, IAuditingHelper auditingHelper, IAuditLogScope auditLogScope) + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous(IInvocation invocation, IInvocationProceedInfo proceedInfo) + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) + at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync(IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) + at lambda_method2891(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) +2021-09-02 17:47:38.716 +08:00 [WRN] Code: +2021-09-02 17:47:38.716 +08:00 [WRN] Details: +2021-09-02 17:47:38.716 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2021-09-02 17:47:38.717 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 150.1479ms +2021-09-02 17:47:38.717 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:47:38.762 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:47:38.762 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:47:38.763 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/update application/json 143 - 500 - application/json;+charset=utf-8 202.7306ms +2021-09-02 17:47:38.871 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 17:47:38.871 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:47:38.871 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4927ms +2021-09-02 17:47:38.873 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 17:47:38.873 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:47:38.875 +08:00 [INF] Successfully validated the token. +2021-09-02 17:47:38.877 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:47:38.877 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:47:38.914 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:47:38.915 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.8798ms +2021-09-02 17:47:38.915 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:47:38.919 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:47:38.951 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:47:38.951 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:47:38.952 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 78.9935ms +2021-09-02 17:47:44.681 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 17:47:44.682 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:47:44.682 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4658ms +2021-09-02 17:47:44.683 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 17:47:44.683 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:47:44.686 +08:00 [INF] Successfully validated the token. +2021-09-02 17:47:44.687 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:47:44.687 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:47:44.723 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:47:44.724 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 37.2046ms +2021-09-02 17:47:44.724 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:47:44.730 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:47:44.763 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:47:44.763 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:47:44.764 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 80.4244ms +2021-09-02 17:48:00.173 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:48:23.922 +08:00 [INF] 1 servers were removed due to timeout +2021-09-02 17:48:23.930 +08:00 [DBG] Aggregating records in 'Counter' table... +2021-09-02 17:48:30.216 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:48:45.483 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 17:48:45.483 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:48:45.483 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4994ms +2021-09-02 17:48:45.485 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 17:48:45.486 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:48:45.489 +08:00 [INF] Successfully validated the token. +2021-09-02 17:48:45.492 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:48:45.492 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:48:45.544 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:48:45.545 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 52.876ms +2021-09-02 17:48:45.545 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:48:45.551 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:48:45.592 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:48:45.592 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:48:45.592 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 106.8834ms +2021-09-02 17:48:56.020 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/update - - +2021-09-02 17:48:56.020 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:48:56.021 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/update - - - 204 - - 0.4496ms +2021-09-02 17:48:56.022 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/update application/json 143 +2021-09-02 17:48:56.022 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:48:56.025 +08:00 [INF] Successfully validated the token. +2021-09-02 17:48:56.026 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:48:56.026 +08:00 [INF] Route matched with {action = "Update", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.UpdateIdentityResourceInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:48:56.055 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi) in 28.975ms +2021-09-02 17:48:56.055 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.UpdateAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:48:56.086 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:48:56.086 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:48:56.138 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:48:56.138 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:48:56.138 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/update application/json 143 - 204 - - 116.1439ms +2021-09-02 17:48:56.254 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - +2021-09-02 17:48:56.255 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:48:56.255 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/IdentityResource/page - - - 204 - - 0.4512ms +2021-09-02 17:48:56.256 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 +2021-09-02 17:48:56.256 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:48:56.259 +08:00 [INF] Successfully validated the token. +2021-09-02 17:48:56.260 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:48:56.260 +08:00 [INF] Route matched with {action = "GetList", controller = "IdentityResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:48:56.299 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.IdentityResources.Dtos.PagingIdentityResourceListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:48:56.299 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 38.8364ms +2021-09-02 17:48:56.299 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.IdentityResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:48:56.304 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:48:56.334 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:48:56.334 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:48:56.334 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/IdentityResource/page application/json 24 - 200 - application/json;+charset=utf-8 77.9882ms +2021-09-02 17:49:00.387 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:49:01.365 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - +2021-09-02 17:49:01.365 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:49:01.366 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiScope/page - - - 204 - - 0.4598ms +2021-09-02 17:49:01.367 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 +2021-09-02 17:49:01.367 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:49:01.370 +08:00 [INF] Successfully validated the token. +2021-09-02 17:49:01.371 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:49:01.371 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiScope", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:49:01.475 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos.PagingApiScopeListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:49:01.475 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi) in 104.196ms +2021-09-02 17:49:01.476 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiScopeController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:49:01.485 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:01.528 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:01.528 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:01.528 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiScope/page application/json 24 - 200 - application/json;+charset=utf-8 161.1394ms +2021-09-02 17:49:01.832 +08:00 [DBG] 1 recurring job(s) processed by scheduler. +2021-09-02 17:49:03.035 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - +2021-09-02 17:49:03.036 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:49:03.036 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/ApiResource/page - - - 204 - - 0.7913ms +2021-09-02 17:49:03.038 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 +2021-09-02 17:49:03.038 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:49:03.040 +08:00 [INF] Successfully validated the token. +2021-09-02 17:49:03.042 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:49:03.044 +08:00 [INF] Route matched with {action = "GetList", controller = "ApiResource", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Dtos.PagingApiRseourceListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:49:03.427 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Dtos.ApiResourceOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:49:03.433 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi) in 389.261ms +2021-09-02 17:49:03.433 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ApiResourceController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:49:03.444 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:03.489 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:03.489 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:03.490 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/ApiResource/page application/json 24 - 200 - application/json;+charset=utf-8 452.3570ms +2021-09-02 17:49:04.199 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 17:49:04.199 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:49:04.199 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.6578ms +2021-09-02 17:49:04.201 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 17:49:04.203 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:49:04.205 +08:00 [INF] Successfully validated the token. +2021-09-02 17:49:04.206 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:49:04.209 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:49:04.508 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:49:04.521 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 312.0338ms +2021-09-02 17:49:04.521 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:49:04.542 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:04.577 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:04.578 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:04.578 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 376.6894ms +2021-09-02 17:49:30.414 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:49:33.874 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - +2021-09-02 17:49:33.874 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:49:33.874 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/updateBasic - - - 204 - - 0.4931ms +2021-09-02 17:49:33.876 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/updateBasic application/json 706 +2021-09-02 17:49:33.876 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:49:33.878 +08:00 [INF] Successfully validated the token. +2021-09-02 17:49:33.880 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:49:33.882 +08:00 [INF] Route matched with {action = "UpdateBasicData", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task UpdateBasicDataAsync(CompanyName.ProjectName.IdentityServers.Clients.UpdataBasicDataInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:49:41.114 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi) in 7232.6611ms +2021-09-02 17:49:41.115 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.UpdateBasicDataAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:49:41.135 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:41.135 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:41.198 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:41.198 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:41.198 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/updateBasic application/json 706 - 204 - - 7322.9814ms +2021-09-02 17:49:41.383 +08:00 [INF] Request starting HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - +2021-09-02 17:49:41.383 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:49:41.383 +08:00 [INF] Request finished HTTP/1.1 OPTIONS http://localhost:44315/IdentityServer/Client/page - - - 204 - - 0.4813ms +2021-09-02 17:49:41.386 +08:00 [INF] Request starting HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 +2021-09-02 17:49:41.386 +08:00 [INF] CORS policy execution successful. +2021-09-02 17:49:41.389 +08:00 [INF] Successfully validated the token. +2021-09-02 17:49:41.390 +08:00 [INF] Executing endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:49:41.390 +08:00 [INF] Route matched with {action = "GetList", controller = "Client", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput]] GetListAsync(CompanyName.ProjectName.IdentityServers.Clients.PagingClientListInput) on controller CompanyName.ProjectName.Controllers.IdentityServers.ClientController (CompanyName.ProjectName.HttpApi). +2021-09-02 17:49:41.454 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[CompanyName.ProjectName.IdentityServers.Clients.PagingClientListOutput, CompanyName.ProjectName.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. +2021-09-02 17:49:41.456 +08:00 [INF] Executed action CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi) in 65.6495ms +2021-09-02 17:49:41.456 +08:00 [INF] Executed endpoint 'CompanyName.ProjectName.Controllers.IdentityServers.ClientController.GetListAsync (CompanyName.ProjectName.HttpApi)' +2021-09-02 17:49:41.462 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:41.497 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:41.497 +08:00 [DBG] Added 0 entity changes to the current audit log +2021-09-02 17:49:41.497 +08:00 [INF] Request finished HTTP/1.1 POST http://localhost:44315/IdentityServer/Client/page application/json 24 - 200 - application/json;+charset=utf-8 111.8740ms +2021-09-02 17:50:00.555 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:50:30.570 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:51:00.707 +08:00 [DBG] Server szqh003802a:28680:8bc41207 heartbeat successfully sent +2021-09-02 17:51:02.534 +08:00 [DBG] 1 recurring job(s) processed by scheduler. diff --git a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/ProjectNameHttpApiHostModule.cs b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/ProjectNameHttpApiHostModule.cs index 69fccb6f..d491ba5f 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/ProjectNameHttpApiHostModule.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi.Host/ProjectNameHttpApiHostModule.cs @@ -40,6 +40,7 @@ using Volo.Abp.Localization; using Volo.Abp.Modularity; using Volo.Abp.Swashbuckle; using Volo.Abp.VirtualFileSystem; +using System.Threading.Tasks; namespace CompanyName.ProjectName { @@ -154,6 +155,7 @@ namespace CompanyName.ProjectName }); } + /// /// 配置JWT /// @@ -181,6 +183,44 @@ namespace CompanyName.ProjectName IssuerSigningKey = new SymmetricSecurityKey(Encoding.ASCII.GetBytes(configuration["Jwt:SecurityKey"])) }; + + options.Events = new JwtBearerEvents + { + OnMessageReceived = currentContext => + { + var accessToken = currentContext.Request.Query["access_token"]; + // 如果请求来自signalr + var path = currentContext.HttpContext.Request.Path; + if (path.StartsWithSegments("/signalr")) + { + currentContext.Token = accessToken; + } + + // 如果请求来自hangfire + if (!path.ToString().StartsWith("/hangfire")) + { + return Task.CompletedTask; + } + + currentContext.HttpContext.Response.Headers.Remove("X-Frame-Options"); + if (!string.IsNullOrEmpty(accessToken)) + { + currentContext.Token = accessToken; + currentContext.HttpContext.Response.Cookies + .Append("HangfireCookie", accessToken); + } + else + { + var cookies = currentContext.Request.Cookies; + if (cookies.ContainsKey("HangfireCookie")) + { + currentContext.Token = cookies["HangfireCookie"]; + } + } + + return Task.CompletedTask; + } + }; }); } @@ -340,6 +380,7 @@ namespace CompanyName.ProjectName private void ConfigureCors(ServiceConfigurationContext context, IConfiguration configuration) { + context.Services.AddAntiforgery(o => o.SuppressXFrameOptionsHeader = true); context.Services.AddCors(options => { options.AddPolicy(DefaultCorsPolicyName, builder => diff --git a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi/Controllers/IdentityServers/ApiScopeController.cs b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi/Controllers/IdentityServers/ApiScopeController.cs index 0a1f24d0..03d8d4b1 100644 --- a/aspnet-core/services/src/CompanyName.ProjectName.HttpApi/Controllers/IdentityServers/ApiScopeController.cs +++ b/aspnet-core/services/src/CompanyName.ProjectName.HttpApi/Controllers/IdentityServers/ApiScopeController.cs @@ -1,4 +1,7 @@ -using System.Threading.Tasks; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using CompanyName.ProjectName.Extensions.Customs.Dtos; using CompanyName.ProjectName.IdentityServers.ApiScopes; using CompanyName.ProjectName.IdentityServers.ApiScopes.Dtos; using CompanyName.ProjectName.Publics.Dtos; @@ -45,5 +48,11 @@ namespace CompanyName.ProjectName.Controllers.IdentityServers { return _apiScopeAppService.DeleteAsync(input); } + [HttpPost("all")] + [SwaggerOperation(summary: "获取所有ApiScope", Tags = new[] {"ApiScope"})] + public Task>> FindAllAsync() + { + return _apiScopeAppService.FindAllAsync(); + } } } \ No newline at end of file diff --git a/vben271/.editorconfig b/vben271/.editorconfig new file mode 100644 index 00000000..dccf841d --- /dev/null +++ b/vben271/.editorconfig @@ -0,0 +1,19 @@ +root = true + +[*] +charset=utf-8 +end_of_line=lf +insert_final_newline=true +indent_style=space +indent_size=2 +max_line_length = 100 + +[*.{yml,yaml,json}] +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false + +[Makefile] +indent_style = tab diff --git a/vben271/.env b/vben271/.env new file mode 100644 index 00000000..06697b6d --- /dev/null +++ b/vben271/.env @@ -0,0 +1,8 @@ +# port +VITE_PORT = 4200 + +# spa-title +VITE_GLOB_APP_TITLE = Abp Vnext + +# spa shortname +VITE_GLOB_APP_SHORT_NAME = Abp Vnext \ No newline at end of file diff --git a/vben271/.env.development b/vben271/.env.development new file mode 100644 index 00000000..ede62e82 --- /dev/null +++ b/vben271/.env.development @@ -0,0 +1,31 @@ +# Whether to open mock +VITE_USE_MOCK = true + +# public path +VITE_PUBLIC_PATH = / + +# Cross-domain proxy, you can configure multiple +# Please note that no line breaks +VITE_PROXY = [["/basic-api","http://localhost:3000"],["/upload","http://localhost:3300/upload"]] +# VITE_PROXY=[["/api","https://vvbin.cn/test"]] + +# Delete console +VITE_DROP_CONSOLE = false + +# Basic interface address SPA +VITE_GLOB_API_URL=/basic-api + +# File upload address, optional +VITE_GLOB_UPLOAD_URL=/upload + +# Interface prefix +VITE_GLOB_API_URL_PREFIX= + + +VITE_BUILD_COMPRESS = 'none' +# 认证授权服务器地址 +VITE_AUTH_URL='http://sts.xx.cn' + +# 接口地址 + +VITE_API_URL= http://localhost:44315 \ No newline at end of file diff --git a/vben271/.env.production b/vben271/.env.production new file mode 100644 index 00000000..a0bdfb7f --- /dev/null +++ b/vben271/.env.production @@ -0,0 +1,35 @@ +# Whether to open mock +VITE_USE_MOCK = true + +# public path +VITE_PUBLIC_PATH = / + +# Delete console +VITE_DROP_CONSOLE = true + +# Whether to enable gzip or brotli compression +# Optional: gzip | brotli | none +# If you need multiple forms, you can use `,` to separate +VITE_BUILD_COMPRESS = 'none' + +# Whether to delete origin files when using compress, default false +VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE = false + +# Basic interface address SPA +VITE_GLOB_API_URL=/basic-api + +# File upload address, optional +# It can be forwarded by nginx or write the actual address directly +VITE_GLOB_UPLOAD_URL=/upload + +# Interface prefix +VITE_GLOB_API_URL_PREFIX= + +# Whether to enable image compression +VITE_USE_IMAGEMIN= true + +# use pwa +VITE_USE_PWA = false + +# Is it compatible with older browsers +VITE_LEGACY = false diff --git a/vben271/.env.test b/vben271/.env.test new file mode 100644 index 00000000..469b307d --- /dev/null +++ b/vben271/.env.test @@ -0,0 +1,36 @@ +NODE_ENV=production +# Whether to open mock +VITE_USE_MOCK = true + +# public path +VITE_PUBLIC_PATH = / + +# Delete console +VITE_DROP_CONSOLE = true + +# Whether to enable gzip or brotli compression +# Optional: gzip | brotli | none +# If you need multiple forms, you can use `,` to separate +VITE_BUILD_COMPRESS = 'none' + +# Whether to delete origin files when using compress, default false +VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE = false + +# Basic interface address SPA +VITE_GLOB_API_URL=/basic-api + +# File upload address, optional +# It can be forwarded by nginx or write the actual address directly +VITE_GLOB_UPLOAD_URL=/upload + +# Interface prefix +VITE_GLOB_API_URL_PREFIX= + +# Whether to enable image compression +VITE_USE_IMAGEMIN= true + +# use pwa +VITE_USE_PWA = false + +# Is it compatible with older browsers +VITE_LEGACY = false diff --git a/vben271/.eslintignore b/vben271/.eslintignore new file mode 100644 index 00000000..348631b2 --- /dev/null +++ b/vben271/.eslintignore @@ -0,0 +1,15 @@ + +*.sh +node_modules +*.md +*.woff +*.ttf +.vscode +.idea +dist +/public +/docs +.husky +.local +/bin +Dockerfile diff --git a/vben271/.eslintrc.js b/vben271/.eslintrc.js new file mode 100644 index 00000000..5fcac9eb --- /dev/null +++ b/vben271/.eslintrc.js @@ -0,0 +1,78 @@ +// @ts-check +const { defineConfig } = require('eslint-define-config'); +module.exports = defineConfig({ + root: true, + env: { + browser: true, + node: true, + es6: true, + }, + parser: 'vue-eslint-parser', + parserOptions: { + parser: '@typescript-eslint/parser', + ecmaVersion: 2020, + sourceType: 'module', + jsxPragma: 'React', + ecmaFeatures: { + jsx: true, + }, + }, + extends: [ + 'plugin:vue/vue3-recommended', + 'plugin:@typescript-eslint/recommended', + 'prettier', + 'plugin:prettier/recommended', + 'plugin:jest/recommended', + ], + rules: { + 'vue/script-setup-uses-vars': 'error', + '@typescript-eslint/ban-ts-ignore': 'off', + '@typescript-eslint/explicit-function-return-type': 'off', + '@typescript-eslint/no-explicit-any': 'off', + '@typescript-eslint/no-var-requires': 'off', + '@typescript-eslint/no-empty-function': 'off', + 'vue/custom-event-name-casing': 'off', + 'no-use-before-define': 'off', + '@typescript-eslint/no-use-before-define': 'off', + '@typescript-eslint/ban-ts-comment': 'off', + '@typescript-eslint/ban-types': 'off', + '@typescript-eslint/no-non-null-assertion': 'off', + '@typescript-eslint/explicit-module-boundary-types': 'off', + '@typescript-eslint/no-unused-vars': [ + 'error', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + }, + ], + 'no-unused-vars': [ + 'error', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + }, + ], + 'space-before-function-paren': 'off', + + 'vue/attributes-order': 'off', + 'vue/one-component-per-file': 'off', + 'vue/html-closing-bracket-newline': 'off', + 'vue/max-attributes-per-line': 'off', + 'vue/multiline-html-element-content-newline': 'off', + 'vue/singleline-html-element-content-newline': 'off', + 'vue/attribute-hyphenation': 'off', + 'vue/require-default-prop': 'off', + 'vue/html-self-closing': [ + 'error', + { + html: { + void: 'always', + normal: 'never', + component: 'always', + }, + svg: 'always', + math: 'always', + }, + ], + }, +}); diff --git a/vben271/.gitignore b/vben271/.gitignore new file mode 100644 index 00000000..a4b670db --- /dev/null +++ b/vben271/.gitignore @@ -0,0 +1,29 @@ +node_modules +.DS_Store +dist +.npmrc +.cache + +tests/server/static +tests/server/static/upload + +.local +# local env files +.env.local +.env.*.local +.eslintcache + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +# .vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/vben271/.prettierignore b/vben271/.prettierignore new file mode 100644 index 00000000..f7e39e60 --- /dev/null +++ b/vben271/.prettierignore @@ -0,0 +1,9 @@ +/dist/* +.local +.output.js +/node_modules/** + +**/*.svg +**/*.sh + +/public/* diff --git a/vben271/.stylelintignore b/vben271/.stylelintignore new file mode 100644 index 00000000..05170761 --- /dev/null +++ b/vben271/.stylelintignore @@ -0,0 +1,3 @@ +/dist/* +/public/* +public/* diff --git a/vben271/.yarnclean b/vben271/.yarnclean new file mode 100644 index 00000000..3e556ef3 --- /dev/null +++ b/vben271/.yarnclean @@ -0,0 +1,48 @@ +# test directories +__tests__ +test +tests +powered-test + +# asset directories +docs +doc +website +images +assets + +# examples +example +examples + +# code coverage directories +coverage +.nyc_output + +# build scripts +Makefile +Gulpfile.js +Gruntfile.js + +# configs +appveyor.yml +circle.yml +codeship-services.yml +codeship-steps.yml +wercker.yml +.tern-project +.gitattributes +.editorconfig +.*ignore +.eslintrc +.jshintrc +.flowconfig +.documentup.json +.yarn-metadata.json +.travis.yml + +# misc +*.md + +!istanbul-reports/lib/html/assets +!istanbul-api/node_modules/istanbul-reports/lib/html/assets diff --git a/vben271/package-lock.json b/vben271/package-lock.json new file mode 100644 index 00000000..2f9049df --- /dev/null +++ b/vben271/package-lock.json @@ -0,0 +1,17651 @@ +{ + "name": "vben-admin", + "version": "2.7.1", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@ant-design/colors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-5.1.1.tgz", + "integrity": "sha512-Txy4KpHrp3q4XZdfgOBqLl+lkQIc3tEvHXOimRN1giX1AEC7mGtyrO9p8iRGJ3FLuVMGa2gNEzQyghVymLttKQ==", + "requires": { + "@ctrl/tinycolor": "^3.3.1" + } + }, + "@ant-design/icons-svg": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.1.0.tgz", + "integrity": "sha512-Fi03PfuUqRs76aI3UWYpP864lkrfPo0hluwGqh7NJdLhvH4iRDc3jbJqZIvRDLHKbXrvAfPPV3+zjUccfFvWOQ==" + }, + "@ant-design/icons-vue": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@ant-design/icons-vue/-/icons-vue-6.0.1.tgz", + "integrity": "sha512-HigIgEVV6bbcrz2A92/qDzi/aKWB5EC6b6E1mxMB6aQA7ksiKY+gi4U94TpqyEIIhR23uaDrjufJ+xCZQ+vx6Q==", + "requires": { + "@ant-design/colors": "^5.0.0", + "@ant-design/icons-svg": "^4.0.0", + "@types/lodash": "^4.14.165", + "lodash": "^4.17.15" + } + }, + "@antfu/utils": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/@antfu/utils/-/utils-0.2.4.tgz", + "integrity": "sha512-2bZNkVfL9IZESmvE26UKi8SzyvSoaIsGXDcnbHFMtmGMqUiB1fXpAJ1ijGf+tSqKRQ5yagck2U1Qk0p+705/kw==", + "dev": true, + "requires": { + "@types/throttle-debounce": "^2.1.0" + } + }, + "@apideck/better-ajv-errors": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.2.5.tgz", + "integrity": "sha512-Pm1fAqCT8OEfBVLddU3fWZ/URWpGGhkvlsBIgn9Y2jJlcNumo0gNzPsQswDJTiA8HcKpCjOhWQOgkA9kXR4Ghg==", + "dev": true, + "requires": { + "json-schema": "^0.3.0", + "jsonpointer": "^4.1.0", + "leven": "^3.1.0" + } + }, + "@babel/code-frame": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz", + "integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.14.5" + } + }, + "@babel/compat-data": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz", + "integrity": "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==", + "dev": true + }, + "@babel/core": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.15.0.tgz", + "integrity": "sha512-tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.15.0", + "@babel/helper-compilation-targets": "^7.15.0", + "@babel/helper-module-transforms": "^7.15.0", + "@babel/helpers": "^7.14.8", + "@babel/parser": "^7.15.0", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.15.0", + "@babel/types": "^7.15.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.0.tgz", + "integrity": "sha512-eKl4XdMrbpYvuB505KTta4AV9g+wWzmVBW69tX0H2NwKVKd2YJbKgyK6M8j/rgLbmHOYJn6rUklV677nOyJrEQ==", + "dev": true, + "requires": { + "@babel/types": "^7.15.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz", + "integrity": "sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz", + "integrity": "sha512-YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w==", + "dev": true, + "requires": { + "@babel/helper-explode-assignable-expression": "^7.14.5", + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.0.tgz", + "integrity": "sha512-h+/9t0ncd4jfZ8wsdAsoIxSa61qhBYlycXiHWqJaQBCXAhDCMbPRSMTGnZIkkmt1u4ag+UQmuqcILwqKzZ4N2A==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.0.tgz", + "integrity": "sha512-MdmDXgvTIi4heDVX/e9EFfeGpugqm9fobBVg/iioE8kueXrOHdRDe36FAY7SnE9xXLVeYCoJR/gdrBEIHRC83Q==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-member-expression-to-functions": "^7.15.0", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-replace-supers": "^7.15.0", + "@babel/helper-split-export-declaration": "^7.14.5" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz", + "integrity": "sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz", + "integrity": "sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz", + "integrity": "sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-function-name": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz", + "integrity": "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz", + "integrity": "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz", + "integrity": "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.0.tgz", + "integrity": "sha512-Jq8H8U2kYiafuj2xMTPQwkTBnEEdGKpT35lJEQsRRjnG0LW3neucsaMWLgKcwu3OHKNeYugfw+Z20BXBSEs2Lg==", + "dev": true, + "requires": { + "@babel/types": "^7.15.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz", + "integrity": "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-module-transforms": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.0.tgz", + "integrity": "sha512-RkGiW5Rer7fpXv9m1B3iHIFDZdItnO2/BLfWVW/9q7+KqQSDY5kUfQEbzdXM1MVhJGcugKV7kRrNVzNxmk7NBg==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-replace-supers": "^7.15.0", + "@babel/helper-simple-access": "^7.14.8", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.9", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.15.0", + "@babel/types": "^7.15.0" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz", + "integrity": "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", + "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz", + "integrity": "sha512-rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-wrap-function": "^7.14.5", + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-replace-supers": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.0.tgz", + "integrity": "sha512-6O+eWrhx+HEra/uJnifCwhwMd6Bp5+ZfZeJwbqUTuqkhIT6YcRhiZCOOFChRypOIe0cV46kFrRBlm+t5vHCEaA==", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.15.0", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/traverse": "^7.15.0", + "@babel/types": "^7.15.0" + } + }, + "@babel/helper-simple-access": { + "version": "7.14.8", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz", + "integrity": "sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg==", + "dev": true, + "requires": { + "@babel/types": "^7.14.8" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz", + "integrity": "sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz", + "integrity": "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==", + "dev": true, + "requires": { + "@babel/types": "^7.14.5" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz", + "integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==" + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", + "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz", + "integrity": "sha512-YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.14.5", + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" + } + }, + "@babel/helpers": { + "version": "7.15.3", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.3.tgz", + "integrity": "sha512-HwJiz52XaS96lX+28Tnbu31VeFSQJGOeKHJeaEPQlTl7PnlhFElWPj8tUXtqFIzeN86XxXoBr+WFAyK2PPVz6g==", + "dev": true, + "requires": { + "@babel/template": "^7.14.5", + "@babel/traverse": "^7.15.0", + "@babel/types": "^7.15.0" + } + }, + "@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", + "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.15.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.3.tgz", + "integrity": "sha512-O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA==" + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz", + "integrity": "sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.9.tgz", + "integrity": "sha512-d1lnh+ZnKrFKwtTYdw320+sQWCTwgkB9fmUhNXRADA4akR6wLjaruSGnIEUjpt9HCOwTr4ynFTKu19b7rFRpmw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz", + "integrity": "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz", + "integrity": "sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz", + "integrity": "sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz", + "integrity": "sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz", + "integrity": "sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz", + "integrity": "sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz", + "integrity": "sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz", + "integrity": "sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.14.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz", + "integrity": "sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.14.7", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.14.5" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz", + "integrity": "sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz", + "integrity": "sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz", + "integrity": "sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz", + "integrity": "sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz", + "integrity": "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz", + "integrity": "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz", + "integrity": "sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz", + "integrity": "sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz", + "integrity": "sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.15.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz", + "integrity": "sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.9.tgz", + "integrity": "sha512-NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz", + "integrity": "sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.14.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz", + "integrity": "sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz", + "integrity": "sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz", + "integrity": "sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz", + "integrity": "sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz", + "integrity": "sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz", + "integrity": "sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz", + "integrity": "sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz", + "integrity": "sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz", + "integrity": "sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.0.tgz", + "integrity": "sha512-3H/R9s8cXcOGE8kgMlmjYYC9nqr5ELiPkJn4q0mypBrjhYQoc+5/Maq69vV4xRPWnkzZuwJPf5rArxpB/35Cig==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.15.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.14.8", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz", + "integrity": "sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz", + "integrity": "sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz", + "integrity": "sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz", + "integrity": "sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz", + "integrity": "sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz", + "integrity": "sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz", + "integrity": "sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz", + "integrity": "sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==", + "dev": true, + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz", + "integrity": "sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz", + "integrity": "sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz", + "integrity": "sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz", + "integrity": "sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz", + "integrity": "sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz", + "integrity": "sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.0.tgz", + "integrity": "sha512-WIIEazmngMEEHDaPTx0IZY48SaAmjVWe3TRSX7cmJXn0bEv9midFzAjxiruOWYIVf5iQ10vFx7ASDpgEO08L5w==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.15.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-typescript": "^7.14.5" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz", + "integrity": "sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz", + "integrity": "sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/preset-env": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.0.tgz", + "integrity": "sha512-FhEpCNFCcWW3iZLg0L2NPE9UerdtsCR6ZcsGHUX6Om6kbCQeL5QZDqFDmeNHC6/fy6UH3jEge7K4qG5uC9In0Q==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-compilation-targets": "^7.15.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-async-generator-functions": "^7.14.9", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-class-static-block": "^7.14.5", + "@babel/plugin-proposal-dynamic-import": "^7.14.5", + "@babel/plugin-proposal-export-namespace-from": "^7.14.5", + "@babel/plugin-proposal-json-strings": "^7.14.5", + "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", + "@babel/plugin-proposal-numeric-separator": "^7.14.5", + "@babel/plugin-proposal-object-rest-spread": "^7.14.7", + "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-private-methods": "^7.14.5", + "@babel/plugin-proposal-private-property-in-object": "^7.14.5", + "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.14.5", + "@babel/plugin-transform-async-to-generator": "^7.14.5", + "@babel/plugin-transform-block-scoped-functions": "^7.14.5", + "@babel/plugin-transform-block-scoping": "^7.14.5", + "@babel/plugin-transform-classes": "^7.14.9", + "@babel/plugin-transform-computed-properties": "^7.14.5", + "@babel/plugin-transform-destructuring": "^7.14.7", + "@babel/plugin-transform-dotall-regex": "^7.14.5", + "@babel/plugin-transform-duplicate-keys": "^7.14.5", + "@babel/plugin-transform-exponentiation-operator": "^7.14.5", + "@babel/plugin-transform-for-of": "^7.14.5", + "@babel/plugin-transform-function-name": "^7.14.5", + "@babel/plugin-transform-literals": "^7.14.5", + "@babel/plugin-transform-member-expression-literals": "^7.14.5", + "@babel/plugin-transform-modules-amd": "^7.14.5", + "@babel/plugin-transform-modules-commonjs": "^7.15.0", + "@babel/plugin-transform-modules-systemjs": "^7.14.5", + "@babel/plugin-transform-modules-umd": "^7.14.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.9", + "@babel/plugin-transform-new-target": "^7.14.5", + "@babel/plugin-transform-object-super": "^7.14.5", + "@babel/plugin-transform-parameters": "^7.14.5", + "@babel/plugin-transform-property-literals": "^7.14.5", + "@babel/plugin-transform-regenerator": "^7.14.5", + "@babel/plugin-transform-reserved-words": "^7.14.5", + "@babel/plugin-transform-shorthand-properties": "^7.14.5", + "@babel/plugin-transform-spread": "^7.14.6", + "@babel/plugin-transform-sticky-regex": "^7.14.5", + "@babel/plugin-transform-template-literals": "^7.14.5", + "@babel/plugin-transform-typeof-symbol": "^7.14.5", + "@babel/plugin-transform-unicode-escapes": "^7.14.5", + "@babel/plugin-transform-unicode-regex": "^7.14.5", + "@babel/preset-modules": "^0.1.4", + "@babel/types": "^7.15.0", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.2", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "core-js-compat": "^3.16.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/preset-modules": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", + "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/runtime": { + "version": "7.15.3", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.3.tgz", + "integrity": "sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/standalone": { + "version": "7.15.3", + "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.15.3.tgz", + "integrity": "sha512-Bst2YWEyQ2ROyO0+jxPVnnkSmUh44/x54+LSbe5M4N5LGfOkxpajEUKVE4ndXtIVrLlHCyuiqCPwv3eC1ItnCg==", + "dev": true + }, + "@babel/template": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz", + "integrity": "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.14.5", + "@babel/types": "^7.14.5" + } + }, + "@babel/traverse": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.0.tgz", + "integrity": "sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.15.0", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.15.0", + "@babel/types": "^7.15.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz", + "integrity": "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==", + "requires": { + "@babel/helper-validator-identifier": "^7.14.9", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "@commitlint/cli": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-13.1.0.tgz", + "integrity": "sha512-xN/uNYWtGTva5OMSd+xA6e6/c2jk8av7MUbdd6w2cw89u6z3fAWoyiH87X0ewdSMNYmW/6B3L/2dIVGHRDID5w==", + "dev": true, + "requires": { + "@commitlint/format": "^13.1.0", + "@commitlint/lint": "^13.1.0", + "@commitlint/load": "^13.1.0", + "@commitlint/read": "^13.1.0", + "@commitlint/types": "^13.1.0", + "lodash": "^4.17.19", + "resolve-from": "5.0.0", + "resolve-global": "1.0.0", + "yargs": "^17.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yargs": { + "version": "17.1.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.1.1.tgz", + "integrity": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } + }, + "@commitlint/config-conventional": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-13.1.0.tgz", + "integrity": "sha512-zukJXqdr6jtMiVRy3tTHmwgKcUMGfqKDEskRigc5W3k2aYF4gBAtCEjMAJGZgSQE4DMcHeok0pEV2ANmTpb0cw==", + "dev": true, + "requires": { + "conventional-changelog-conventionalcommits": "^4.3.1" + } + }, + "@commitlint/ensure": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-13.1.0.tgz", + "integrity": "sha512-NRGyjOdZQnlYwm9it//BZJ2Vm+4x7G9rEnHpLCvNKYY0c6RA8Qf7hamLAB8dWO12RLuFt06JaOpHZoTt/gHutA==", + "dev": true, + "requires": { + "@commitlint/types": "^13.1.0", + "lodash": "^4.17.19" + } + }, + "@commitlint/execute-rule": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-13.0.0.tgz", + "integrity": "sha512-lBz2bJhNAgkkU/rFMAw3XBNujbxhxlaFHY3lfKB/MxpAa+pIfmWB3ig9i1VKe0wCvujk02O0WiMleNaRn2KJqw==", + "dev": true + }, + "@commitlint/format": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-13.1.0.tgz", + "integrity": "sha512-n46rYvzf+6Sm99TJjTLjJBkjm6JVcklt31lDO5Q+pCIV0NnJ4qIUcwa6wIL9a9Vqb1XzlMgtp27E0zyYArkvSg==", + "dev": true, + "requires": { + "@commitlint/types": "^13.1.0", + "chalk": "^4.0.0" + } + }, + "@commitlint/is-ignored": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-13.1.0.tgz", + "integrity": "sha512-P6zenLE5Tn3FTNjRzmL9+/KooTXEI0khA2TmUbuei9KiycemeO4q7Xk7w7aXwFPNAbN0O9oI7z3z7cFpzKJWmQ==", + "dev": true, + "requires": { + "@commitlint/types": "^13.1.0", + "semver": "7.3.5" + } + }, + "@commitlint/lint": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-13.1.0.tgz", + "integrity": "sha512-qH9AYSQDDTaSWSdtOvB3G1RdPpcYSgddAdFYqpFewlKQ1GJj/L+sM7vwqCG7/ip6AiM04Sry1sgmFzaEoFREUA==", + "dev": true, + "requires": { + "@commitlint/is-ignored": "^13.1.0", + "@commitlint/parse": "^13.1.0", + "@commitlint/rules": "^13.1.0", + "@commitlint/types": "^13.1.0" + } + }, + "@commitlint/load": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-13.1.0.tgz", + "integrity": "sha512-zlZbjJCWnWmBOSwTXis8H7I6pYk6JbDwOCuARA6B9Y/qt2PD+NCo0E/7EuaaFoxjHl+o56QR5QttuMBrf+BJzg==", + "dev": true, + "requires": { + "@commitlint/execute-rule": "^13.0.0", + "@commitlint/resolve-extends": "^13.0.0", + "@commitlint/types": "^13.1.0", + "chalk": "^4.0.0", + "cosmiconfig": "^7.0.0", + "lodash": "^4.17.19", + "resolve-from": "^5.0.0" + } + }, + "@commitlint/message": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-13.0.0.tgz", + "integrity": "sha512-W/pxhesVEk8747BEWJ+VGQ9ILHmCV27/pEwJ0hGny1wqVquUR8SxvScRCbUjHCB1YtWX4dEnOPXOS9CLH/CX7A==", + "dev": true + }, + "@commitlint/parse": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-13.1.0.tgz", + "integrity": "sha512-xFybZcqBiKVjt6vTStvQkySWEUYPI0AcO4QQELyy29o8EzYZqWkhUfrb7K61fWiHsplWL1iL6F3qCLoxSgTcrg==", + "dev": true, + "requires": { + "@commitlint/types": "^13.1.0", + "conventional-changelog-angular": "^5.0.11", + "conventional-commits-parser": "^3.0.0" + } + }, + "@commitlint/read": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-13.1.0.tgz", + "integrity": "sha512-NrVe23GMKyL6i1yDJD8IpqCBzhzoS3wtLfDj8QBzc01Ov1cYBmDojzvBklypGb+MLJM1NbzmRM4PR5pNX0U/NQ==", + "dev": true, + "requires": { + "@commitlint/top-level": "^13.0.0", + "@commitlint/types": "^13.1.0", + "fs-extra": "^10.0.0", + "git-raw-commits": "^2.0.0" + } + }, + "@commitlint/resolve-extends": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-13.0.0.tgz", + "integrity": "sha512-1SyaE+UOsYTkQlTPUOoj4NwxQhGFtYildVS/d0TJuK8a9uAJLw7bhCLH2PEeH5cC2D1do4Eqhx/3bLDrSLH3hg==", + "dev": true, + "requires": { + "import-fresh": "^3.0.0", + "lodash": "^4.17.19", + "resolve-from": "^5.0.0", + "resolve-global": "^1.0.0" + } + }, + "@commitlint/rules": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-13.1.0.tgz", + "integrity": "sha512-b6F+vBqEXsHVghrhomG0Y6YJimHZqkzZ0n5QEpk03dpBXH2OnsezpTw5e+GvbyYCc7PutGbYVQkytuv+7xCxYA==", + "dev": true, + "requires": { + "@commitlint/ensure": "^13.1.0", + "@commitlint/message": "^13.0.0", + "@commitlint/to-lines": "^13.0.0", + "@commitlint/types": "^13.1.0", + "execa": "^5.0.0" + } + }, + "@commitlint/to-lines": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-13.0.0.tgz", + "integrity": "sha512-mzxWwCio1M4/kG9/69TTYqrraQ66LmtJCYTzAZdZ2eJX3I5w52pSjyP/DJzAUVmmJCYf2Kw3s+RtNVShtnZ+Rw==", + "dev": true + }, + "@commitlint/top-level": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-13.0.0.tgz", + "integrity": "sha512-baBy3MZBF28sR93yFezd4a5TdHsbXaakeladfHK9dOcGdXo9oQe3GS5hP3BmlN680D6AiQSN7QPgEJgrNUWUCg==", + "dev": true, + "requires": { + "find-up": "^5.0.0" + }, + "dependencies": { + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + } + } + }, + "@commitlint/types": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-13.1.0.tgz", + "integrity": "sha512-zcVjuT+OfKt8h91vhBxt05RMcTGEx6DM7Q9QZeuMbXFk6xgbsSEDMMapbJPA1bCZ81fa/1OQBijSYPrKvtt06g==", + "dev": true, + "requires": { + "chalk": "^4.0.0" + } + }, + "@cspotcode/source-map-consumer": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz", + "integrity": "sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==", + "dev": true + }, + "@cspotcode/source-map-support": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.6.1.tgz", + "integrity": "sha512-DX3Z+T5dt1ockmPdobJS/FAsQPW4V4SrWEhD2iYQT2Cb2tQsiMnYxrcUH9By/Z3B+v0S5LMBkQtV/XOBbpLEOg==", + "dev": true, + "requires": { + "@cspotcode/source-map-consumer": "0.8.0" + } + }, + "@ctrl/tinycolor": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.4.0.tgz", + "integrity": "sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ==" + }, + "@emmetio/abbreviation": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.2.2.tgz", + "integrity": "sha512-TtE/dBnkTCct8+LntkqVrwqQao6EnPAs1YN3cUgxOxTaBlesBCY37ROUAVZrRlG64GNnVShdl/b70RfAI3w5lw==", + "dev": true, + "requires": { + "@emmetio/scanner": "^1.0.0" + } + }, + "@emmetio/css-abbreviation": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.4.tgz", + "integrity": "sha512-qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw==", + "dev": true, + "requires": { + "@emmetio/scanner": "^1.0.0" + } + }, + "@emmetio/scanner": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@emmetio/scanner/-/scanner-1.0.0.tgz", + "integrity": "sha512-8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "globals": { + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz", + "integrity": "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + } + }, + "@humanwhocodes/object-schema": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz", + "integrity": "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==", + "dev": true + }, + "@hutson/parse-repository-url": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz", + "integrity": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==", + "dev": true + }, + "@iconify/iconify": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@iconify/iconify/-/iconify-2.0.4.tgz", + "integrity": "sha512-ejk4gWp9STQcivh1h5VKyuLpOOWefrC9WcHUW5YQBXqsT0NBpfqei8X4rCXasnNlbJSiK8IvIJZTfKtQ/56JIw==", + "requires": { + "cross-fetch": "^3.0.6" + } + }, + "@iconify/json": { + "version": "1.1.396", + "resolved": "https://registry.npmjs.org/@iconify/json/-/json-1.1.396.tgz", + "integrity": "sha512-RmwflUp8G4Xy2ysNw82f22AevQ1TiPE2bhgGQGQeUn9zz2jUnYygUO2S4Sr2nn4ylODFpca3+fg1QdzwdHDmiA==", + "dev": true + }, + "@intlify/core-base": { + "version": "9.1.7", + "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.1.7.tgz", + "integrity": "sha512-q1W2j81xbHyfKrNcca/CeJyf0Bcx4u9UDu05l7AaiJbqOseTme2o2I3wp1hDDCtmC7k7HgX0sAygyHNJH9swuQ==", + "requires": { + "@intlify/devtools-if": "9.1.7", + "@intlify/message-compiler": "9.1.7", + "@intlify/message-resolver": "9.1.7", + "@intlify/runtime": "9.1.7", + "@intlify/shared": "9.1.7", + "@intlify/vue-devtools": "9.1.7" + } + }, + "@intlify/devtools-if": { + "version": "9.1.7", + "resolved": "https://registry.npmjs.org/@intlify/devtools-if/-/devtools-if-9.1.7.tgz", + "integrity": "sha512-/DcN5FUySSkQhDqx5y1RvxfuCXO3Ot/dUEIOs472qbM7Hyb2qif+eXCnwHBzlI4+wEfQVT6L0PiM1a7Er/ro9g==", + "requires": { + "@intlify/shared": "9.1.7" + } + }, + "@intlify/message-compiler": { + "version": "9.1.7", + "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.1.7.tgz", + "integrity": "sha512-JZNkAhr3O7tnbdbRBcpYfqr/Ai26WTzX0K/lV8Y1KVdOIj/dGiamaffdWUdFiDXUnbJRNbPiOaKxy7Pwip3KxQ==", + "requires": { + "@intlify/message-resolver": "9.1.7", + "@intlify/shared": "9.1.7", + "source-map": "0.6.1" + } + }, + "@intlify/message-resolver": { + "version": "9.1.7", + "resolved": "https://registry.npmjs.org/@intlify/message-resolver/-/message-resolver-9.1.7.tgz", + "integrity": "sha512-WTK+OaXJYjyquLGhuCyDvU2WHkG+kXzXeHagmVFHn+s118Jf2143zzkLLUrapP5CtZ/csuyjmYg7b3xQRQAmvw==" + }, + "@intlify/runtime": { + "version": "9.1.7", + "resolved": "https://registry.npmjs.org/@intlify/runtime/-/runtime-9.1.7.tgz", + "integrity": "sha512-QURPSlzhOVnRwS2XMGpCDsDkP42kfVBh94aAORxh/gVGzdgJip2vagrIFij/J69aEqdB476WJkMhVjP8VSHmiA==", + "requires": { + "@intlify/message-compiler": "9.1.7", + "@intlify/message-resolver": "9.1.7", + "@intlify/shared": "9.1.7" + } + }, + "@intlify/shared": { + "version": "9.1.7", + "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.1.7.tgz", + "integrity": "sha512-zt0zlUdalumvT9AjQNxPXA36UgOndUyvBMplh8uRZU0fhWHAwhnJTcf0NaG9Qvr8I1n3HPSs96+kLb/YdwTavQ==" + }, + "@intlify/vue-devtools": { + "version": "9.1.7", + "resolved": "https://registry.npmjs.org/@intlify/vue-devtools/-/vue-devtools-9.1.7.tgz", + "integrity": "sha512-DI5Wc0aOiohtBUGUkKAcryCWbbuaO4/PK4Pa/LaNCsFNxbtgR5qkIDmhBv9xVPYGTUhySXxaDDAMvOpBjhPJjw==", + "requires": { + "@intlify/message-resolver": "9.1.7", + "@intlify/runtime": "9.1.7", + "@intlify/shared": "9.1.7" + } + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true + }, + "@jest/console": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.1.0.tgz", + "integrity": "sha512-+Vl+xmLwAXLNlqT61gmHEixeRbS4L8MUzAjtpBCOPWH+izNI/dR16IeXjkXJdRtIVWVSf9DO1gdp67B1XorZhQ==", + "dev": true, + "requires": { + "@jest/types": "^27.1.0", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.1.0", + "jest-util": "^27.1.0", + "slash": "^3.0.0" + } + }, + "@jest/core": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.1.0.tgz", + "integrity": "sha512-3l9qmoknrlCFKfGdrmiQiPne+pUR4ALhKwFTYyOeKw6egfDwJkO21RJ1xf41rN8ZNFLg5W+w6+P4fUqq4EMRWA==", + "dev": true, + "requires": { + "@jest/console": "^27.1.0", + "@jest/reporters": "^27.1.0", + "@jest/test-result": "^27.1.0", + "@jest/transform": "^27.1.0", + "@jest/types": "^27.1.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^27.1.0", + "jest-config": "^27.1.0", + "jest-haste-map": "^27.1.0", + "jest-message-util": "^27.1.0", + "jest-regex-util": "^27.0.6", + "jest-resolve": "^27.1.0", + "jest-resolve-dependencies": "^27.1.0", + "jest-runner": "^27.1.0", + "jest-runtime": "^27.1.0", + "jest-snapshot": "^27.1.0", + "jest-util": "^27.1.0", + "jest-validate": "^27.1.0", + "jest-watcher": "^27.1.0", + "micromatch": "^4.0.4", + "p-each-series": "^2.1.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } + } + }, + "@jest/environment": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.1.0.tgz", + "integrity": "sha512-wRp50aAMY2w1U2jP1G32d6FUVBNYqmk8WaGkiIEisU48qyDV0WPtw3IBLnl7orBeggveommAkuijY+RzVnNDOQ==", + "dev": true, + "requires": { + "@jest/fake-timers": "^27.1.0", + "@jest/types": "^27.1.0", + "@types/node": "*", + "jest-mock": "^27.1.0" + } + }, + "@jest/fake-timers": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.1.0.tgz", + "integrity": "sha512-22Zyn8il8DzpS+30jJNVbTlm7vAtnfy1aYvNeOEHloMlGy1PCYLHa4PWlSws0hvNsMM5bON6GISjkLoQUV3oMA==", + "dev": true, + "requires": { + "@jest/types": "^27.1.0", + "@sinonjs/fake-timers": "^7.0.2", + "@types/node": "*", + "jest-message-util": "^27.1.0", + "jest-mock": "^27.1.0", + "jest-util": "^27.1.0" + } + }, + "@jest/globals": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.1.0.tgz", + "integrity": "sha512-73vLV4aNHAlAgjk0/QcSIzzCZSqVIPbmFROJJv9D3QUR7BI4f517gVdJpSrCHxuRH3VZFhe0yGG/tmttlMll9g==", + "dev": true, + "requires": { + "@jest/environment": "^27.1.0", + "@jest/types": "^27.1.0", + "expect": "^27.1.0" + } + }, + "@jest/reporters": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.1.0.tgz", + "integrity": "sha512-5T/zlPkN2HnK3Sboeg64L5eC8iiaZueLpttdktWTJsvALEtP2YMkC5BQxwjRWQACG9SwDmz+XjjkoxXUDMDgdw==", + "dev": true, + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.1.0", + "@jest/test-result": "^27.1.0", + "@jest/transform": "^27.1.0", + "@jest/types": "^27.1.0", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^27.1.0", + "jest-resolve": "^27.1.0", + "jest-util": "^27.1.0", + "jest-worker": "^27.1.0", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.0.0" + } + }, + "@jest/source-map": { + "version": "27.0.6", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.0.6.tgz", + "integrity": "sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + } + }, + "@jest/test-result": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.1.0.tgz", + "integrity": "sha512-Aoz00gpDL528ODLghat3QSy6UBTD5EmmpjrhZZMK/v1Q2/rRRqTGnFxHuEkrD4z/Py96ZdOHxIWkkCKRpmnE1A==", + "dev": true, + "requires": { + "@jest/console": "^27.1.0", + "@jest/types": "^27.1.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.1.0.tgz", + "integrity": "sha512-lnCWawDr6Z1DAAK9l25o3AjmKGgcutq1iIbp+hC10s/HxnB8ZkUsYq1FzjOoxxZ5hW+1+AthBtvS4x9yno3V1A==", + "dev": true, + "requires": { + "@jest/test-result": "^27.1.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.1.0", + "jest-runtime": "^27.1.0" + } + }, + "@jest/transform": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.1.0.tgz", + "integrity": "sha512-ZRGCA2ZEVJ00ubrhkTG87kyLbN6n55g1Ilq0X9nJb5bX3MhMp3O6M7KG+LvYu+nZRqG5cXsQnJEdZbdpTAV8pQ==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.1.0", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.1.0", + "jest-regex-util": "^27.0.6", + "jest-util": "^27.1.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + } + }, + "@jest/types": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.1.0.tgz", + "integrity": "sha512-pRP5cLIzN7I7Vp6mHKRSaZD7YpBTK7hawx5si8trMKqk4+WOdK8NEKOTO2G8PKWD1HbKMVckVB6/XHh/olhf2g==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "@logicflow/core": { + "version": "0.6.15", + "resolved": "https://registry.npmjs.org/@logicflow/core/-/core-0.6.15.tgz", + "integrity": "sha512-phLDPS/nFPDpAiOE95PdmP5kLTDx88nwJ7N+18EO9qTf+G8YffDh3Go8iLdA3VO0HMCLUmA0oYdd7cfJN5eybQ==", + "requires": { + "@types/mousetrap": "^1.6.4", + "mousetrap": "^1.6.5", + "preact": "^10.4.8" + } + }, + "@logicflow/extension": { + "version": "0.6.15", + "resolved": "https://registry.npmjs.org/@logicflow/extension/-/extension-0.6.15.tgz", + "integrity": "sha512-drYGUYtwaTG0mb/70OlElpHHomsLQqT1D1j/KkOgoNLORGIAaV9KMf2P/A4zmFjIc/FnKHtMNuoYXURQPyW6eQ==", + "requires": { + "@logicflow/core": "^0.6.13", + "ids": "^1.0.0", + "preact": "^10.4.8" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@purge-icons/core": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@purge-icons/core/-/core-0.7.0.tgz", + "integrity": "sha512-PaCeTFjkQUX+MzBsNg3L8x5aCZqXwaUSNw1FY3Jn7wlLqNqxRNoShw5P//a1DQAy7hLlUHvEL6IGeDoN/xf98A==", + "dev": true, + "requires": { + "@iconify/iconify": "2.0.0-rc.6", + "axios": "^0.21.1", + "debug": "^4.3.2", + "fast-glob": "^3.2.5", + "fs-extra": "^9.1.0" + }, + "dependencies": { + "@iconify/iconify": { + "version": "2.0.0-rc.6", + "resolved": "https://registry.npmjs.org/@iconify/iconify/-/iconify-2.0.0-rc.6.tgz", + "integrity": "sha512-pXvLXqLPQsjpDY4qbbyh5cPEtakTfWfQCAo6SdYNhYQzat+/0fbeEhScryqaketNAG0bT4/+deKezkJZTvbuSg==", + "dev": true, + "requires": { + "cross-fetch": "^3.0.6" + } + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + } + } + }, + "@purge-icons/generated": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@purge-icons/generated/-/generated-0.7.0.tgz", + "integrity": "sha512-4SHVpZnKaW5ekRTjhPY9b1pALVlF0pDuGIDRAlxAm0V+gQVOL0+Ghav6U9XqXFj2kiG1+eQ8swpvB+kd0a+tqg==", + "dev": true, + "requires": { + "@iconify/iconify": ">=2.0.0-rc.6" + } + }, + "@rollup/plugin-babel": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.0.tgz", + "integrity": "sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "dependencies": { + "@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dev": true, + "requires": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + } + }, + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "dev": true + }, + "estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "dev": true + } + } + }, + "@rollup/plugin-node-resolve": { + "version": "13.0.4", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.0.4.tgz", + "integrity": "sha512-eYq4TFy40O8hjeDs+sIxEH/jc9lyuI2k9DM557WN6rO5OpnC2qXMBNj4IKH1oHrnAazL49C5p0tgP0/VpqJ+/w==", + "dev": true, + "requires": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "dependencies": { + "@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dev": true, + "requires": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + } + }, + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "dev": true + }, + "estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "dev": true + } + } + }, + "@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "dev": true, + "requires": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "dependencies": { + "@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dev": true, + "requires": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + } + }, + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "dev": true + }, + "estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "dev": true + } + } + }, + "@rollup/pluginutils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.1.1.tgz", + "integrity": "sha512-clDjivHqWGXi7u+0d2r2sBi4Ie6VLEAzWMIkvJLnDmxoOhBYOTfzGbOQBA32THHm11/LiJbd01tJUpJsbshSWQ==", + "dev": true, + "requires": { + "estree-walker": "^2.0.1", + "picomatch": "^2.2.2" + } + }, + "@simonwep/pickr": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@simonwep/pickr/-/pickr-1.8.1.tgz", + "integrity": "sha512-3Q5+INWW0Py+/E9hgy0cyD0/0w/yGZbkxam6RzFVFDOEHgAqMVJR+x9znx58/ky/ZIvE/78FbH189yIC9h111A==", + "requires": { + "core-js": "^3.12.1", + "nanopop": "^2.1.0" + } + }, + "@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "dev": true + }, + "@sinonjs/commons": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", + "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-7.1.2.tgz", + "integrity": "sha512-iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "@stylelint/postcss-css-in-js": { + "version": "0.37.2", + "resolved": "https://registry.npmjs.org/@stylelint/postcss-css-in-js/-/postcss-css-in-js-0.37.2.tgz", + "integrity": "sha512-nEhsFoJurt8oUmieT8qy4nk81WRHmJynmVwn/Vts08PL9fhgIsMhk1GId5yAN643OzqEEb5S/6At2TZW7pqPDA==", + "dev": true, + "requires": { + "@babel/core": ">=7.9.0" + } + }, + "@stylelint/postcss-markdown": { + "version": "0.36.2", + "resolved": "https://registry.npmjs.org/@stylelint/postcss-markdown/-/postcss-markdown-0.36.2.tgz", + "integrity": "sha512-2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ==", + "dev": true, + "requires": { + "remark": "^13.0.0", + "unist-util-find-all-after": "^3.0.2" + } + }, + "@surma/rollup-plugin-off-main-thread": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz", + "integrity": "sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==", + "dev": true, + "requires": { + "ejs": "^2.6.1", + "magic-string": "^0.25.0" + }, + "dependencies": { + "ejs": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz", + "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==", + "dev": true + } + } + }, + "@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true + }, + "@trysound/sax": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.1.1.tgz", + "integrity": "sha512-Z6DoceYb/1xSg5+e+ZlPZ9v0N16ZvZ+wYMraFue4HYrE4ttONKtsvruIRf6t9TBR0YvSOfi1hUU0fJfBLCDYow==", + "dev": true + }, + "@tsconfig/node10": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.8.tgz", + "integrity": "sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==", + "dev": true + }, + "@tsconfig/node12": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.9.tgz", + "integrity": "sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==", + "dev": true + }, + "@tsconfig/node14": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.1.tgz", + "integrity": "sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==", + "dev": true + }, + "@tsconfig/node16": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.2.tgz", + "integrity": "sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==", + "dev": true + }, + "@types/babel__core": { + "version": "7.1.15", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.15.tgz", + "integrity": "sha512-bxlMKPDbY8x5h6HBwVzEOk2C8fb6SLfYQ5Jw3uBYuYF1lfWk/kbLd81la82vrIkBb0l+JdmrZaDikPrNxpS/Ew==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz", + "integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.14.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz", + "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/codemirror": { + "version": "5.60.2", + "resolved": "https://registry.npmjs.org/@types/codemirror/-/codemirror-5.60.2.tgz", + "integrity": "sha512-tk8YxckrdU49GaJYRKxdzzzXrTlyT2nQGnobb8rAk34jt+kYXOxPKGqNgr7SJpl5r6YGaRD4CDfqiL+6A+/z7w==", + "dev": true, + "requires": { + "@types/tern": "*" + } + }, + "@types/crypto-js": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.0.2.tgz", + "integrity": "sha512-sCVniU+h3GcGqxOmng11BRvf9TfN9yIs8KKjB8C8d75W69cpTfZG80gau9yTx5SxF3gvHGbJhdESzzvnjtf3Og==", + "dev": true + }, + "@types/estree": { + "version": "0.0.50", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", + "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", + "dev": true + }, + "@types/fs-extra": { + "version": "9.0.12", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.12.tgz", + "integrity": "sha512-I+bsBr67CurCGnSenZZ7v94gd3tc3+Aj2taxMT4yu4ABLuOgOjeFxX3dokG24ztSRg5tnT00sL8BszO7gSMoIw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/imagemin": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin/-/imagemin-7.0.1.tgz", + "integrity": "sha512-xEn5+M3lDBtI3JxLy6eU3ksoVurygnlG7OYhTqJfGGP4PcvYnfn+IABCmMve7ziM/SneHDm5xgJFKC8hCYPicw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/imagemin-gifsicle": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-gifsicle/-/imagemin-gifsicle-7.0.1.tgz", + "integrity": "sha512-kUz6sUh0P95JOS0RGEaaemWUrASuw+dLsWIveK2UZJx74id/B9epgblMkCk/r5MjUWbZ83wFvacG5Rb/f97gyA==", + "dev": true, + "requires": { + "@types/imagemin": "*" + } + }, + "@types/imagemin-jpegtran": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-jpegtran/-/imagemin-jpegtran-5.0.1.tgz", + "integrity": "sha512-Ps8kbm+DUFte/Eln/tUdEvpMWHKFCsQKlV8n+RN50zqWqL/7QhfLxR0ymitP9wa90P6+rkbJlintBNPkVR+B/Q==", + "dev": true, + "requires": { + "@types/imagemin": "*" + } + }, + "@types/imagemin-mozjpeg": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-mozjpeg/-/imagemin-mozjpeg-8.0.1.tgz", + "integrity": "sha512-kMQWEoKxxhlnH4POI3qfW9DjXlQfi80ux3l2b3j5R3eudSCoUIzKQLkfMjNJ6eMYnMWBcB+rfQOWqIzdIwFGKw==", + "dev": true, + "requires": { + "@types/imagemin": "*" + } + }, + "@types/imagemin-optipng": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-optipng/-/imagemin-optipng-5.2.1.tgz", + "integrity": "sha512-XCM/3q+HUL7v4zOqMI+dJ5dTxT+MUukY9KU49DSnYb/4yWtSMHJyADP+WHSMVzTR63J2ZvfUOzSilzBNEQW78g==", + "dev": true, + "requires": { + "@types/imagemin": "*" + } + }, + "@types/imagemin-svgo": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-svgo/-/imagemin-svgo-9.0.1.tgz", + "integrity": "sha512-DMMunSfN9EOYOh5hfvtY1N5ydVDoMnqN+1bvoL4OIspUJIOiN9hadrdeXTd51oI2tpQXM3Htadrb6QSg0VnYbQ==", + "dev": true, + "requires": { + "@types/imagemin": "*", + "@types/svgo": "^1" + }, + "dependencies": { + "@types/svgo": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/@types/svgo/-/svgo-1.3.6.tgz", + "integrity": "sha512-AZU7vQcy/4WFEuwnwsNsJnFwupIpbllH1++LXScN6uxT1Z4zPzdrWG97w4/I7eFKFTvfy/bHFStWjdBAg2Vjug==", + "dev": true + } + } + }, + "@types/imagemin-webp": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/imagemin-webp/-/imagemin-webp-5.1.2.tgz", + "integrity": "sha512-elm1oHtWvpu56ucCgnlcP4uiaH9tO8icfF+Vqma4VzuS2b1dgchSRccf7iI1eDxWatvmRt91jHwP0MDwsHhnuA==", + "dev": true, + "requires": { + "@types/imagemin": "*" + } + }, + "@types/inquirer": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-HhxyLejTHMfohAuhRun4csWigAMjXTmRyiJTU1Y/I1xmggikFMkOUoMQRlFm+zQcPEGHSs3io/0FAmNZf8EymQ==", + "dev": true, + "requires": { + "@types/through": "*", + "rxjs": "^6.4.0" + } + }, + "@types/intro.js": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/intro.js/-/intro.js-3.0.2.tgz", + "integrity": "sha512-kow8REgIIG42atN9vAaIdpEqVzj6WzV9m0PII8oce+an4Lc3eyfQF32/FbabbGmfWuF7TceTdd+gh74kOrXkPw==", + "dev": true + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", + "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "27.0.1", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.0.1.tgz", + "integrity": "sha512-HTLpVXHrY69556ozYkcq47TtQJXpcWAWfkoqz+ZGz2JnmZhzlRjprCIyFnetSy8gpDWwTTGBcRVv1J1I1vBrHw==", + "dev": true, + "requires": { + "jest-diff": "^27.0.0", + "pretty-format": "^27.0.0" + } + }, + "@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", + "dev": true + }, + "@types/lodash": { + "version": "4.14.172", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.172.tgz", + "integrity": "sha512-/BHF5HAx3em7/KkzVKm3LrsD6HZAXuXO1AJZQ3cRRBZj4oHZDviWPYu0aEplAqDFNHZPW6d3G7KN+ONcCCC7pw==" + }, + "@types/lodash-es": { + "version": "4.17.4", + "resolved": "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.4.tgz", + "integrity": "sha512-BBz79DCJbD2CVYZH67MBeHZRX++HF+5p8Mo5MzjZi64Wac39S3diedJYHZtScbRVf4DjZyN6LzA0SB0zy+HSSQ==", + "dev": true, + "requires": { + "@types/lodash": "*" + } + }, + "@types/mdast": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz", + "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==", + "dev": true, + "requires": { + "@types/unist": "*" + } + }, + "@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true + }, + "@types/minimist": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", + "dev": true + }, + "@types/mockjs": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@types/mockjs/-/mockjs-1.0.4.tgz", + "integrity": "sha512-gK20xPqJhzMIitechVbvfnAk+oBIxVRnWrihJpRYHMI6UHCB/cvWgJa+dy6trRwQLE3AbtAJnXpm7pn6blG8sA==", + "dev": true + }, + "@types/mousetrap": { + "version": "1.6.8", + "resolved": "https://registry.npmjs.org/@types/mousetrap/-/mousetrap-1.6.8.tgz", + "integrity": "sha512-zTqjvgCUT5EoXqbqmd8iJMb4NJqyV/V7pK7AIKq7qcaAsJIpGlTVJS1HQM6YkdHCdnkNSbhcQI7MXYxFfE3iCA==" + }, + "@types/node": { + "version": "16.7.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.7.10.tgz", + "integrity": "sha512-S63Dlv4zIPb8x6MMTgDq5WWRJQe56iBEY0O3SOFA9JrRienkOVDXSXBjjJw6HTNQYSE2JI6GMCR6LVbIMHJVvA==", + "dev": true + }, + "@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, + "@types/nprogress": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@types/nprogress/-/nprogress-0.2.0.tgz", + "integrity": "sha512-1cYJrqq9GezNFPsWTZpFut/d4CjpZqA0vhqDUPFWYKF1oIyBz5qnoYMzR+0C/T96t3ebLAC1SSnwrVOm5/j74A==", + "dev": true + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "@types/prettier": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.3.2.tgz", + "integrity": "sha512-eI5Yrz3Qv4KPUa/nSIAi0h+qX0XyewOliug5F2QAtuRg6Kjg6jfmxe1GIwoIRhZspD1A0RP8ANrPwvEXXtRFog==", + "dev": true + }, + "@types/qrcode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@types/qrcode/-/qrcode-1.4.1.tgz", + "integrity": "sha512-vxMyr7JM7tYPxu8vUE83NiosWX5DZieCyYeJRoOIg0pAkyofCBzknJ2ycUZkPGDFis2RS8GN/BeJLnRnAPxeCA==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/sortablejs": { + "version": "1.10.7", + "resolved": "https://registry.npmjs.org/@types/sortablejs/-/sortablejs-1.10.7.tgz", + "integrity": "sha512-lGCwwgpj8zW/ZmaueoPVSP7nnc9t8VqVWXS+ASX3eoUUENmiazv0rlXyTRludXzuX9ALjPsMqBu85TgJNWbTOg==", + "dev": true + }, + "@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "@types/svgo": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/svgo/-/svgo-2.4.1.tgz", + "integrity": "sha512-BdFmgCVdvroCQi21+6UGox++0mMZXjOS2rZ8okgjqikOfKWme/aBpPRc51AuhK/TojGoOMEPmA5x5KioqQvwew==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/tern": { + "version": "0.23.4", + "resolved": "https://registry.npmjs.org/@types/tern/-/tern-0.23.4.tgz", + "integrity": "sha512-JAUw1iXGO1qaWwEOzxTKJZ/5JxVeON9kvGZ/osgZaJImBnyjyn0cjovPsf6FNLmyGY8Vw9DoXZCMlfMkMwHRWg==", + "dev": true, + "requires": { + "@types/estree": "*" + } + }, + "@types/throttle-debounce": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/throttle-debounce/-/throttle-debounce-2.1.0.tgz", + "integrity": "sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ==", + "dev": true + }, + "@types/through": { + "version": "0.0.30", + "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz", + "integrity": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/tinycolor2": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/@types/tinycolor2/-/tinycolor2-1.4.3.tgz", + "integrity": "sha512-Kf1w9NE5HEgGxCRyIcRXR/ZYtDv0V8FVPtYHwLxl0O+maGX0erE77pQlD0gpP+/KByMZ87mOA79SjifhSB3PjQ==", + "dev": true + }, + "@types/trusted-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", + "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==", + "dev": true + }, + "@types/unist": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", + "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", + "dev": true + }, + "@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "20.2.1", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz", + "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==", + "dev": true + }, + "@typescript-eslint/eslint-plugin": { + "version": "4.30.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.30.0.tgz", + "integrity": "sha512-NgAnqk55RQ/SD+tZFD9aPwNSeHmDHHe5rtUyhIq0ZeCWZEvo4DK9rYz7v9HDuQZFvn320Ot+AikaCKMFKLlD0g==", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "4.30.0", + "@typescript-eslint/scope-manager": "4.30.0", + "debug": "^4.3.1", + "functional-red-black-tree": "^1.0.1", + "regexpp": "^3.1.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/experimental-utils": { + "version": "4.30.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.30.0.tgz", + "integrity": "sha512-K8RNIX9GnBsv5v4TjtwkKtqMSzYpjqAQg/oSphtxf3xxdt6T0owqnpojztjjTcatSteH3hLj3t/kklKx87NPqw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.7", + "@typescript-eslint/scope-manager": "4.30.0", + "@typescript-eslint/types": "4.30.0", + "@typescript-eslint/typescript-estree": "4.30.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + } + }, + "@typescript-eslint/parser": { + "version": "4.30.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.30.0.tgz", + "integrity": "sha512-HJ0XuluSZSxeboLU7Q2VQ6eLlCwXPBOGnA7CqgBnz2Db3JRQYyBDJgQnop6TZ+rsbSx5gEdWhw4rE4mDa1FnZg==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "4.30.0", + "@typescript-eslint/types": "4.30.0", + "@typescript-eslint/typescript-estree": "4.30.0", + "debug": "^4.3.1" + } + }, + "@typescript-eslint/scope-manager": { + "version": "4.30.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.30.0.tgz", + "integrity": "sha512-VJ/jAXovxNh7rIXCQbYhkyV2Y3Ac/0cVHP/FruTJSAUUm4Oacmn/nkN5zfWmWFEanN4ggP0vJSHOeajtHq3f8A==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.30.0", + "@typescript-eslint/visitor-keys": "4.30.0" + } + }, + "@typescript-eslint/types": { + "version": "4.30.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.30.0.tgz", + "integrity": "sha512-YKldqbNU9K4WpTNwBqtAerQKLLW/X2A/j4yw92e3ZJYLx+BpKLeheyzoPfzIXHfM8BXfoleTdiYwpsvVPvHrDw==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "4.30.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.30.0.tgz", + "integrity": "sha512-6WN7UFYvykr/U0Qgy4kz48iGPWILvYL34xXJxvDQeiRE018B7POspNRVtAZscWntEPZpFCx4hcz/XBT+erenfg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.30.0", + "@typescript-eslint/visitor-keys": "4.30.0", + "debug": "^4.3.1", + "globby": "^11.0.3", + "is-glob": "^4.0.1", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "4.30.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.30.0.tgz", + "integrity": "sha512-pNaaxDt/Ol/+JZwzP7MqWc8PJQTUhZwoee/PVlQ+iYoYhagccvoHnC9e4l+C/krQYYkENxznhVSDwClIbZVxRw==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.30.0", + "eslint-visitor-keys": "^2.0.0" + } + }, + "@vitejs/plugin-legacy": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-1.5.2.tgz", + "integrity": "sha512-b1CaWY/wi7gQZnZaxH+ujPTPb91bEPgnnk7l0WIwxoQtW5UC5MQywRcAbFX+Ise62exXctOMBtsnXKJw2KajXw==", + "dev": true, + "requires": { + "@babel/standalone": "^7.14.9", + "core-js": "^3.16.0", + "magic-string": "^0.25.7", + "regenerator-runtime": "^0.13.9", + "systemjs": "^6.10.2" + } + }, + "@vitejs/plugin-vue": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-1.6.0.tgz", + "integrity": "sha512-n3i8htn8pTg9M+kM3cnEfsPZx/6ngInlTroth6fA1LQTJq5aTVQ8ggaE5pPoAy9vCgHPtcaXMzwpldhqRAkebQ==", + "dev": true + }, + "@vitejs/plugin-vue-jsx": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.1.7.tgz", + "integrity": "sha512-lomCrTZ/LXUk8L+1fBX4dpW+L/S7qY4+pzS5BRG2NuLpjo26Efh4yb8nDkYM7b8COS3ea7otis0SsqD8vGOSlg==", + "dev": true, + "requires": { + "@babel/core": "^7.14.8", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.14.6", + "@rollup/pluginutils": "^4.1.1", + "@vue/babel-plugin-jsx": "^1.0.6", + "hash-sum": "^2.0.0" + } + }, + "@volar/code-gen": { + "version": "0.27.11", + "resolved": "https://registry.npmjs.org/@volar/code-gen/-/code-gen-0.27.11.tgz", + "integrity": "sha512-yj43hM/HnjsHLctJtKSFfEuUWSm5NyDpronFBnB2b+5XjJrb3gb6my21UhwmYoPC6kQ4tkdZiwCXTKQFNzGzCw==", + "dev": true, + "requires": { + "@volar/shared": "^0.27.11", + "@volar/source-map": "^0.27.11" + } + }, + "@volar/html2pug": { + "version": "0.27.11", + "resolved": "https://registry.npmjs.org/@volar/html2pug/-/html2pug-0.27.11.tgz", + "integrity": "sha512-2xfTafl3Nhd5IihS18tJPTiYrzHFsEpEIoJHjwfkJKokI6CFx2RtJVrIQywv2AuzHtmwMcU7ByCFI0TGsKETTw==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0", + "htmlparser2": "^6.1.0", + "pug": "^3.0.2" + }, + "dependencies": { + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz", + "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", + "dev": true + }, + "domhandler": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz", + "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + } + } + }, + "@volar/shared": { + "version": "0.27.11", + "resolved": "https://registry.npmjs.org/@volar/shared/-/shared-0.27.11.tgz", + "integrity": "sha512-bXCphjIX5B9uMszD3rKMUY+AM/cu/SqE0L/dO80oimrEM4VUv2U5Lv0JRhgMTBdPqVFvYijXvtKILw3F1K+f2g==", + "dev": true, + "requires": { + "upath": "^2.0.1", + "vscode-jsonrpc": "^8.0.0-next.2", + "vscode-uri": "^3.0.2" + }, + "dependencies": { + "upath": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", + "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", + "dev": true + } + } + }, + "@volar/source-map": { + "version": "0.27.11", + "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-0.27.11.tgz", + "integrity": "sha512-hrOfuT8M3IDA8nDvJsy+HNyzvl5EXYO4LkSjAV/XaYM3NY1lYFiefdpBm4F7MDaz0OPtEMF/P0otS3dF5MY6Rg==", + "dev": true, + "requires": { + "@volar/shared": "^0.27.11" + } + }, + "@volar/transforms": { + "version": "0.27.11", + "resolved": "https://registry.npmjs.org/@volar/transforms/-/transforms-0.27.11.tgz", + "integrity": "sha512-EAUsrKnl67Hq+TWC5TAFRGV8JwQ2CMI0MW/3Px0q+ja/B7Y5s0XYePDGE1tcNgj3DudTPNkybt+2nZ0hDDOo0Q==", + "dev": true, + "requires": { + "@volar/shared": "^0.27.11", + "vscode-languageserver": "^8.0.0-next.2" + } + }, + "@vscode/emmet-helper": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@vscode/emmet-helper/-/emmet-helper-2.7.0.tgz", + "integrity": "sha512-LL7MoKNLUQASacQROO7hBdx5IAxsEnA0UdJFd9xXyf3sBQgz8NE3QEfo3IezE7uin8W2fkG2+EXMst3oqK6+KQ==", + "dev": true, + "requires": { + "emmet": "^2.3.0", + "jsonc-parser": "^2.3.0", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-languageserver-types": "^3.15.1", + "vscode-nls": "^5.0.0", + "vscode-uri": "^2.1.2" + }, + "dependencies": { + "jsonc-parser": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.3.1.tgz", + "integrity": "sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==", + "dev": true + }, + "vscode-languageserver-types": { + "version": "3.16.0", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz", + "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==", + "dev": true + }, + "vscode-uri": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz", + "integrity": "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==", + "dev": true + } + } + }, + "@vue/babel-helper-vue-transform-on": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz", + "integrity": "sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==", + "dev": true + }, + "@vue/babel-plugin-jsx": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.6.tgz", + "integrity": "sha512-RzYsvBhzKUmY2YG6LoV+W5PnlnkInq0thh1AzCmewwctAgGN6e9UFon6ZrQQV1CO5G5PeME7MqpB+/vvGg0h4g==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.0.0", + "@babel/template": "^7.0.0", + "@babel/traverse": "^7.0.0", + "@babel/types": "^7.0.0", + "@vue/babel-helper-vue-transform-on": "^1.0.2", + "camelcase": "^6.0.0", + "html-tags": "^3.1.0", + "svg-tags": "^1.0.0" + }, + "dependencies": { + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "dev": true + } + } + }, + "@vue/compiler-core": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.2.tgz", + "integrity": "sha512-QhCI0ZU5nAR0LMcLgzW3v75374tIrHGp8XG5CzJS7Nsy+iuignbE4MZ2XJfh5TGIrtpuzfWA4eTIfukZf/cRdg==", + "requires": { + "@babel/parser": "^7.12.0", + "@babel/types": "^7.12.0", + "@vue/shared": "3.2.2", + "estree-walker": "^2.0.1", + "source-map": "^0.6.1" + } + }, + "@vue/compiler-dom": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.2.tgz", + "integrity": "sha512-ggcc+NV/ENIE0Uc3TxVE/sKrhYVpLepMAAmEiQ047332mbKOvUkowz4TTFZ+YkgOIuBOPP0XpCxmCMg7p874mA==", + "requires": { + "@vue/compiler-core": "3.2.2", + "@vue/shared": "3.2.2" + } + }, + "@vue/compiler-sfc": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.2.tgz", + "integrity": "sha512-hrtqpQ5L6IPn5v7yVRo7uvLcQxv0z1+KBjZBWMBOcrXz4t+PKUxU/SWd6Tl9T8FDmYlunzKUh6lcx+2CLo6f5A==", + "dev": true, + "requires": { + "@babel/parser": "^7.13.9", + "@babel/types": "^7.13.0", + "@types/estree": "^0.0.48", + "@vue/compiler-core": "3.2.2", + "@vue/compiler-dom": "3.2.2", + "@vue/compiler-ssr": "3.2.2", + "@vue/shared": "3.2.2", + "consolidate": "^0.16.0", + "estree-walker": "^2.0.1", + "hash-sum": "^2.0.0", + "lru-cache": "^5.1.1", + "magic-string": "^0.25.7", + "merge-source-map": "^1.1.0", + "postcss": "^8.1.10", + "postcss-modules": "^4.0.0", + "postcss-selector-parser": "^6.0.4", + "source-map": "^0.6.1" + }, + "dependencies": { + "@types/estree": { + "version": "0.0.48", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.48.tgz", + "integrity": "sha512-LfZwXoGUDo0C3me81HXgkBg5CTQYb6xzEl+fNmbO4JdRiSKQ8A0GD1OBBvKAIsbCUgoyAty7m99GqqMQe784ew==", + "dev": true + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "@vue/compiler-ssr": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.2.tgz", + "integrity": "sha512-rVl1agMFhdEN3Go0bCriXo+3cysxKIuRP0yh1Wd8ysRrKfAmokyDhUA8PrGSq2Ymj/LdZTh+4OKfj3p2+C+hlA==", + "dev": true, + "requires": { + "@vue/compiler-dom": "3.2.2", + "@vue/shared": "3.2.2" + } + }, + "@vue/devtools-api": { + "version": "6.0.0-beta.15", + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.0.0-beta.15.tgz", + "integrity": "sha512-quBx4Jjpexo6KDiNUGFr/zF/2A4srKM9S9v2uHgMXSU//hjgq1eGzqkIFql8T9gfX5ZaVOUzYBP3jIdIR3PKIA==" + }, + "@vue/reactivity": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.2.2.tgz", + "integrity": "sha512-IHjhtmrhK6dzacj/EnLQDWOaA3HuzzVk6w84qgV8EpS4uWGIJXiRalMRg6XvGW2ykJvIl3pLsF0aBFlTMRiLOA==", + "requires": { + "@vue/shared": "3.2.2" + } + }, + "@vue/runtime-core": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.2.2.tgz", + "integrity": "sha512-/aUk1+GO/VPX0oVxhbzSWE1zrf3/wGCsO1ALNisVokYftKqfqLDjbJHE6mrI2hx3MiuwbHrWjJClkGUVTIOPEQ==", + "requires": { + "@vue/reactivity": "3.2.2", + "@vue/shared": "3.2.2" + } + }, + "@vue/runtime-dom": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.2.2.tgz", + "integrity": "sha512-1Le/NpCfawCOfePfJezvWUF+oCVLU8N+IHN4oFDOxRe6/PgHNJ+yT+YdxFifBfI+TIAoXI/9PsnqzmJZV+xsmw==", + "requires": { + "@vue/runtime-core": "3.2.2", + "@vue/shared": "3.2.2", + "csstype": "^2.6.8" + } + }, + "@vue/shared": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.2.tgz", + "integrity": "sha512-dvYb318tk9uOzHtSaT3WII/HscQSIRzoCZ5GyxEb3JlkEXASpAUAQwKnvSe2CudnF8XHFRTB7VITWSnWNLZUtA==" + }, + "@vue/test-utils": { + "version": "2.0.0-rc.13", + "resolved": "https://registry.npmjs.org/@vue/test-utils/-/test-utils-2.0.0-rc.13.tgz", + "integrity": "sha512-+W4HMjKw8rFf0jgUS7bKeSecHMoDkmNBNuUdF1UIfvcUDd0E9NZBTcW/H1ONtj3z6ySotwAbjsJGJb7s90T1ig==", + "dev": true + }, + "@vueuse/core": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-5.3.0.tgz", + "integrity": "sha512-bBL1/JMRHFWmbgQzUZHF4WOwlqfenR1B8+elriXsbnHlogQM5foSz9++WyDBR0YPIVgCJq7fvNLqd4T7+cjc5w==", + "requires": { + "@vueuse/shared": "5.3.0", + "vue-demi": "*" + } + }, + "@vueuse/shared": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-5.3.0.tgz", + "integrity": "sha512-qZfkPFH0qTScFpYiPOFpTcxWriRhlM3bgSzl3DFTgr/U0eZg3w2EFWaRZHdWeSvAUdNQyjOC4Toa8S0zJyEjHw==", + "requires": { + "vue-demi": "*" + } + }, + "@windicss/config": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@windicss/config/-/config-1.3.0.tgz", + "integrity": "sha512-/F2dg9ltkoQLA4cpr4YQP4V+Y1hO0WOF8jtHoErCKKBr1wBnFLieRjhsXcolM5ZbqH7wLoUrPkdBkIFlocDblg==", + "dev": true, + "requires": { + "debug": "^4.3.2", + "jiti": "^1.11.0", + "tsup": "^4.14.0", + "windicss": "^3.1.7" + } + }, + "@windicss/plugin-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-1.3.0.tgz", + "integrity": "sha512-4qOXUStYPI3WTHR6WdxGhzKWMZar7vwWY08QFVc9Zztg5eoQ3GyYsMPn83OSRwc/jA7mSkkoCtHLGzop2KjHcg==", + "dev": true, + "requires": { + "@antfu/utils": "^0.2.4", + "@windicss/config": "1.3.0", + "debug": "^4.3.2", + "fast-glob": "^3.2.7", + "magic-string": "^0.25.7", + "micromatch": "^4.0.4", + "windicss": "^3.1.7" + } + }, + "@zxcvbn-ts/core": { + "version": "1.0.0-beta.0", + "resolved": "https://registry.npmjs.org/@zxcvbn-ts/core/-/core-1.0.0-beta.0.tgz", + "integrity": "sha512-E2rHy2jrCDzJ62xqY5KteOHR+y7uPqL6FLUPVCDZmeYrAZRgB+CpO0QIQKLVrxwssx0YhApmE23eHmouce+OUA==" + }, + "JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "dev": true, + "requires": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + } + }, + "abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", + "dev": true + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true + }, + "add-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz", + "integrity": "sha1-anmQQ3ynNtXhKI25K9MmbV9csqo=", + "dev": true + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "requires": { + "debug": "4" + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "ant-design-vue": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/ant-design-vue/-/ant-design-vue-2.2.6.tgz", + "integrity": "sha512-WgZow4FtrsAZON01wv+ObuXWL1Elaq/fhPRdmOEfFx5f8azTDBYL75A8dVl59TNBKW8FdSGBTl9PZYzW5eO6Gw==", + "requires": { + "@ant-design/icons-vue": "^6.0.0", + "@babel/runtime": "^7.10.5", + "@simonwep/pickr": "~1.8.0", + "array-tree-filter": "^2.1.0", + "async-validator": "^3.3.0", + "dom-align": "^1.12.1", + "dom-scroll-into-view": "^2.0.0", + "lodash": "^4.17.21", + "lodash-es": "^4.17.15", + "moment": "^2.27.0", + "omit.js": "^2.0.0", + "resize-observer-polyfill": "^1.5.1", + "scroll-into-view-if-needed": "^2.2.25", + "shallow-equal": "^1.0.0", + "vue-types": "^3.0.0", + "warning": "^4.0.0" + }, + "dependencies": { + "vue-types": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/vue-types/-/vue-types-3.0.2.tgz", + "integrity": "sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==", + "requires": { + "is-plain-object": "3.0.1" + } + } + } + }, + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=", + "dev": true + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true + }, + "archive-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA=", + "dev": true, + "requires": { + "file-type": "^4.2.0" + }, + "dependencies": { + "file-type": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha1-G2AOX8ofvcboDApwxxyNul95BsU=", + "dev": true + } + } + }, + "arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-differ": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz", + "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==", + "dev": true + }, + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "dev": true + }, + "array-ify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=", + "dev": true + }, + "array-tree-filter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-tree-filter/-/array-tree-filter-2.1.0.tgz", + "integrity": "sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==" + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", + "dev": true + }, + "assert-never": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz", + "integrity": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true + }, + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "async-validator": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-3.5.2.tgz", + "integrity": "sha512-8eLCg00W9pIRZSB781UUX/H6Oskmm8xloZfr09lz5bikRpBVDlJ3hRVuxxP1SxcwsEYfJ4IU8Q19Y8/893r3rQ==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "autoprefixer": { + "version": "10.3.3", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.3.tgz", + "integrity": "sha512-yRzjxfnggrP/+qVHlUuZz5FZzEbkT+Yt0/Df6ScEMnbbZBLzYB2W0KLxoQCW+THm1SpOsM1ZPcTHAwuvmibIsQ==", + "dev": true, + "requires": { + "browserslist": "^4.16.8", + "caniuse-lite": "^1.0.30001252", + "colorette": "^1.3.0", + "fraction.js": "^4.1.1", + "normalize-range": "^0.1.2", + "postcss-value-parser": "^4.1.0" + } + }, + "axios": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz", + "integrity": "sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==", + "requires": { + "follow-redirects": "^1.10.0" + } + }, + "babel-jest": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.1.0.tgz", + "integrity": "sha512-6NrdqzaYemALGCuR97QkC/FkFIEBWP5pw5TMJoUHZTVXyOgocujp6A0JE2V6gE0HtqAAv6VKU/nI+OCR1Z4gHA==", + "dev": true, + "requires": { + "@jest/transform": "^27.1.0", + "@jest/types": "^27.1.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^27.0.6", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "requires": { + "object.assign": "^4.1.0" + } + }, + "babel-plugin-istanbul": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz", + "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^4.0.0", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "27.0.6", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.0.6.tgz", + "integrity": "sha512-CewFeM9Vv2gM7Yr9n5eyyLVPRSiBnk6lKZRjgwYnGKSl9M14TMn2vkN02wTF04OGuSDLEzlWiMzvjXuW9mB6Gw==", + "dev": true, + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz", + "integrity": "sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.2.2", + "semver": "^6.1.1" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.4.tgz", + "integrity": "sha512-z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2", + "core-js-compat": "^3.14.0" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz", + "integrity": "sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2" + } + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "27.0.6", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.0.6.tgz", + "integrity": "sha512-WObA0/Biw2LrVVwZkF/2GqbOdzhKD6Fkdwhoy9ASIrOWr/zodcSpQh72JOkEn6NWyjmnPDjNSqaGN4KnpKzhXw==", + "dev": true, + "requires": { + "babel-plugin-jest-hoist": "^27.0.6", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "babel-walk": { + "version": "3.0.0-canary-5", + "resolved": "https://registry.npmjs.org/babel-walk/-/babel-walk-3.0.0-canary-5.tgz", + "integrity": "sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==", + "dev": true, + "requires": { + "@babel/types": "^7.9.6" + } + }, + "bail": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", + "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==", + "dev": true + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "basic-auth": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-1.1.0.tgz", + "integrity": "sha1-RSIe5Cn37h5QNb4/UVM/HN/SmIQ=", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "bin-build": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz", + "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==", + "dev": true, + "requires": { + "decompress": "^4.0.0", + "download": "^6.2.2", + "execa": "^0.7.0", + "p-map-series": "^1.0.0", + "tempfile": "^2.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "dev": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=", + "dev": true + }, + "tempfile": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz", + "integrity": "sha1-awRGhWqbERTRhW/8vlCczLCXcmU=", + "dev": true, + "requires": { + "temp-dir": "^1.0.0", + "uuid": "^3.0.1" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + } + } + }, + "bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "dev": true, + "requires": { + "execa": "^0.7.0", + "executable": "^4.1.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "dev": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + } + } + }, + "bin-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", + "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "find-versions": "^3.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "bin-version-check": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", + "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", + "dev": true, + "requires": { + "bin-version": "^3.0.0", + "semver": "^5.6.0", + "semver-truncate": "^1.1.2" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "bin-wrapper": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", + "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", + "dev": true, + "requires": { + "bin-check": "^4.1.0", + "bin-version-check": "^4.0.0", + "download": "^7.1.0", + "import-lazy": "^3.1.0", + "os-filter-obj": "^2.0.0", + "pify": "^4.0.1" + }, + "dependencies": { + "download": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", + "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", + "dev": true, + "requires": { + "archive-type": "^4.0.0", + "caw": "^2.0.1", + "content-disposition": "^0.5.2", + "decompress": "^4.2.0", + "ext-name": "^5.0.0", + "file-type": "^8.1.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^8.3.1", + "make-dir": "^1.2.0", + "p-event": "^2.1.0", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "file-type": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", + "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", + "dev": true + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "dev": true, + "requires": { + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", + "dev": true + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "dev": true + }, + "p-event": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "dev": true, + "requires": { + "p-timeout": "^2.0.1" + } + }, + "p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "dev": true, + "requires": { + "p-finally": "^1.0.0" + } + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "dev": true + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "dev": true, + "requires": { + "prepend-http": "^2.0.0" + } + } + } + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "browserslist": { + "version": "4.16.8", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.8.tgz", + "integrity": "sha512-sc2m9ohR/49sWEbPj14ZSSZqp+kbi16aLao42Hmn3Z8FpjuMaq2xCA2l4zl9ITfyzvnvyE0hcg62YkIGKxgaNQ==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001251", + "colorette": "^1.3.0", + "electron-to-chromium": "^1.3.811", + "escalade": "^3.1.1", + "node-releases": "^1.1.75" + } + }, + "bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "requires": { + "fast-json-stable-stringify": "2.x" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "requires": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" + }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "dev": true + }, + "buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=" + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "builtin-modules": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz", + "integrity": "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==", + "dev": true + }, + "cac": { + "version": "6.7.3", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.3.tgz", + "integrity": "sha512-ECVqVZh74qgSuZG9YOt2OJPI3wGcf+EwwuF/XIOYqZBD0KZYLtgPWqFPxmDPQ6joxI1nOlvVgRV6VT53Ooyocg==", + "dev": true + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=", + "dev": true, + "requires": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=", + "dev": true + } + } + }, + "cachedir": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.2.0.tgz", + "integrity": "sha512-VvxA0xhNqIIfg0V9AmJkDg91DaJwryutH5rVEZAhcNi4iJFj9f+QxmAjgK1LT9I8OgToX27fypX6/MeCXVbBjQ==", + "dev": true + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + } + }, + "caniuse-lite": { + "version": "1.0.30001252", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001252.tgz", + "integrity": "sha512-I56jhWDGMtdILQORdusxBOH+Nl/KgQSdDmpJezYddnAkVOmnoU8zwjTV9xAjMIYxr0iPreEAVylCGcmHCjfaOw==", + "dev": true + }, + "capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "caw": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "dev": true, + "requires": { + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, + "change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dev": true, + "requires": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true + }, + "character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "dev": true + }, + "character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "dev": true + }, + "character-parser": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz", + "integrity": "sha1-x84o821LzZdE5f/CxfzeHHMmH8A=", + "dev": true, + "requires": { + "is-regex": "^1.0.3" + } + }, + "character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "dev": true + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "ci-info": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.2.0.tgz", + "integrity": "sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==", + "dev": true + }, + "cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", + "dev": true + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "clean-css": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", + "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "cli-spinners": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz", + "integrity": "sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q==", + "dev": true + }, + "cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, + "requires": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + } + } + }, + "cli-width": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", + "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==", + "dev": true + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "dev": true + }, + "clone-regexp": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clone-regexp/-/clone-regexp-2.2.0.tgz", + "integrity": "sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==", + "dev": true, + "requires": { + "is-regexp": "^2.0.0" + }, + "dependencies": { + "is-regexp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-2.1.0.tgz", + "integrity": "sha512-OZ4IlER3zmRIoB9AqNhEggVxqIH4ofDns5nRrPS6yQxXE1TPCUpFznBfRQmQa8uC+pXqjMnukiJBxCisIxiLGA==", + "dev": true + } + } + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true + }, + "collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "colorette": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.3.0.tgz", + "integrity": "sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w==", + "dev": true + }, + "colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.1.0.tgz", + "integrity": "sha512-mf45ldcuHSYShkplHHGKWb4TrmwQadxOn7v4WuhDJy0ZVoY5JFajaRDKD0PNe5qXzBX0rhovjTnP6Kz9LETcuA==" + }, + "commitizen": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/commitizen/-/commitizen-4.2.4.tgz", + "integrity": "sha512-LlZChbDzg3Ir3O2S7jSo/cgWp5/QwylQVr59K4xayVq8S4/RdKzSyJkghAiZZHfhh5t4pxunUoyeg0ml1q/7aw==", + "dev": true, + "requires": { + "cachedir": "2.2.0", + "cz-conventional-changelog": "3.2.0", + "dedent": "0.7.0", + "detect-indent": "6.0.0", + "find-node-modules": "^2.1.2", + "find-root": "1.1.0", + "fs-extra": "8.1.0", + "glob": "7.1.4", + "inquirer": "6.5.2", + "is-utf8": "^0.2.1", + "lodash": "^4.17.20", + "minimist": "1.2.5", + "strip-bom": "4.0.0", + "strip-json-comments": "3.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "inquirer": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.5.2.tgz", + "integrity": "sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==", + "dev": true, + "requires": { + "ansi-escapes": "^3.2.0", + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-width": "^2.0.0", + "external-editor": "^3.0.3", + "figures": "^2.0.0", + "lodash": "^4.17.12", + "mute-stream": "0.0.7", + "run-async": "^2.2.0", + "rxjs": "^6.4.0", + "string-width": "^2.1.0", + "strip-ansi": "^5.1.0", + "through": "^2.3.6" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + } + } + }, + "common-tags": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", + "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==", + "dev": true + }, + "compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dev": true, + "requires": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "compute-scroll-into-view": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz", + "integrity": "sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dev": true, + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "connect": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "dev": true, + "requires": { + "debug": "2.6.9", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", + "utils-merge": "1.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "console-stream": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/console-stream/-/console-stream-0.1.1.tgz", + "integrity": "sha1-oJX+B7IEZZVfL6/Si11yvM2UnUQ=", + "dev": true + }, + "consolidate": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.16.0.tgz", + "integrity": "sha512-Nhl1wzCslqXYTJVDyJCu3ODohy9OfBMB5uD2BiBTzd7w+QY0lBzafkR8y8755yMYHAaMD4NuzbAw03/xzfw+eQ==", + "dev": true, + "requires": { + "bluebird": "^3.7.2" + } + }, + "constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "constantinople": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/constantinople/-/constantinople-4.0.1.tgz", + "integrity": "sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==", + "dev": true, + "requires": { + "@babel/parser": "^7.6.0", + "@babel/types": "^7.6.1" + } + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, + "conventional-changelog": { + "version": "3.1.24", + "resolved": "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.24.tgz", + "integrity": "sha512-ed6k8PO00UVvhExYohroVPXcOJ/K1N0/drJHx/faTH37OIZthlecuLIRX/T6uOp682CAoVoFpu+sSEaeuH6Asg==", + "dev": true, + "requires": { + "conventional-changelog-angular": "^5.0.12", + "conventional-changelog-atom": "^2.0.8", + "conventional-changelog-codemirror": "^2.0.8", + "conventional-changelog-conventionalcommits": "^4.5.0", + "conventional-changelog-core": "^4.2.1", + "conventional-changelog-ember": "^2.0.9", + "conventional-changelog-eslint": "^3.0.9", + "conventional-changelog-express": "^2.0.6", + "conventional-changelog-jquery": "^3.0.11", + "conventional-changelog-jshint": "^2.0.9", + "conventional-changelog-preset-loader": "^2.3.4" + } + }, + "conventional-changelog-angular": { + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.12.tgz", + "integrity": "sha512-5GLsbnkR/7A89RyHLvvoExbiGbd9xKdKqDTrArnPbOqBqG/2wIosu0fHwpeIRI8Tl94MhVNBXcLJZl92ZQ5USw==", + "dev": true, + "requires": { + "compare-func": "^2.0.0", + "q": "^1.5.1" + } + }, + "conventional-changelog-atom": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz", + "integrity": "sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==", + "dev": true, + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-cli": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-2.1.1.tgz", + "integrity": "sha512-xMGQdKJ+4XFDDgfX5aK7UNFduvJMbvF5BB+g0OdVhA3rYdYyhctrIE2Al+WYdZeKTdg9YzMWF2iFPT8MupIwng==", + "dev": true, + "requires": { + "add-stream": "^1.0.0", + "conventional-changelog": "^3.1.24", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "tempfile": "^3.0.0" + } + }, + "conventional-changelog-codemirror": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz", + "integrity": "sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==", + "dev": true, + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-conventionalcommits": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.0.tgz", + "integrity": "sha512-sj9tj3z5cnHaSJCYObA9nISf7eq/YjscLPoq6nmew4SiOjxqL2KRpK20fjnjVbpNDjJ2HR3MoVcWKXwbVvzS0A==", + "dev": true, + "requires": { + "compare-func": "^2.0.0", + "lodash": "^4.17.15", + "q": "^1.5.1" + } + }, + "conventional-changelog-core": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.3.tgz", + "integrity": "sha512-MwnZjIoMRL3jtPH5GywVNqetGILC7g6RQFvdb8LRU/fA/338JbeWAku3PZ8yQ+mtVRViiISqJlb0sOz0htBZig==", + "dev": true, + "requires": { + "add-stream": "^1.0.0", + "conventional-changelog-writer": "^5.0.0", + "conventional-commits-parser": "^3.2.0", + "dateformat": "^3.0.0", + "get-pkg-repo": "^4.0.0", + "git-raw-commits": "^2.0.8", + "git-remote-origin-url": "^2.0.0", + "git-semver-tags": "^4.1.1", + "lodash": "^4.17.15", + "normalize-package-data": "^3.0.0", + "q": "^1.5.1", + "read-pkg": "^3.0.0", + "read-pkg-up": "^3.0.0", + "through2": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "requires": { + "locate-path": "^2.0.0" + } + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "dev": true, + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "dependencies": { + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + } + } + }, + "read-pkg-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", + "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", + "dev": true, + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "conventional-changelog-ember": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz", + "integrity": "sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==", + "dev": true, + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-eslint": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz", + "integrity": "sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==", + "dev": true, + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-express": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz", + "integrity": "sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==", + "dev": true, + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-jquery": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz", + "integrity": "sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==", + "dev": true, + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-jshint": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz", + "integrity": "sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==", + "dev": true, + "requires": { + "compare-func": "^2.0.0", + "q": "^1.5.1" + } + }, + "conventional-changelog-preset-loader": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz", + "integrity": "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==", + "dev": true + }, + "conventional-changelog-writer": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.0.tgz", + "integrity": "sha512-HnDh9QHLNWfL6E1uHz6krZEQOgm8hN7z/m7tT16xwd802fwgMN0Wqd7AQYVkhpsjDUx/99oo+nGgvKF657XP5g==", + "dev": true, + "requires": { + "conventional-commits-filter": "^2.0.7", + "dateformat": "^3.0.0", + "handlebars": "^4.7.6", + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "semver": "^6.0.0", + "split": "^1.0.0", + "through2": "^4.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "conventional-commit-types": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz", + "integrity": "sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==", + "dev": true + }, + "conventional-commits-filter": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz", + "integrity": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==", + "dev": true, + "requires": { + "lodash.ismatch": "^4.4.0", + "modify-values": "^1.0.0" + } + }, + "conventional-commits-parser": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.1.tgz", + "integrity": "sha512-OG9kQtmMZBJD/32NEw5IhN5+HnBqVjy03eC+I71I0oQRFA5rOgA4OtPOYG7mz1GkCfCNxn3gKIX8EiHJYuf1cA==", + "dev": true, + "requires": { + "JSONStream": "^1.0.4", + "is-text-path": "^1.0.1", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0", + "trim-off-newlines": "^1.0.0" + } + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, + "copy-anything": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.3.tgz", + "integrity": "sha512-GK6QUtisv4fNS+XcI7shX0Gx9ORg7QqIznyfho79JTnX1XhLiyZHfftvGiziqzRiEi/Bjhgpi+D2o7HxJFPnDQ==", + "dev": true, + "requires": { + "is-what": "^3.12.0" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "core-js": { + "version": "3.17.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.17.1.tgz", + "integrity": "sha512-C8i/FNpVN2Ti89QIJcFn9ZQmnM+HaAQr2OpE+ja3TRM9Q34FigsGlAVuwPGkIgydSVClo/1l1D1grP8LVt9IYA==" + }, + "core-js-compat": { + "version": "3.17.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.17.1.tgz", + "integrity": "sha512-Oqp6qybMdCFcWSroh/6Q8j7YNOjRD0ThY02cAd6rugr//FCkMYonizLV8AryLU5wNJOweauIBxQYCZoV3emfcw==", + "dev": true, + "requires": { + "browserslist": "^4.16.8", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true + } + } + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "dev": true, + "requires": { + "object-assign": "^4", + "vary": "^1" + } + }, + "corser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz", + "integrity": "sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c=", + "dev": true + }, + "cosmiconfig": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.1" + } + }, + "cross-fetch": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz", + "integrity": "sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ==", + "requires": { + "node-fetch": "2.6.1" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-js": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz", + "integrity": "sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==" + }, + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true + }, + "css-select": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz", + "integrity": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + }, + "dependencies": { + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz", + "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", + "dev": true + }, + "domhandler": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz", + "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + } + } + }, + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "css-what": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.0.1.tgz", + "integrity": "sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "requires": { + "css-tree": "^1.1.2" + } + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + } + } + }, + "csstype": { + "version": "2.6.17", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.17.tgz", + "integrity": "sha512-u1wmTI1jJGzCJzWndZo8mk4wnPTZd1eOIYTYvuEyOQGfmDl3TrabCCfKnOC86FZwW/9djqTl933UF/cS425i9A==" + }, + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "dev": true, + "requires": { + "array-find-index": "^1.0.1" + } + }, + "cwebp-bin": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cwebp-bin/-/cwebp-bin-5.1.0.tgz", + "integrity": "sha512-BsPKStaNr98zfxwejWWLIGELbPERULJoD2v5ijvpeutSAGsegX7gmABgnkRK7MUucCPROXXfaPqkLAwI509JzA==", + "dev": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.1", + "logalot": "^2.1.0" + } + }, + "cz-conventional-changelog": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cz-conventional-changelog/-/cz-conventional-changelog-3.2.0.tgz", + "integrity": "sha512-yAYxeGpVi27hqIilG1nh4A9Bnx4J3Ov+eXy4koL3drrR+IO9GaWPsKjik20ht608Asqi8TQPf0mczhEeyAtMzg==", + "dev": true, + "requires": { + "@commitlint/load": ">6.1.1", + "chalk": "^2.4.1", + "commitizen": "^4.0.3", + "conventional-commit-types": "^3.0.0", + "lodash.map": "^4.5.1", + "longest": "^2.0.1", + "word-wrap": "^1.0.3" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "dargs": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", + "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", + "dev": true + }, + "data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dev": true, + "requires": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + } + }, + "dateformat": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", + "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", + "dev": true + }, + "debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "decamelize-keys": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", + "integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=", + "dev": true, + "requires": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "dependencies": { + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + } + } + }, + "decimal.js": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", + "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "dev": true, + "requires": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "dependencies": { + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + } + } + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "dev": true, + "requires": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + } + } + }, + "decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "dev": true, + "requires": { + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" + }, + "dependencies": { + "file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + } + } + }, + "decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", + "dev": true, + "requires": { + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + } + } + }, + "decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha1-3qrM39FK6vhVePczroIQ+bSEj2k=", + "dev": true, + "requires": { + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" + }, + "dependencies": { + "file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek=", + "dev": true + }, + "get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=", + "dev": true, + "requires": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + } + } + } + }, + "dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", + "dev": true + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "dev": true + }, + "defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "dev": true, + "requires": { + "clone": "^1.0.2" + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", + "dev": true + }, + "detect-indent": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.0.0.tgz", + "integrity": "sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA==", + "dev": true + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true + }, + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true + }, + "diff-sequences": { + "version": "27.0.6", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.0.6.tgz", + "integrity": "sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ==", + "dev": true + }, + "dijkstrajs": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.2.tgz", + "integrity": "sha512-QV6PMaHTCNmKSeP6QoXhVTw9snc9VD8MulTT0Bd99Pacp4SS1cjcrYPgBPmibqKVtMJJfqC6XvOXgPMEEPH/fg==" + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "doctypes": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz", + "integrity": "sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=", + "dev": true + }, + "dom-align": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/dom-align/-/dom-align-1.12.2.tgz", + "integrity": "sha512-pHuazgqrsTFrGU2WLDdXxCFabkdQDx72ddkraZNih1KsMcN5qsRSTR9O4VJRlwTPCPb5COYg3LOfiMHHcPInHg==" + }, + "dom-scroll-into-view": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/dom-scroll-into-view/-/dom-scroll-into-view-2.0.1.tgz", + "integrity": "sha512-bvVTQe1lfaUr1oFzZX80ce9KLDlZ3iU+XGNE/bz9HnGdklTieqsbmsLHe+rT2XWqopvL0PckkYqN7ksmm5pe3w==" + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", + "dev": true + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + } + } + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dev": true, + "requires": { + "webidl-conversions": "^5.0.0" + }, + "dependencies": { + "webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "dev": true + } + } + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "dev": true, + "requires": { + "domelementtype": "1" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dev": true, + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + } + }, + "dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "dev": true + }, + "dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", + "dev": true + }, + "download": { + "version": "6.2.5", + "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz", + "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==", + "dev": true, + "requires": { + "caw": "^2.0.0", + "content-disposition": "^0.5.2", + "decompress": "^4.0.0", + "ext-name": "^5.0.0", + "file-type": "5.2.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^7.0.0", + "make-dir": "^1.0.0", + "p-event": "^1.0.0", + "pify": "^3.0.0" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=", + "dev": true + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "dev": true + }, + "echarts": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.2.0.tgz", + "integrity": "sha512-7CrCKGRjFdpLIJ/Yt1gpHeqs5PiCem2GHPdWZPwKl7WSYeZu0Qzm1bcCFe9/b4dfVaL1zlY4JmdzaVwKksVeqg==", + "requires": { + "tslib": "2.3.0", + "zrender": "5.2.0" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "ejs": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.6.tgz", + "integrity": "sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==", + "dev": true, + "requires": { + "jake": "^10.6.1" + } + }, + "electron-to-chromium": { + "version": "1.3.827", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.827.tgz", + "integrity": "sha512-ye+4uQOY/jbjRutMcE/EmOcNwUeo1qo9aKL2tPyb09cU3lmxNeyDF4RWiemmkknW+p29h7dyDqy02higTxc9/A==", + "dev": true + }, + "emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "dev": true + }, + "emmet": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/emmet/-/emmet-2.3.4.tgz", + "integrity": "sha512-3IqSwmO+N2ZGeuhDyhV/TIOJFUbkChi53bcasSNRE7Yd+4eorbbYz4e53TpMECt38NtYkZNupQCZRlwdAYA42A==", + "dev": true, + "requires": { + "@emmetio/abbreviation": "^2.2.2", + "@emmetio/css-abbreviation": "^2.1.4" + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "dev": true + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "optional": true, + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-abstract": { + "version": "1.18.5", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.5.tgz", + "integrity": "sha512-DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.3", + "is-string": "^1.0.6", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "es-module-lexer": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.7.1.tgz", + "integrity": "sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw==", + "dev": true + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "esbuild": { + "version": "0.12.24", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.12.24.tgz", + "integrity": "sha512-C0ibY+HsXzYB6L/pLWEiWjMpghKsIc58Q5yumARwBQsHl9DXPakW+5NI/Y9w4YXiz0PEP6XTGTT/OV4Nnsmb4A==", + "dev": true + }, + "esbuild-node-loader": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/esbuild-node-loader/-/esbuild-node-loader-0.1.1.tgz", + "integrity": "sha512-n24xYzMfKmPupUZgs0QYBr52HUSh1M1vDtBfkEVa6pdENqo5+U5WP+zaj4Iw2MinuYk1axLW8+NVutrBCkrdmA==", + "dev": true, + "requires": { + "esbuild": "^0.12.6" + } + }, + "esbuild-plugin-alias": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/esbuild-plugin-alias/-/esbuild-plugin-alias-0.1.2.tgz", + "integrity": "sha512-WsX0OJy8IGOsGZV+4oHEU5B6XQUpxOsZN1iSoYf9COTDbY7WXcOwd1oCLYNWUIWCExyGXSghIGq2k7sXBldxwQ==", + "dev": true + }, + "esbuild-register": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-2.6.0.tgz", + "integrity": "sha512-2u4AtnCXP5nivtIxZryiZOUcEQkOzFS7UhAqibUEmaTAThJ48gDLYTBF/Fsz+5r0hbV1jrFE6PQvPDUrKZNt/Q==", + "dev": true, + "requires": { + "esbuild": "^0.12.8", + "jsonc-parser": "^3.0.0" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dev": true, + "requires": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2" + } + } + } + }, + "eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dev": true, + "requires": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "globals": { + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz", + "integrity": "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "eslint-config-prettier": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz", + "integrity": "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==", + "dev": true + }, + "eslint-define-config": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/eslint-define-config/-/eslint-define-config-1.0.9.tgz", + "integrity": "sha512-LRzNlRo9sv43BAXY+nhZIUCZLRisTMEXXSqlGc2uZ8emAGyJv3FDSew2MIVRMwThexEjVxjNmeqduaexJ/GT3Q==", + "dev": true + }, + "eslint-plugin-jest": { + "version": "24.4.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.4.0.tgz", + "integrity": "sha512-8qnt/hgtZ94E9dA6viqfViKBfkJwFHXgJmTWlMGDgunw1XJEGqm3eiPjDsTanM3/u/3Az82nyQM9GX7PM/QGmg==", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "^4.0.1" + } + }, + "eslint-plugin-prettier": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz", + "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==", + "dev": true, + "requires": { + "prettier-linter-helpers": "^1.0.0" + } + }, + "eslint-plugin-vue": { + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.17.0.tgz", + "integrity": "sha512-Rq5R2QetDCgC+kBFQw1+aJ5B93tQ4xqZvoCUxuIzwTonngNArsdP8ChM8PowIzsJvRtWl4ltGh/bZcN3xhFWSw==", + "dev": true, + "requires": { + "eslint-utils": "^2.1.0", + "natural-compare": "^1.4.0", + "semver": "^6.3.0", + "vue-eslint-parser": "^7.10.0" + }, + "dependencies": { + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^2.0.0" + } + }, + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + }, + "esno": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/esno/-/esno-0.8.0.tgz", + "integrity": "sha512-zbvu/Kmv+/MznS1J3/U9fXBpnpl7N2dVkwihq1YzR4JzYfJMuwFxDQ0WcTSUX+rBXmKxbYlgj9dwbog+mJXo1Q==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "esbuild": "^0.12.8", + "esbuild-node-loader": "^0.1.1", + "esbuild-register": "^2.6.0" + } + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "exec-buffer": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz", + "integrity": "sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==", + "dev": true, + "requires": { + "execa": "^0.7.0", + "p-finally": "^1.0.0", + "pify": "^3.0.0", + "rimraf": "^2.5.4", + "tempfile": "^2.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "dev": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=", + "dev": true + }, + "tempfile": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz", + "integrity": "sha1-awRGhWqbERTRhW/8vlCczLCXcmU=", + "dev": true, + "requires": { + "temp-dir": "^1.0.0", + "uuid": "^3.0.1" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + } + } + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "execall": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/execall/-/execall-2.0.0.tgz", + "integrity": "sha512-0FU2hZ5Hh6iQnarpRtQurM/aAvp3RIbfvgLHrcqJYzhXyV2KFruhuChf9NC6waAhiUR7FFtlugkI4p7f2Fqlow==", + "dev": true, + "requires": { + "clone-regexp": "^2.1.0" + } + }, + "executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "dev": true, + "requires": { + "pify": "^2.2.0" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "dev": true + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "expect": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.1.0.tgz", + "integrity": "sha512-9kJngV5hOJgkFil4F/uXm3hVBubUK2nERVfvqNNwxxuW8ZOUwSTTSysgfzckYtv/LBzj/LJXbiAF7okHCXgdug==", + "dev": true, + "requires": { + "@jest/types": "^27.1.0", + "ansi-styles": "^5.0.0", + "jest-get-type": "^27.0.6", + "jest-matcher-utils": "^27.1.0", + "jest-message-util": "^27.1.0", + "jest-regex-util": "^27.0.6" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "dev": true, + "requires": { + "mime-db": "^1.28.0" + } + }, + "ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "dev": true, + "requires": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "fast-xml-parser": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz", + "integrity": "sha512-4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg==", + "dev": true + }, + "fastest-levenshtein": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", + "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", + "dev": true + }, + "fastq": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.12.0.tgz", + "integrity": "sha512-VNX0QkHK3RsXVKr9KrlUv/FoTa0NdbYoHHl7uXHv2rzyHSlxjdNAKug2twd9luJxpcyNeAgf5iPPMutJO67Dfg==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "dev": true, + "requires": { + "bser": "2.1.1" + } + }, + "fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "dev": true, + "requires": { + "pend": "~1.2.0" + } + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-type": { + "version": "12.4.2", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-12.4.2.tgz", + "integrity": "sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==", + "dev": true + }, + "filelist": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.2.tgz", + "integrity": "sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ==", + "dev": true, + "requires": { + "minimatch": "^3.0.4" + } + }, + "filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=", + "dev": true + }, + "filenamify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", + "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", + "dev": true, + "requires": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "find-node-modules": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/find-node-modules/-/find-node-modules-2.1.2.tgz", + "integrity": "sha512-x+3P4mbtRPlSiVE1Qco0Z4YLU8WFiFcuWTf3m75OV9Uzcfs2Bg+O9N+r/K0AnmINBW06KpfqKwYJbFlFq4qNug==", + "dev": true, + "requires": { + "findup-sync": "^4.0.0", + "merge": "^2.1.0" + } + }, + "find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", + "dev": true + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "find-versions": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", + "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", + "dev": true, + "requires": { + "semver-regex": "^2.0.0" + } + }, + "findup-sync": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz", + "integrity": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^4.0.2", + "resolve-dir": "^1.0.1" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", + "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", + "dev": true + }, + "follow-redirects": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.2.tgz", + "integrity": "sha512-yLR6WaE2lbF0x4K2qE2p9PEXKLDjUjnR/xmjS3wHAYxtlsI9MLLBJUZirAHKzUZDGLxje7w/cXR49WOUo4rbsA==" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "fraction.js": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.1.tgz", + "integrity": "sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg==", + "dev": true + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "fs-extra": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", + "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "generic-names": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-2.0.1.tgz", + "integrity": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==", + "dev": true, + "requires": { + "loader-utils": "^1.1.0" + } + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", + "dev": true + }, + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true + }, + "get-pkg-repo": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.1.2.tgz", + "integrity": "sha512-/FjamZL9cBYllEbReZkxF2IMh80d8TJoC4e3bmLNif8ibHw95aj0N/tzqK0kZz9eU/3w3dL6lF4fnnX/sDdW3A==", + "dev": true, + "requires": { + "@hutson/parse-repository-url": "^3.0.0", + "hosted-git-info": "^4.0.0", + "meow": "^7.0.0", + "through2": "^2.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "meow": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/meow/-/meow-7.1.1.tgz", + "integrity": "sha512-GWHvA5QOcS412WCo8vwKDlTelGLsCGBVevQB5Kva961rmNfun0PCbv5+xta2kUMFJyR8/oWnn7ddeKdosbAPbA==", + "dev": true, + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^2.5.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.13.1", + "yargs-parser": "^18.1.3" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + } + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "dev": true, + "requires": { + "npm-conf": "^1.1.0" + } + }, + "get-stdin": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", + "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "dev": true + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "gifsicle": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/gifsicle/-/gifsicle-5.2.0.tgz", + "integrity": "sha512-vOIS3j0XoTCxq9pkGj43gEix82RkI5FveNgaFZutjbaui/HH+4fR8Y56dwXDuxYo8hR4xOo6/j2h1WHoQW6XLw==", + "dev": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "execa": "^5.0.0", + "logalot": "^2.0.0" + } + }, + "git-raw-commits": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.10.tgz", + "integrity": "sha512-sHhX5lsbG9SOO6yXdlwgEMQ/ljIn7qMpAbJZCGfXX2fq5T8M5SrDnpYk9/4HswTildcIqatsWa91vty6VhWSaQ==", + "dev": true, + "requires": { + "dargs": "^7.0.0", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + } + }, + "git-remote-origin-url": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz", + "integrity": "sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=", + "dev": true, + "requires": { + "gitconfiglocal": "^1.0.0", + "pify": "^2.3.0" + } + }, + "git-semver-tags": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-4.1.1.tgz", + "integrity": "sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==", + "dev": true, + "requires": { + "meow": "^8.0.0", + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "gitconfiglocal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz", + "integrity": "sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=", + "dev": true, + "requires": { + "ini": "^1.3.2" + } + }, + "glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "global-dirs": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", + "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", + "dev": true, + "requires": { + "ini": "^1.3.4" + } + }, + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "globby": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "globjoin": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", + "integrity": "sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=", + "dev": true + }, + "gonzales-pe": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/gonzales-pe/-/gonzales-pe-4.3.0.tgz", + "integrity": "sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "got": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", + "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", + "dev": true, + "requires": { + "decompress-response": "^3.2.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-plain-obj": "^1.1.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "p-cancelable": "^0.3.0", + "p-timeout": "^1.1.1", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "url-parse-lax": "^1.0.0", + "url-to-options": "^1.0.1" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "dev": true + }, + "handlebars": { + "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "dev": true, + "requires": { + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "uglify-js": "^3.1.4", + "wordwrap": "^1.0.0" + } + }, + "hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + } + } + }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "dev": true + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", + "dev": true + }, + "has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "dev": true, + "requires": { + "has-symbol-support-x": "^1.4.1" + } + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hash-sum": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", + "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", + "dev": true + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dev": true, + "requires": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "hosted-git-info": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.0.2.tgz", + "integrity": "sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dev": true, + "requires": { + "whatwg-encoding": "^1.0.5" + } + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "dev": true, + "requires": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "dependencies": { + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true + } + } + }, + "html-tags": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", + "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==", + "dev": true + }, + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "dev": true, + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + } + }, + "http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", + "dev": true + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + } + }, + "http-server": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/http-server/-/http-server-13.0.1.tgz", + "integrity": "sha512-ke9rphoNuqsOCHy4tA3b3W4Yuxy7VUIXcTHSLz6bkMDAJPQD4twjEatquelJBIPwNhZuC3+FYj/+dSaGHdKTCw==", + "dev": true, + "requires": { + "basic-auth": "^1.0.3", + "colors": "^1.4.0", + "corser": "^2.0.1", + "he": "^1.1.0", + "http-proxy": "^1.18.0", + "mime": "^1.6.0", + "minimist": "^1.2.5", + "opener": "^1.5.1", + "portfinder": "^1.0.25", + "secure-compare": "3.0.1", + "union": "~0.5.0", + "url-join": "^2.0.5" + } + }, + "https-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", + "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", + "dev": true, + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true + }, + "husky": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/husky/-/husky-7.0.2.tgz", + "integrity": "sha512-8yKEWNX4z2YsofXAMT7KvA1g8p+GxtB1ffV8XtpAEGuXNAbCV5wdNKH+qTpw8SM9fh4aMPDR+yQuKfgnreyZlg==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-replace-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", + "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=", + "dev": true + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true + }, + "idb": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/idb/-/idb-6.1.3.tgz", + "integrity": "sha512-oIRDpVcs5KXpI1hRnTJUwkY63RB/7iqu9nSNuzXN8TLHjs7oO20IoPFbBTsqxIL5IjzIUDi+FXlVcK4zm26J8A==", + "dev": true + }, + "ids": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ids/-/ids-1.0.0.tgz", + "integrity": "sha512-Zvtq1xUto4LttpstyOlFum8lKx+i1OmRfg+6A9drFS9iSZsDPMHG4Sof/qwNR4kCU7jBeWFPrY2ocHxiz7cCRw==" + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "dev": true + }, + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "dev": true + }, + "imagemin": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-7.0.1.tgz", + "integrity": "sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w==", + "dev": true, + "requires": { + "file-type": "^12.0.0", + "globby": "^10.0.0", + "graceful-fs": "^4.2.2", + "junk": "^3.1.0", + "make-dir": "^3.0.0", + "p-pipe": "^3.0.0", + "replace-ext": "^1.0.0" + }, + "dependencies": { + "globby": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", + "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + } + } + } + }, + "imagemin-gifsicle": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-7.0.0.tgz", + "integrity": "sha512-LaP38xhxAwS3W8PFh4y5iQ6feoTSF+dTAXFRUEYQWYst6Xd+9L/iPk34QGgK/VO/objmIlmq9TStGfVY2IcHIA==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "gifsicle": "^5.0.0", + "is-gif": "^3.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "imagemin-jpegtran": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/imagemin-jpegtran/-/imagemin-jpegtran-7.0.0.tgz", + "integrity": "sha512-MJoyTCW8YjMJf56NorFE41SR/WkaGA3IYk4JgvMlRwguJEEd3PnP9UxA8Y2UWjquz8d+On3Ds/03ZfiiLS8xTQ==", + "dev": true, + "requires": { + "exec-buffer": "^3.0.0", + "is-jpg": "^2.0.0", + "jpegtran-bin": "^5.0.0" + } + }, + "imagemin-mozjpeg": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/imagemin-mozjpeg/-/imagemin-mozjpeg-9.0.0.tgz", + "integrity": "sha512-TwOjTzYqCFRgROTWpVSt5UTT0JeCuzF1jswPLKALDd89+PmrJ2PdMMYeDLYZ1fs9cTovI9GJd68mRSnuVt691w==", + "dev": true, + "requires": { + "execa": "^4.0.0", + "is-jpg": "^2.0.0", + "mozjpeg": "^7.0.0" + }, + "dependencies": { + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true + } + } + }, + "imagemin-optipng": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz", + "integrity": "sha512-CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A==", + "dev": true, + "requires": { + "exec-buffer": "^3.0.0", + "is-png": "^2.0.0", + "optipng-bin": "^7.0.0" + } + }, + "imagemin-pngquant": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz", + "integrity": "sha512-cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg==", + "dev": true, + "requires": { + "execa": "^4.0.0", + "is-png": "^2.0.0", + "is-stream": "^2.0.0", + "ow": "^0.17.0", + "pngquant-bin": "^6.0.0" + }, + "dependencies": { + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true + } + } + }, + "imagemin-svgo": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-9.0.0.tgz", + "integrity": "sha512-uNgXpKHd99C0WODkrJ8OO/3zW3qjgS4pW7hcuII0RcHN3tnKxDjJWcitdVC/TZyfIqSricU8WfrHn26bdSW62g==", + "dev": true, + "requires": { + "is-svg": "^4.2.1", + "svgo": "^2.1.0" + } + }, + "imagemin-webp": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/imagemin-webp/-/imagemin-webp-6.0.0.tgz", + "integrity": "sha512-DmVCkI8H1csyqAExsk93LzC88gj2uKXaLLW5Ly+WYsvNx7xv5cJAlozXWIx9Z0kEQr9w98gphi5aP2b++iDH8g==", + "dev": true, + "requires": { + "cwebp-bin": "^5.0.0", + "exec-buffer": "^3.0.0", + "is-cwebp-readable": "^3.0.0" + } + }, + "import-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz", + "integrity": "sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==", + "dev": true, + "requires": { + "import-from": "^3.0.0" + } + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + } + } + }, + "import-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz", + "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + } + }, + "import-lazy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", + "dev": true + }, + "import-local": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz", + "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "inquirer": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.1.2.tgz", + "integrity": "sha512-DHLKJwLPNgkfwNmsuEUKSejJFbkv0FMO9SMiQbjI3n5NQuCrSIBqP66ggqyz2a6t2qEolKrMjhQ3+W/xXgUQ+Q==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.3.0", + "run-async": "^2.4.0", + "rxjs": "^7.2.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "rxjs": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.3.0.tgz", + "integrity": "sha512-p2yuGIg9S1epc3vrjKf6iVb3RCaAYjYskkO+jHIaV0IjOPlJop4UnodOoFb2xeNwlguqLYvGw1b1McillYb5Gw==", + "dev": true, + "requires": { + "tslib": "~2.1.0" + } + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==", + "dev": true + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } + } + }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=", + "dev": true, + "requires": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "dev": true + }, + "is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dev": true, + "requires": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "dev": true + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "dev": true + }, + "is-ci": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.0.tgz", + "integrity": "sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ==", + "dev": true, + "requires": { + "ci-info": "^3.1.1" + } + }, + "is-core-module": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.6.0.tgz", + "integrity": "sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-cwebp-readable": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-cwebp-readable/-/is-cwebp-readable-3.0.0.tgz", + "integrity": "sha512-bpELc7/Q1/U5MWHn4NdHI44R3jxk0h9ew9ljzabiRl70/UIjL/ZAqRMb52F5+eke/VC8yTiv4Ewryo1fPWidvA==", + "dev": true, + "requires": { + "file-type": "^10.5.0" + }, + "dependencies": { + "file-type": { + "version": "10.11.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", + "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", + "dev": true + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "dev": true + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true + }, + "is-expression": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz", + "integrity": "sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "object-assign": "^4.1.1" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-finite": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true + }, + "is-gif": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz", + "integrity": "sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==", + "dev": true, + "requires": { + "file-type": "^10.4.0" + }, + "dependencies": { + "file-type": { + "version": "10.11.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", + "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", + "dev": true + } + } + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "dev": true + }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true + }, + "is-jpg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz", + "integrity": "sha1-LhmX+m6RZuqsAkLarkQ0A+TvHZc=", + "dev": true + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=", + "dev": true + }, + "is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=", + "dev": true + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-number-object": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, + "is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "dev": true + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "dev": true + }, + "is-plain-object": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.1.tgz", + "integrity": "sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==" + }, + "is-png": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-png/-/is-png-2.0.0.tgz", + "integrity": "sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g==", + "dev": true + }, + "is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true + }, + "is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", + "dev": true + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", + "dev": true + }, + "is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "dev": true + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-svg": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-4.3.1.tgz", + "integrity": "sha512-h2CGs+yPUyvkgTJQS9cJzo9lYK06WgRiXUqBBHtglSzVKAuH4/oWsqk7LGfbSa1hGk9QcZ0SyQtVggvBA8LZXA==", + "dev": true, + "requires": { + "fast-xml-parser": "^3.19.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-text-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", + "integrity": "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=", + "dev": true, + "requires": { + "text-extensions": "^1.0.0" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + }, + "is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", + "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "dev": true, + "requires": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", + "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + } + }, + "istanbul-reports": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", + "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "dev": true, + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "dev": true, + "requires": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + } + }, + "jake": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.2.tgz", + "integrity": "sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A==", + "dev": true, + "requires": { + "async": "0.9.x", + "chalk": "^2.4.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "dependencies": { + "async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "jest": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.1.0.tgz", + "integrity": "sha512-pSQDVwRSwb109Ss13lcMtdfS9r8/w2Zz8+mTUA9VORD66GflCdl8nUFCqM96geOD2EBwWCNURrNAfQsLIDNBdg==", + "dev": true, + "requires": { + "@jest/core": "^27.1.0", + "import-local": "^3.0.2", + "jest-cli": "^27.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "jest-cli": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.1.0.tgz", + "integrity": "sha512-h6zPUOUu+6oLDrXz0yOWY2YXvBLk8gQinx4HbZ7SF4V3HzasQf+ncoIbKENUMwXyf54/6dBkYXvXJos+gOHYZw==", + "dev": true, + "requires": { + "@jest/core": "^27.1.0", + "@jest/test-result": "^27.1.0", + "@jest/types": "^27.1.0", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "jest-config": "^27.1.0", + "jest-util": "^27.1.0", + "jest-validate": "^27.1.0", + "prompts": "^2.0.1", + "yargs": "^16.0.3" + } + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } + }, + "jest-changed-files": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.1.0.tgz", + "integrity": "sha512-eRcb13TfQw0xiV2E98EmiEgs9a5uaBIqJChyl0G7jR9fCIvGjXovnDS6Zbku3joij4tXYcSK4SE1AXqOlUxjWg==", + "dev": true, + "requires": { + "@jest/types": "^27.1.0", + "execa": "^5.0.0", + "throat": "^6.0.1" + } + }, + "jest-circus": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.1.0.tgz", + "integrity": "sha512-6FWtHs3nZyZlMBhRf1wvAC5CirnflbGJAY1xssSAnERLiiXQRH+wY2ptBVtXjX4gz4AA2EwRV57b038LmifRbA==", + "dev": true, + "requires": { + "@jest/environment": "^27.1.0", + "@jest/test-result": "^27.1.0", + "@jest/types": "^27.1.0", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.1.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.1.0", + "jest-matcher-utils": "^27.1.0", + "jest-message-util": "^27.1.0", + "jest-runtime": "^27.1.0", + "jest-snapshot": "^27.1.0", + "jest-util": "^27.1.0", + "pretty-format": "^27.1.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + } + }, + "jest-config": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.1.0.tgz", + "integrity": "sha512-GMo7f76vMYUA3b3xOdlcKeKQhKcBIgurjERO2hojo0eLkKPGcw7fyIoanH+m6KOP2bLad+fGnF8aWOJYxzNPeg==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^27.1.0", + "@jest/types": "^27.1.0", + "babel-jest": "^27.1.0", + "chalk": "^4.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "is-ci": "^3.0.0", + "jest-circus": "^27.1.0", + "jest-environment-jsdom": "^27.1.0", + "jest-environment-node": "^27.1.0", + "jest-get-type": "^27.0.6", + "jest-jasmine2": "^27.1.0", + "jest-regex-util": "^27.0.6", + "jest-resolve": "^27.1.0", + "jest-runner": "^27.1.0", + "jest-util": "^27.1.0", + "jest-validate": "^27.1.0", + "micromatch": "^4.0.4", + "pretty-format": "^27.1.0" + } + }, + "jest-diff": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.1.0.tgz", + "integrity": "sha512-rjfopEYl58g/SZTsQFmspBODvMSytL16I+cirnScWTLkQVXYVZfxm78DFfdIIXc05RCYuGjxJqrdyG4PIFzcJg==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^27.0.6", + "jest-get-type": "^27.0.6", + "pretty-format": "^27.1.0" + } + }, + "jest-docblock": { + "version": "27.0.6", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.0.6.tgz", + "integrity": "sha512-Fid6dPcjwepTFraz0YxIMCi7dejjJ/KL9FBjPYhBp4Sv1Y9PdhImlKZqYU555BlN4TQKaTc+F2Av1z+anVyGkA==", + "dev": true, + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.1.0.tgz", + "integrity": "sha512-K/cNvQlmDqQMRHF8CaQ0XPzCfjP5HMJc2bIJglrIqI9fjwpNqITle63IWE+wq4p+3v+iBgh7Wq0IdGpLx5xjDg==", + "dev": true, + "requires": { + "@jest/types": "^27.1.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.0.6", + "jest-util": "^27.1.0", + "pretty-format": "^27.1.0" + } + }, + "jest-environment-jsdom": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.1.0.tgz", + "integrity": "sha512-JbwOcOxh/HOtsj56ljeXQCUJr3ivnaIlM45F5NBezFLVYdT91N5UofB1ux2B1CATsQiudcHdgTaeuqGXJqjJYQ==", + "dev": true, + "requires": { + "@jest/environment": "^27.1.0", + "@jest/fake-timers": "^27.1.0", + "@jest/types": "^27.1.0", + "@types/node": "*", + "jest-mock": "^27.1.0", + "jest-util": "^27.1.0", + "jsdom": "^16.6.0" + } + }, + "jest-environment-node": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.1.0.tgz", + "integrity": "sha512-JIyJ8H3wVyM4YCXp7njbjs0dIT87yhGlrXCXhDKNIg1OjurXr6X38yocnnbXvvNyqVTqSI4M9l+YfPKueqL1lw==", + "dev": true, + "requires": { + "@jest/environment": "^27.1.0", + "@jest/fake-timers": "^27.1.0", + "@jest/types": "^27.1.0", + "@types/node": "*", + "jest-mock": "^27.1.0", + "jest-util": "^27.1.0" + } + }, + "jest-get-type": { + "version": "27.0.6", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.0.6.tgz", + "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "dev": true + }, + "jest-haste-map": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.1.0.tgz", + "integrity": "sha512-7mz6LopSe+eA6cTFMf10OfLLqRoIPvmMyz5/OnSXnHO7hB0aDP1iIeLWCXzAcYU5eIJVpHr12Bk9yyq2fTW9vg==", + "dev": true, + "requires": { + "@jest/types": "^27.1.0", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^27.0.6", + "jest-serializer": "^27.0.6", + "jest-util": "^27.1.0", + "jest-worker": "^27.1.0", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-jasmine2": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.1.0.tgz", + "integrity": "sha512-Z/NIt0wBDg3przOW2FCWtYjMn3Ip68t0SL60agD/e67jlhTyV3PIF8IzT9ecwqFbeuUSO2OT8WeJgHcalDGFzQ==", + "dev": true, + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^27.1.0", + "@jest/source-map": "^27.0.6", + "@jest/test-result": "^27.1.0", + "@jest/types": "^27.1.0", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.1.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.1.0", + "jest-matcher-utils": "^27.1.0", + "jest-message-util": "^27.1.0", + "jest-runtime": "^27.1.0", + "jest-snapshot": "^27.1.0", + "jest-util": "^27.1.0", + "pretty-format": "^27.1.0", + "throat": "^6.0.1" + } + }, + "jest-leak-detector": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.1.0.tgz", + "integrity": "sha512-oHvSkz1E80VyeTKBvZNnw576qU+cVqRXUD3/wKXh1zpaki47Qty2xeHg2HKie9Hqcd2l4XwircgNOWb/NiGqdA==", + "dev": true, + "requires": { + "jest-get-type": "^27.0.6", + "pretty-format": "^27.1.0" + } + }, + "jest-matcher-utils": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.1.0.tgz", + "integrity": "sha512-VmAudus2P6Yt/JVBRdTPFhUzlIN8DYJd+et5Rd9QDsO/Z82Z4iwGjo43U8Z+PTiz8CBvKvlb6Fh3oKy39hykkQ==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^27.1.0", + "jest-get-type": "^27.0.6", + "pretty-format": "^27.1.0" + } + }, + "jest-message-util": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.1.0.tgz", + "integrity": "sha512-Eck8NFnJ5Sg36R9XguD65cf2D5+McC+NF5GIdEninoabcuoOfWrID5qJhufq5FB0DRKoiyxB61hS7MKoMD0trQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.1.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "pretty-format": "^27.1.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } + }, + "jest-mock": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.1.0.tgz", + "integrity": "sha512-iT3/Yhu7DwAg/0HvvLCqLvrTKTRMyJlrrfJYWzuLSf9RCAxBoIXN3HoymZxMnYsC3eD8ewGbUa9jUknwBenx2w==", + "dev": true, + "requires": { + "@jest/types": "^27.1.0", + "@types/node": "*" + } + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "dev": true + }, + "jest-regex-util": { + "version": "27.0.6", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.0.6.tgz", + "integrity": "sha512-SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ==", + "dev": true + }, + "jest-resolve": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.1.0.tgz", + "integrity": "sha512-TXvzrLyPg0vLOwcWX38ZGYeEztSEmW+cQQKqc4HKDUwun31wsBXwotRlUz4/AYU/Fq4GhbMd/ileIWZEtcdmIA==", + "dev": true, + "requires": { + "@jest/types": "^27.1.0", + "chalk": "^4.0.0", + "escalade": "^3.1.1", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.1.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.1.0", + "jest-validate": "^27.1.0", + "resolve": "^1.20.0", + "slash": "^3.0.0" + } + }, + "jest-resolve-dependencies": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.1.0.tgz", + "integrity": "sha512-Kq5XuDAELuBnrERrjFYEzu/A+i2W7l9HnPWqZEeKGEQ7m1R+6ndMbdXCVCx29Se1qwLZLgvoXwinB3SPIaitMQ==", + "dev": true, + "requires": { + "@jest/types": "^27.1.0", + "jest-regex-util": "^27.0.6", + "jest-snapshot": "^27.1.0" + } + }, + "jest-runner": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.1.0.tgz", + "integrity": "sha512-ZWPKr9M5w5gDplz1KsJ6iRmQaDT/yyAFLf18fKbb/+BLWsR1sCNC2wMT0H7pP3gDcBz0qZ6aJraSYUNAGSJGaw==", + "dev": true, + "requires": { + "@jest/console": "^27.1.0", + "@jest/environment": "^27.1.0", + "@jest/test-result": "^27.1.0", + "@jest/transform": "^27.1.0", + "@jest/types": "^27.1.0", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-docblock": "^27.0.6", + "jest-environment-jsdom": "^27.1.0", + "jest-environment-node": "^27.1.0", + "jest-haste-map": "^27.1.0", + "jest-leak-detector": "^27.1.0", + "jest-message-util": "^27.1.0", + "jest-resolve": "^27.1.0", + "jest-runtime": "^27.1.0", + "jest-util": "^27.1.0", + "jest-worker": "^27.1.0", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + } + }, + "jest-runtime": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.1.0.tgz", + "integrity": "sha512-okiR2cpGjY0RkWmUGGado6ETpFOi9oG3yV0CioYdoktkVxy5Hv0WRLWnJFuArSYS8cHMCNcceUUMGiIfgxCO9A==", + "dev": true, + "requires": { + "@jest/console": "^27.1.0", + "@jest/environment": "^27.1.0", + "@jest/fake-timers": "^27.1.0", + "@jest/globals": "^27.1.0", + "@jest/source-map": "^27.0.6", + "@jest/test-result": "^27.1.0", + "@jest/transform": "^27.1.0", + "@jest/types": "^27.1.0", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.1.0", + "jest-message-util": "^27.1.0", + "jest-mock": "^27.1.0", + "jest-regex-util": "^27.0.6", + "jest-resolve": "^27.1.0", + "jest-snapshot": "^27.1.0", + "jest-util": "^27.1.0", + "jest-validate": "^27.1.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^16.0.3" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } + }, + "jest-serializer": { + "version": "27.0.6", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.0.6.tgz", + "integrity": "sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA==", + "dev": true, + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.4" + } + }, + "jest-snapshot": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.1.0.tgz", + "integrity": "sha512-eaeUBoEjuuRwmiRI51oTldUsKOohB1F6fPqWKKILuDi/CStxzp2IWekVUXbuHHoz5ik33ioJhshiHpgPFbYgcA==", + "dev": true, + "requires": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/parser": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.1.0", + "@jest/types": "^27.1.0", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.1.0", + "graceful-fs": "^4.2.4", + "jest-diff": "^27.1.0", + "jest-get-type": "^27.0.6", + "jest-haste-map": "^27.1.0", + "jest-matcher-utils": "^27.1.0", + "jest-message-util": "^27.1.0", + "jest-resolve": "^27.1.0", + "jest-util": "^27.1.0", + "natural-compare": "^1.4.0", + "pretty-format": "^27.1.0", + "semver": "^7.3.2" + } + }, + "jest-util": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.1.0.tgz", + "integrity": "sha512-edSLD2OneYDKC6gZM1yc+wY/877s/fuJNoM1k3sOEpzFyeptSmke3SLnk1dDHk9CgTA+58mnfx3ew3J11Kes/w==", + "dev": true, + "requires": { + "@jest/types": "^27.1.0", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^3.0.0", + "picomatch": "^2.2.3" + } + }, + "jest-validate": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.1.0.tgz", + "integrity": "sha512-QiJ+4XuSuMsfPi9zvdO//IrSRSlG6ybJhOpuqYSsuuaABaNT84h0IoD6vvQhThBOKT+DIKvl5sTM0l6is9+SRA==", + "dev": true, + "requires": { + "@jest/types": "^27.1.0", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.0.6", + "leven": "^3.1.0", + "pretty-format": "^27.1.0" + }, + "dependencies": { + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "dev": true + } + } + }, + "jest-watcher": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.1.0.tgz", + "integrity": "sha512-ivaWTrA46aHWdgPDgPypSHiNQjyKnLBpUIHeBaGg11U+pDzZpkffGlcB1l1a014phmG0mHgkOHtOgiqJQM6yKQ==", + "dev": true, + "requires": { + "@jest/test-result": "^27.1.0", + "@jest/types": "^27.1.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.1.0", + "string-length": "^4.0.1" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } + } + }, + "jest-worker": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.1.0.tgz", + "integrity": "sha512-mO4PHb2QWLn9yRXGp7rkvXLAYuxwhq1ZYUo0LoDhg8wqvv4QizP1ZWEJOeolgbEgAWZLIEU0wsku8J+lGWfBhg==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jiti": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.11.0.tgz", + "integrity": "sha512-/2c7e61hxxTIN34UeHBB0LCJ5Tq64kgJDV7GR+++e8XRxCKRIKmB8tH6ww1W+Z6Kgd6By+C3RSCu1lXjbPT68A==", + "dev": true + }, + "joycon": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/joycon/-/joycon-3.0.1.tgz", + "integrity": "sha512-SJcJNBg32dGgxhPtM0wQqxqV0ax9k/9TaUskGDSJkSFSQOEWWvQ3zzWdGQRIUry2j1zA5+ReH13t0Mf3StuVZA==", + "dev": true + }, + "jpegtran-bin": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/jpegtran-bin/-/jpegtran-bin-5.0.2.tgz", + "integrity": "sha512-4FSmgIcr8d5+V6T1+dHbPZjaFH0ogVyP4UVsE+zri7S9YLO4qAT2our4IN3sW3STVgNTbqPermdIgt2XuAJ4EA==", + "dev": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "logalot": "^2.0.0" + } + }, + "js-base64": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", + "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==", + "dev": true + }, + "js-stringify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz", + "integrity": "sha1-Fzb939lyTyijaCrcYjCufk6Weds=", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dev": true, + "requires": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "acorn": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz", + "integrity": "sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==", + "dev": true + } + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.3.0.tgz", + "integrity": "sha512-TYfxx36xfl52Rf1LU9HyWSLGPdYLL+SQ8/E/0yVyKG8wCCDaSrhPap0vEdlsZWRaS6tnKKLPGiEJGiREVC8kxQ==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "jsonc-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", + "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", + "dev": true + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", + "dev": true + }, + "jsonpointer": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.1.0.tgz", + "integrity": "sha512-CXcRvMyTlnR53xMcKnuMzfCA5i/nfblTnnr74CZb6C4vG39eu6w51t7nKmU5MfLfbTgGItliNyjO/ciNPDqClg==", + "dev": true + }, + "jstransformer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz", + "integrity": "sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=", + "dev": true, + "requires": { + "is-promise": "^2.0.0", + "promise": "^7.0.1" + } + }, + "junk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "dev": true + }, + "keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "dev": true, + "requires": { + "json-buffer": "3.0.0" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true + }, + "known-css-properties": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.21.0.tgz", + "integrity": "sha512-sZLUnTqimCkvkgRS+kbPlYW5o8q5w1cu+uIisKpEWkj31I8mx8kNG162DwRav8Zirkva6N5uoFsm9kzK4mUXjw==", + "dev": true + }, + "less": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.1.tgz", + "integrity": "sha512-w09o8tZFPThBscl5d0Ggp3RcrKIouBoQscnOMgFH3n5V3kN/CXGHNfCkRPtxJk6nKryDXaV9aHLK55RXuH4sAw==", + "dev": true, + "requires": { + "copy-anything": "^2.0.1", + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^2.5.2", + "parse-node-version": "^1.0.1", + "source-map": "~0.6.0", + "tslib": "^1.10.0" + }, + "dependencies": { + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "optional": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "optional": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lilconfig": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.3.tgz", + "integrity": "sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg==", + "dev": true + }, + "lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "dev": true + }, + "lint-staged": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-11.1.2.tgz", + "integrity": "sha512-6lYpNoA9wGqkL6Hew/4n1H6lRqF3qCsujVT0Oq5Z4hiSAM7S6NksPJ3gnr7A7R52xCtiZMcEUNNQ6d6X5Bvh9w==", + "dev": true, + "requires": { + "chalk": "^4.1.1", + "cli-truncate": "^2.1.0", + "commander": "^7.2.0", + "cosmiconfig": "^7.0.0", + "debug": "^4.3.1", + "enquirer": "^2.3.6", + "execa": "^5.0.0", + "listr2": "^3.8.2", + "log-symbols": "^4.1.0", + "micromatch": "^4.0.4", + "normalize-path": "^3.0.0", + "please-upgrade-node": "^3.2.0", + "string-argv": "0.3.1", + "stringify-object": "^3.3.0" + }, + "dependencies": { + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true + } + } + }, + "listr2": { + "version": "3.11.1", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.11.1.tgz", + "integrity": "sha512-ZXQvQfmH9iWLlb4n3hh31yicXDxlzB0pE7MM1zu6kgbVL4ivEsO4H8IPh4E682sC8RjnYO9anose+zT52rrpyg==", + "dev": true, + "requires": { + "cli-truncate": "^2.1.0", + "colorette": "^1.2.2", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rxjs": "^6.6.7", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + } + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=", + "dev": true + }, + "lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", + "dev": true + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "dev": true + }, + "lodash.ismatch": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", + "integrity": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=", + "dev": true + }, + "lodash.map": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", + "integrity": "sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "dev": true + }, + "lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", + "dev": true + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + } + }, + "log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "dev": true, + "requires": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "logalot": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/logalot/-/logalot-2.1.0.tgz", + "integrity": "sha1-X46MkNME7fElMJUaVVSruMXj9VI=", + "dev": true, + "requires": { + "figures": "^1.3.5", + "squeak": "^1.0.0" + }, + "dependencies": { + "figures": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5", + "object-assign": "^4.1.0" + } + } + } + }, + "longest": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-2.0.1.tgz", + "integrity": "sha1-eB4YMpaqlPbU2RbcM10NF676I/g=", + "dev": true + }, + "longest-streak": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", + "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", + "dev": true + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "dev": true, + "requires": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true + }, + "lpad-align": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/lpad-align/-/lpad-align-1.1.2.tgz", + "integrity": "sha1-IfYArBwwlcPG5JfuZyce4ISB/p4=", + "dev": true, + "requires": { + "get-stdin": "^4.0.1", + "indent-string": "^2.1.0", + "longest": "^1.0.0", + "meow": "^3.3.0" + }, + "dependencies": { + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "dev": true + }, + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "dev": true, + "requires": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "dev": true, + "requires": { + "repeating": "^2.0.0" + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "dev": true + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + }, + "meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "dev": true, + "requires": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, + "requires": { + "error-ex": "^1.2.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + } + }, + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "dev": true, + "requires": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "requires": { + "is-utf8": "^0.2.0" + } + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "dev": true, + "requires": { + "get-stdin": "^4.0.1" + } + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "dev": true + } + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "magic-string": { + "version": "0.25.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", + "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", + "dev": true, + "requires": { + "sourcemap-codec": "^1.4.4" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "makeerror": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "dev": true, + "requires": { + "tmpl": "1.0.x" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-obj": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.2.1.tgz", + "integrity": "sha512-+WA2/1sPmDj1dlvvJmB5G6JKfY9dpn7EVBUL06+y6PoljPkh+6V1QihwxNkbcGxCRjt2b0F9K0taiCuo7MbdFQ==", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "mathml-tag-names": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", + "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", + "dev": true + }, + "mdast-util-from-markdown": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz", + "integrity": "sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==", + "dev": true, + "requires": { + "@types/mdast": "^3.0.0", + "mdast-util-to-string": "^2.0.0", + "micromark": "~2.11.0", + "parse-entities": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + } + }, + "mdast-util-to-markdown": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", + "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0", + "longest-streak": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.0.0", + "zwitch": "^1.0.0" + } + }, + "mdast-util-to-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", + "integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==", + "dev": true + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha1-htcJCzDORV1j+64S3aUaR93K+bI=", + "dev": true + }, + "meow": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dev": true, + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "dependencies": { + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } + }, + "merge": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/merge/-/merge-2.1.1.tgz", + "integrity": "sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==", + "dev": true + }, + "merge-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-1.0.1.tgz", + "integrity": "sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==", + "dev": true, + "requires": { + "is-plain-obj": "^1.1" + } + }, + "merge-source-map": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz", + "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromark": { + "version": "2.11.4", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", + "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", + "dev": true, + "requires": { + "debug": "^4.0.0", + "parse-entities": "^2.0.0" + } + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "mime-db": { + "version": "1.49.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.49.0.tgz", + "integrity": "sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA==", + "dev": true + }, + "mime-types": { + "version": "2.1.32", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.32.tgz", + "integrity": "sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==", + "dev": true, + "requires": { + "mime-db": "1.49.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true + }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "mockjs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mockjs/-/mockjs-1.1.0.tgz", + "integrity": "sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ==", + "requires": { + "commander": "*" + } + }, + "modify-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz", + "integrity": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==", + "dev": true + }, + "moment": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz", + "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==" + }, + "mousetrap": { + "version": "1.6.5", + "resolved": "https://registry.npmjs.org/mousetrap/-/mousetrap-1.6.5.tgz", + "integrity": "sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA==" + }, + "mozjpeg": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/mozjpeg/-/mozjpeg-7.1.0.tgz", + "integrity": "sha512-A6nVpI33DVi04HxatRx3PZTeVAOP1AC/T/5kXEvP0U8F+J11mmFFDv46BM2j5/cEyzDDtK8ptHeBSphNMrQLqA==", + "dev": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "logalot": "^2.1.0" + } + }, + "mri": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.1.6.tgz", + "integrity": "sha512-oi1b3MfbyGa7FJMP9GmLTttni5JoICpYBRlq+x5V16fZbLsnL9N3wFqqIm/nIG43FjUFkFh9Epzp/kzUGUnJxQ==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "multimatch": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-4.0.0.tgz", + "integrity": "sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==", + "dev": true, + "requires": { + "@types/minimatch": "^3.0.3", + "array-differ": "^3.0.0", + "array-union": "^2.1.0", + "arrify": "^2.0.1", + "minimatch": "^3.0.4" + }, + "dependencies": { + "arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "dev": true + } + } + }, + "mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", + "dev": true + }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "nanoid": { + "version": "3.1.25", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.25.tgz", + "integrity": "sha512-rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q==", + "dev": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "nanopop": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/nanopop/-/nanopop-2.1.0.tgz", + "integrity": "sha512-jGTwpFRexSH+fxappnGQtN9dspgE2ipa1aOjtR24igG0pv6JCxImIAmrLRHX+zUF5+1wtsFVbKyfP51kIGAVNw==" + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "needle": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", + "integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==", + "dev": true, + "optional": true, + "requires": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "optional": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-fetch": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==" + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", + "dev": true + }, + "node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", + "dev": true + }, + "node-releases": { + "version": "1.1.75", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.75.tgz", + "integrity": "sha512-Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw==", + "dev": true + }, + "normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true + }, + "normalize-selector": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/normalize-selector/-/normalize-selector-0.2.0.tgz", + "integrity": "sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=", + "dev": true + }, + "normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "dev": true, + "requires": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + }, + "dependencies": { + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "dev": true + }, + "sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=", + "dev": true, + "requires": { + "is-plain-obj": "^1.0.0" + } + } + } + }, + "npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "dev": true, + "requires": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "npm-run-all": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", + "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "chalk": "^2.4.1", + "cross-spawn": "^6.0.5", + "memorystream": "^0.3.1", + "minimatch": "^3.0.4", + "pidtree": "^0.3.0", + "read-pkg": "^3.0.0", + "shell-quote": "^1.6.1", + "string.prototype.padend": "^3.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "dev": true, + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "nprogress": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz", + "integrity": "sha1-y480xTIT2JVyP8urkH6UIq28r7E=" + }, + "nswag": { + "version": "13.13.2", + "resolved": "https://registry.npmjs.org/nswag/-/nswag-13.13.2.tgz", + "integrity": "sha512-L3Jraa8Ml7KKSBAcjvdo+suDT2HxgpQ0S3uaK29P3b40n3GPY/c0VrfjsQqDPfb0zjKri0F4xby6/6meUNwPMw==" + }, + "nth-check": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz", + "integrity": "sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q==", + "dev": true, + "requires": { + "boolbase": "^1.0.0" + } + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", + "dev": true + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==", + "dev": true + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "omit.js": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/omit.js/-/omit.js-2.0.2.tgz", + "integrity": "sha512-hJmu9D+bNB40YpL9jYebQl4lsTW6yEHRTroJzNLqQJYHm7c+NQnJGfZmIWh8S3q3KoaxV1aLhV6B3+0N0/kyJg==" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "dev": true, + "requires": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + } + }, + "opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "dev": true + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "optipng-bin": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/optipng-bin/-/optipng-bin-7.0.0.tgz", + "integrity": "sha512-mesUAwfedu5p9gRQwlYgD6Svw5IH3VUIWDJj/9cNpP3yFNbbEVqkTMWYhrIEn/cxmbGA3LpZrdoV2Yl8OfmnIA==", + "dev": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "logalot": "^2.0.0" + } + }, + "ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + } + } + }, + "os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "dev": true, + "requires": { + "arch": "^2.1.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + }, + "ow": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/ow/-/ow-0.17.0.tgz", + "integrity": "sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==", + "dev": true, + "requires": { + "type-fest": "^0.11.0" + }, + "dependencies": { + "type-fest": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", + "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", + "dev": true + } + } + }, + "p-cancelable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", + "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==", + "dev": true + }, + "p-each-series": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", + "dev": true + }, + "p-event": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz", + "integrity": "sha1-jmtPT2XHK8W2/ii3XtqHT5akoIU=", + "dev": true, + "requires": { + "p-timeout": "^1.1.1" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, + "p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=", + "dev": true + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-map-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz", + "integrity": "sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco=", + "dev": true, + "requires": { + "p-reduce": "^1.0.0" + } + }, + "p-pipe": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz", + "integrity": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==", + "dev": true + }, + "p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=", + "dev": true + }, + "p-timeout": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", + "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=", + "dev": true, + "requires": { + "p-finally": "^1.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dev": true, + "requires": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-to-regexp": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.0.tgz", + "integrity": "sha512-f66KywYG6+43afgE/8j/GoiNyygk/bnoCbps++3ErRKsIYkGGupyv07R2Ok5m9i67Iqc+T2g1eAUGUPzWhYTyg==" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "dev": true + }, + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "dev": true + }, + "pidtree": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", + "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "pinia": { + "version": "2.0.0-rc.4", + "resolved": "https://registry.npmjs.org/pinia/-/pinia-2.0.0-rc.4.tgz", + "integrity": "sha512-I43V1TIFyDWT4UTi1CPLQXQZYXGQHQMKpDPI+oxC2fv0c+ej0fQBoKCn4WbfRWB+Vf5chhWM97GFLI+OWmUQEQ==", + "requires": { + "@vue/devtools-api": "^6.0.0-beta.15", + "vue-demi": "^0.11.3" + }, + "dependencies": { + "vue-demi": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.11.3.tgz", + "integrity": "sha512-DpM0TTMpclRZDV6AIacgg837zrim/C9Zn+2ztXBs9hsESJN9vC83ztjTe4KC4HgJuVle8YUjPp7HTwWtwOHfmg==" + } + } + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "dev": true, + "requires": { + "node-modules-regexp": "^1.0.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + } + } + }, + "please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", + "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "dev": true, + "requires": { + "semver-compare": "^1.0.0" + } + }, + "pngjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==" + }, + "pngquant-bin": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/pngquant-bin/-/pngquant-bin-6.0.0.tgz", + "integrity": "sha512-oXWAS9MQ9iiDAJRdAZ9KO1mC5UwhzKkJsmetiu0iqIjJuW7JsuLhmc4JdRm7uJkIWRzIAou/Vq2VcjfJwz30Ow==", + "dev": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.1", + "execa": "^4.0.0", + "logalot": "^2.0.0" + }, + "dependencies": { + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true + } + } + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "postcss": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.6.tgz", + "integrity": "sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==", + "dev": true, + "requires": { + "colorette": "^1.2.2", + "nanoid": "^3.1.23", + "source-map-js": "^0.6.2" + } + }, + "postcss-html": { + "version": "0.36.0", + "resolved": "https://registry.npmjs.org/postcss-html/-/postcss-html-0.36.0.tgz", + "integrity": "sha512-HeiOxGcuwID0AFsNAL0ox3mW6MHH5cstWN1Z3Y+n6H+g12ih7LHdYxWwEA/QmrebctLjo79xz9ouK3MroHwOJw==", + "dev": true, + "requires": { + "htmlparser2": "^3.10.0" + } + }, + "postcss-less": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/postcss-less/-/postcss-less-3.1.4.tgz", + "integrity": "sha512-7TvleQWNM2QLcHqvudt3VYjULVB49uiW6XzEUFmvwHzvsOEF5MwBrIXZDJQvJNFGjJQTzSzZnDoCJ8h/ljyGXA==", + "dev": true, + "requires": { + "postcss": "^7.0.14" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-load-config": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.0.tgz", + "integrity": "sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g==", + "dev": true, + "requires": { + "import-cwd": "^3.0.0", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + } + }, + "postcss-media-query-parser": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", + "integrity": "sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=", + "dev": true + }, + "postcss-modules": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-4.2.2.tgz", + "integrity": "sha512-/H08MGEmaalv/OU8j6bUKi/kZr2kqGF6huAW8m9UAgOLWtpFdhA14+gPBoymtqyv+D4MLsmqaF2zvIegdCxJXg==", + "dev": true, + "requires": { + "generic-names": "^2.0.1", + "icss-replace-symbols": "^1.1.0", + "lodash.camelcase": "^4.3.0", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "string-hash": "^1.1.1" + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-prefix-selector": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/postcss-prefix-selector/-/postcss-prefix-selector-1.12.0.tgz", + "integrity": "sha512-yEV+oJQOmrm4qvhTgf+jF2davZcxMCy7Y3kN1ETS8fTc5R3+pPUzhj6sHcMfMDSUbm1tWdCQ5bPBycd/4VOCwA==", + "dev": true, + "requires": { + "postcss": "^8.3.6" + } + }, + "postcss-resolve-nested-selector": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", + "integrity": "sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4=", + "dev": true + }, + "postcss-safe-parser": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz", + "integrity": "sha512-Uw6ekxSWNLCPesSv/cmqf2bY/77z11O7jZGPax3ycZMFU/oi2DMH9i89AdHc1tRwFg/arFoEwX0IS3LCUxJh1g==", + "dev": true, + "requires": { + "postcss": "^7.0.26" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-sass": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/postcss-sass/-/postcss-sass-0.4.4.tgz", + "integrity": "sha512-BYxnVYx4mQooOhr+zer0qWbSPYnarAy8ZT7hAQtbxtgVf8gy+LSLT/hHGe35h14/pZDTw1DsxdbrwxBN++H+fg==", + "dev": true, + "requires": { + "gonzales-pe": "^4.3.0", + "postcss": "^7.0.21" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-scss": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-2.1.1.tgz", + "integrity": "sha512-jQmGnj0hSGLd9RscFw9LyuSVAa5Bl1/KBPqG1NQw9w8ND55nY4ZEsdlVuYJvLPpV+y0nwTV5v/4rHPzZRihQbA==", + "dev": true, + "requires": { + "postcss": "^7.0.6" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", + "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-sorting": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-5.0.1.tgz", + "integrity": "sha512-Y9fUFkIhfrm6i0Ta3n+89j56EFqaNRdUKqXyRp6kvTcSXnmgEjaVowCXH+JBe9+YKWqd4nc28r2sgwnzJalccA==", + "dev": true, + "requires": { + "lodash": "^4.17.14", + "postcss": "^7.0.17" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-syntax": { + "version": "0.36.2", + "resolved": "https://registry.npmjs.org/postcss-syntax/-/postcss-syntax-0.36.2.tgz", + "integrity": "sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w==", + "dev": true + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", + "dev": true + }, + "posthtml": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/posthtml/-/posthtml-0.9.2.tgz", + "integrity": "sha1-9MBtufZ7Yf0XxOJW5+PZUVv3Jv0=", + "dev": true, + "requires": { + "posthtml-parser": "^0.2.0", + "posthtml-render": "^1.0.5" + } + }, + "posthtml-parser": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.2.1.tgz", + "integrity": "sha1-NdUw3jhnQMK6JP8usvrznM3ycd0=", + "dev": true, + "requires": { + "htmlparser2": "^3.8.3", + "isobject": "^2.1.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "posthtml-rename-id": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/posthtml-rename-id/-/posthtml-rename-id-1.0.12.tgz", + "integrity": "sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw==", + "dev": true, + "requires": { + "escape-string-regexp": "1.0.5" + } + }, + "posthtml-render": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/posthtml-render/-/posthtml-render-1.4.0.tgz", + "integrity": "sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw==", + "dev": true + }, + "posthtml-svg-mode": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/posthtml-svg-mode/-/posthtml-svg-mode-1.0.3.tgz", + "integrity": "sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ==", + "dev": true, + "requires": { + "merge-options": "1.0.1", + "posthtml": "^0.9.2", + "posthtml-parser": "^0.2.1", + "posthtml-render": "^1.0.6" + } + }, + "preact": { + "version": "10.5.14", + "resolved": "https://registry.npmjs.org/preact/-/preact-10.5.14.tgz", + "integrity": "sha512-KojoltCrshZ099ksUZ2OQKfbH66uquFoxHSbnwKbTJHeQNvx42EmC7wQVWNuDt6vC5s3nudRHFtKbpY4ijKlaQ==" + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", + "dev": true + }, + "prettier": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.2.tgz", + "integrity": "sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ==", + "dev": true + }, + "prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "requires": { + "fast-diff": "^1.1.2" + } + }, + "pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "dev": true + }, + "pretty-format": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.1.0.tgz", + "integrity": "sha512-4aGaud3w3rxAO6OXmK3fwBFQ0bctIOG3/if+jYEFGNGIs0EvuidQm3bZ9mlP2/t9epLNC/12czabfy7TZNSwVA==", + "dev": true, + "requires": { + "@jest/types": "^27.1.0", + "ansi-regex": "^5.0.0", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "pretty-quick": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/pretty-quick/-/pretty-quick-3.1.1.tgz", + "integrity": "sha512-ZYLGiMoV2jcaas3vTJrLvKAYsxDoXQBUn8OSTxkl67Fyov9lyXivJTl0+2WVh+y6EovGcw7Lm5ThYpH+Sh3XxQ==", + "dev": true, + "requires": { + "chalk": "^3.0.0", + "execa": "^4.0.0", + "find-up": "^4.1.0", + "ignore": "^5.1.4", + "mri": "^1.1.5", + "multimatch": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + } + } + }, + "print-js": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/print-js/-/print-js-1.6.0.tgz", + "integrity": "sha512-BfnOIzSKbqGRtO4o0rnj/K3681BSd2QUrsIZy/+WdCIugjIswjmx3lDEZpXB2ruGf9d4b3YNINri81+J0FsBWg==" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "dev": true, + "requires": { + "asap": "~2.0.3" + } + }, + "prompts": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.1.tgz", + "integrity": "sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==", + "dev": true, + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", + "dev": true + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true, + "optional": true + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", + "dev": true + }, + "pug": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pug/-/pug-3.0.2.tgz", + "integrity": "sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==", + "dev": true, + "requires": { + "pug-code-gen": "^3.0.2", + "pug-filters": "^4.0.0", + "pug-lexer": "^5.0.1", + "pug-linker": "^4.0.0", + "pug-load": "^3.0.0", + "pug-parser": "^6.0.0", + "pug-runtime": "^3.0.1", + "pug-strip-comments": "^2.0.0" + } + }, + "pug-attrs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pug-attrs/-/pug-attrs-3.0.0.tgz", + "integrity": "sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==", + "dev": true, + "requires": { + "constantinople": "^4.0.1", + "js-stringify": "^1.0.2", + "pug-runtime": "^3.0.0" + } + }, + "pug-code-gen": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-3.0.2.tgz", + "integrity": "sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==", + "dev": true, + "requires": { + "constantinople": "^4.0.1", + "doctypes": "^1.1.0", + "js-stringify": "^1.0.2", + "pug-attrs": "^3.0.0", + "pug-error": "^2.0.0", + "pug-runtime": "^3.0.0", + "void-elements": "^3.1.0", + "with": "^7.0.0" + } + }, + "pug-error": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pug-error/-/pug-error-2.0.0.tgz", + "integrity": "sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==", + "dev": true + }, + "pug-filters": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pug-filters/-/pug-filters-4.0.0.tgz", + "integrity": "sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==", + "dev": true, + "requires": { + "constantinople": "^4.0.1", + "jstransformer": "1.0.0", + "pug-error": "^2.0.0", + "pug-walk": "^2.0.0", + "resolve": "^1.15.1" + } + }, + "pug-lexer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz", + "integrity": "sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==", + "dev": true, + "requires": { + "character-parser": "^2.2.0", + "is-expression": "^4.0.0", + "pug-error": "^2.0.0" + } + }, + "pug-linker": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pug-linker/-/pug-linker-4.0.0.tgz", + "integrity": "sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==", + "dev": true, + "requires": { + "pug-error": "^2.0.0", + "pug-walk": "^2.0.0" + } + }, + "pug-load": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pug-load/-/pug-load-3.0.0.tgz", + "integrity": "sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "pug-walk": "^2.0.0" + } + }, + "pug-parser": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/pug-parser/-/pug-parser-6.0.0.tgz", + "integrity": "sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==", + "dev": true, + "requires": { + "pug-error": "^2.0.0", + "token-stream": "1.0.0" + } + }, + "pug-runtime": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/pug-runtime/-/pug-runtime-3.0.1.tgz", + "integrity": "sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==", + "dev": true + }, + "pug-strip-comments": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz", + "integrity": "sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==", + "dev": true, + "requires": { + "pug-error": "^2.0.0" + } + }, + "pug-walk": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pug-walk/-/pug-walk-2.0.0.tgz", + "integrity": "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "dev": true + }, + "qrcode": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.4.4.tgz", + "integrity": "sha512-oLzEC5+NKFou9P0bMj5+v6Z40evexeE29Z9cummZXZ9QXyMr3lphkURzxjXgPJC5azpxcshoDWV1xE46z+/c3Q==", + "requires": { + "buffer": "^5.4.3", + "buffer-alloc": "^1.2.0", + "buffer-from": "^1.1.1", + "dijkstrajs": "^1.0.1", + "isarray": "^2.0.1", + "pngjs": "^3.3.0", + "yargs": "^13.2.4" + } + }, + "qs": { + "version": "6.10.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz", + "integrity": "sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + }, + "query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "dev": true, + "requires": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + } + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "regenerate-unicode-properties": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", + "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", + "dev": true, + "requires": { + "regenerate": "^1.4.0" + } + }, + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + }, + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true + }, + "regexpu-core": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz", + "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==", + "dev": true, + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + } + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==", + "dev": true + }, + "regjsparser": { + "version": "0.6.9", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.9.tgz", + "integrity": "sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "dev": true + }, + "remark": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/remark/-/remark-13.0.0.tgz", + "integrity": "sha512-HDz1+IKGtOyWN+QgBiAT0kn+2s6ovOxHyPAFGKVE81VSzJ+mq7RwHFledEvB5F1p4iJvOah/LOKdFuzvRnNLCA==", + "dev": true, + "requires": { + "remark-parse": "^9.0.0", + "remark-stringify": "^9.0.0", + "unified": "^9.1.0" + } + }, + "remark-parse": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-9.0.0.tgz", + "integrity": "sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==", + "dev": true, + "requires": { + "mdast-util-from-markdown": "^0.8.0" + } + }, + "remark-stringify": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-9.0.1.tgz", + "integrity": "sha512-mWmNg3ZtESvZS8fv5PTvaPckdL4iNlCHTt8/e/8oN08nArHRHjNZMKzA/YW3+p7/lYqIw4nx1XsjCBo/AxNChg==", + "dev": true, + "requires": { + "mdast-util-to-markdown": "^0.6.0" + } + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dev": true, + "requires": { + "is-finite": "^1.0.0" + } + }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, + "request-light": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/request-light/-/request-light-0.5.4.tgz", + "integrity": "sha512-t3566CMweOFlUk7Y1DJMu5OrtpoZEb6aSTsLQVT3wtrIEJ5NhcY9G/Oqxvjllzl4a15zXfFlcr9q40LbLVQJqw==", + "dev": true + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + }, + "resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + }, + "resolve-global": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz", + "integrity": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==", + "dev": true, + "requires": { + "global-dirs": "^0.1.1" + } + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "dev": true, + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "dependencies": { + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true, + "requires": { + "mimic-fn": "^1.0.0" + } + } + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "rollup": { + "version": "2.56.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.56.3.tgz", + "integrity": "sha512-Au92NuznFklgQCUcV96iXlxUbHuB1vQMaH76DHl5M11TotjOHwqk9CwcrT78+Tnv4FN9uTBxq6p4EJoYkpyekg==", + "dev": true, + "requires": { + "fsevents": "~2.3.2" + } + }, + "rollup-plugin-purge-icons": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-purge-icons/-/rollup-plugin-purge-icons-0.7.0.tgz", + "integrity": "sha512-zAff7SrjC2nA7TCm6gaOclh1cZ2IBupX1tnebn+sfvcvrezu+avS7k0BhhAC2pAtfhdOvD6G/2a+kkkm6hvpiw==", + "dev": true, + "requires": { + "@purge-icons/core": "^0.7.0", + "@purge-icons/generated": "^0.7.0" + } + }, + "rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + } + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + }, + "terser": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.7.2.tgz", + "integrity": "sha512-0Omye+RD4X7X69O0eql3lC4Heh/5iLj3ggxR/B5ketZLOtLiOqukUgjw3q4PDnNQbsrkKr3UMypqStQG3XKRvw==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.19" + } + } + } + }, + "rollup-plugin-visualizer": { + "version": "5.5.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.5.2.tgz", + "integrity": "sha512-sh+P9KhuWTzeStyRA5yNZpoEFGuj5Ph34JLMa9+muhU8CneFf9L0XE4fmAwAojJLWp//uLUEyytBPSCdZEg5AA==", + "dev": true, + "requires": { + "nanoid": "^3.1.22", + "open": "^7.4.2", + "source-map": "^0.7.3", + "yargs": "^16.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dev": true, + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true, + "optional": true + }, + "saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dev": true, + "requires": { + "xmlchars": "^2.2.0" + } + }, + "scroll-into-view-if-needed": { + "version": "2.2.28", + "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.28.tgz", + "integrity": "sha512-8LuxJSuFVc92+0AdNv4QOxRL4Abeo1DgLnGNkn1XlaujPH/3cCFz3QI60r2VNu4obJJROzgnIUw5TKQkZvZI1w==", + "requires": { + "compute-scroll-into-view": "^1.0.17" + } + }, + "secure-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/secure-compare/-/secure-compare-3.0.1.tgz", + "integrity": "sha1-8aAymzCLIh+uN7mXTz1XjQypmeM=", + "dev": true + }, + "seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "dev": true, + "requires": { + "commander": "^2.8.1" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + } + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "dev": true + }, + "semver-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", + "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", + "dev": true + }, + "semver-truncate": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", + "integrity": "sha1-V/Qd5pcHpicJp+AQS6IRcQnqR+g=", + "dev": true, + "requires": { + "semver": "^5.3.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "shallow-equal": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz", + "integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==", + "dev": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "dev": true + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + } + } + }, + "snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "dev": true, + "requires": { + "is-plain-obj": "^1.0.0" + } + }, + "sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=", + "dev": true, + "requires": { + "sort-keys": "^1.0.0" + } + }, + "sortablejs": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.14.0.tgz", + "integrity": "sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "source-map-js": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz", + "integrity": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "dev": true + }, + "sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "dev": true + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz", + "integrity": "sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==", + "dev": true + }, + "specificity": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/specificity/-/specificity-0.4.1.tgz", + "integrity": "sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==", + "dev": true + }, + "split": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "dev": true, + "requires": { + "through": "2" + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "split2": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dev": true, + "requires": { + "readable-stream": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "squeak": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/squeak/-/squeak-1.3.0.tgz", + "integrity": "sha1-MwRQN7ZDiLVnZ0uEMiplIQc5FsM=", + "dev": true, + "requires": { + "chalk": "^1.0.0", + "console-stream": "^0.1.1", + "lpad-align": "^1.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "dev": true + }, + "stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==", + "dev": true, + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true + } + } + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "dev": true + }, + "string-argv": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", + "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", + "dev": true + }, + "string-hash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", + "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=", + "dev": true + }, + "string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + } + } + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "string.prototype.padend": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz", + "integrity": "sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "dev": true, + "requires": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "dependencies": { + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "dev": true + } + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true + }, + "strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", + "dev": true + }, + "strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "dev": true, + "requires": { + "is-natural-number": "^4.0.1" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "requires": { + "min-indent": "^1.0.0" + } + }, + "strip-json-comments": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz", + "integrity": "sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==", + "dev": true + }, + "strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "style-search": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", + "integrity": "sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=", + "dev": true + }, + "stylelint": { + "version": "13.13.1", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-13.13.1.tgz", + "integrity": "sha512-Mv+BQr5XTUrKqAXmpqm6Ddli6Ief+AiPZkRsIrAoUKFuq/ElkUh9ZMYxXD0iQNZ5ADghZKLOWz1h7hTClB7zgQ==", + "dev": true, + "requires": { + "@stylelint/postcss-css-in-js": "^0.37.2", + "@stylelint/postcss-markdown": "^0.36.2", + "autoprefixer": "^9.8.6", + "balanced-match": "^2.0.0", + "chalk": "^4.1.1", + "cosmiconfig": "^7.0.0", + "debug": "^4.3.1", + "execall": "^2.0.0", + "fast-glob": "^3.2.5", + "fastest-levenshtein": "^1.0.12", + "file-entry-cache": "^6.0.1", + "get-stdin": "^8.0.0", + "global-modules": "^2.0.0", + "globby": "^11.0.3", + "globjoin": "^0.1.4", + "html-tags": "^3.1.0", + "ignore": "^5.1.8", + "import-lazy": "^4.0.0", + "imurmurhash": "^0.1.4", + "known-css-properties": "^0.21.0", + "lodash": "^4.17.21", + "log-symbols": "^4.1.0", + "mathml-tag-names": "^2.1.3", + "meow": "^9.0.0", + "micromatch": "^4.0.4", + "normalize-selector": "^0.2.0", + "postcss": "^7.0.35", + "postcss-html": "^0.36.0", + "postcss-less": "^3.1.4", + "postcss-media-query-parser": "^0.2.3", + "postcss-resolve-nested-selector": "^0.1.1", + "postcss-safe-parser": "^4.0.2", + "postcss-sass": "^0.4.4", + "postcss-scss": "^2.1.1", + "postcss-selector-parser": "^6.0.5", + "postcss-syntax": "^0.36.2", + "postcss-value-parser": "^4.1.0", + "resolve-from": "^5.0.0", + "slash": "^3.0.0", + "specificity": "^0.4.1", + "string-width": "^4.2.2", + "strip-ansi": "^6.0.0", + "style-search": "^0.1.0", + "sugarss": "^2.0.0", + "svg-tags": "^1.0.0", + "table": "^6.6.0", + "v8-compile-cache": "^2.3.0", + "write-file-atomic": "^3.0.3" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "autoprefixer": { + "version": "9.8.6", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz", + "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==", + "dev": true, + "requires": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "colorette": "^1.2.1", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + } + }, + "balanced-match": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", + "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "requires": { + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "meow": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", + "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", + "dev": true, + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize": "^1.2.0", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + } + }, + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + } + } + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } + }, + "stylelint-config-prettier": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/stylelint-config-prettier/-/stylelint-config-prettier-8.0.2.tgz", + "integrity": "sha512-TN1l93iVTXpF9NJstlvP7nOu9zY2k+mN0NSFQ/VEGz15ZIP9ohdDZTtCWHs5LjctAhSAzaILULGbgiM0ItId3A==", + "dev": true + }, + "stylelint-config-recommended": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-5.0.0.tgz", + "integrity": "sha512-c8aubuARSu5A3vEHLBeOSJt1udOdS+1iue7BmJDTSXoCBmfEQmmWX+59vYIj3NQdJBY6a/QRv1ozVFpaB9jaqA==", + "dev": true + }, + "stylelint-config-standard": { + "version": "22.0.0", + "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-22.0.0.tgz", + "integrity": "sha512-uQVNi87SHjqTm8+4NIP5NMAyY/arXrBgimaaT7skvRfE9u3JKXRK9KBkbr4pVmeciuCcs64kAdjlxfq6Rur7Hw==", + "dev": true, + "requires": { + "stylelint-config-recommended": "^5.0.0" + } + }, + "stylelint-order": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-4.1.0.tgz", + "integrity": "sha512-sVTikaDvMqg2aJjh4r48jsdfmqLT+nqB1MOsaBnvM3OwLx4S+WXcsxsgk5w18h/OZoxZCxuyXMh61iBHcj9Qiw==", + "dev": true, + "requires": { + "lodash": "^4.17.15", + "postcss": "^7.0.31", + "postcss-sorting": "^5.0.1" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "sucrase": { + "version": "3.20.1", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.20.1.tgz", + "integrity": "sha512-BIG59HaJOxNct9Va6KvT5yzBA/rcMGetzvZyTx0ZdCcspIbpJTPS64zuAfYlJuOj+3WaI5JOdA+F0bJQQi8ZiQ==", + "dev": true, + "requires": { + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "dependencies": { + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, + "sugarss": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sugarss/-/sugarss-2.0.0.tgz", + "integrity": "sha512-WfxjozUk0UVA4jm+U1d736AUpzSrNsQcIbyOkoE364GrtWmIrFdk5lksEupgWMD4VaT/0kVx1dobpiDumSgmJQ==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-hyperlinks": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", + "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", + "dev": true, + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + } + }, + "svg-baker": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/svg-baker/-/svg-baker-1.7.0.tgz", + "integrity": "sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg==", + "dev": true, + "requires": { + "bluebird": "^3.5.0", + "clone": "^2.1.1", + "he": "^1.1.1", + "image-size": "^0.5.1", + "loader-utils": "^1.1.0", + "merge-options": "1.0.1", + "micromatch": "3.1.0", + "postcss": "^5.2.17", + "postcss-prefix-selector": "^1.6.0", + "posthtml-rename-id": "^1.0", + "posthtml-svg-mode": "^1.0.3", + "query-string": "^4.3.2", + "traverse": "^0.6.6" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + }, + "micromatch": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.0.tgz", + "integrity": "sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.2.2", + "define-property": "^1.0.0", + "extend-shallow": "^2.0.1", + "extglob": "^2.0.2", + "fragment-cache": "^0.2.1", + "kind-of": "^5.0.2", + "nanomatch": "^1.2.1", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "dev": true, + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=", + "dev": true + }, + "svgo": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.5.0.tgz", + "integrity": "sha512-FSdBOOo271VyF/qZnOn1PgwCdt1v4Dx0Sey+U1jgqm1vqRYjPGdip0RGrFW6ItwtkBB8rHgHk26dlVr0uCs82Q==", + "dev": true, + "requires": { + "@trysound/sax": "0.1.1", + "colorette": "^1.3.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "stable": "^0.1.8" + }, + "dependencies": { + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true + } + } + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "systemjs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/systemjs/-/systemjs-6.10.3.tgz", + "integrity": "sha512-mXwfLJdaADqWg1J5+Z0bGQEdcXSe+ePPTfzffMB29aVls5cXveRl0vneSV/19t3SfuUBsAraLP8W/g5u9cmYXA==", + "dev": true + }, + "table": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/table/-/table-6.7.1.tgz", + "integrity": "sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==", + "dev": true, + "requires": { + "ajv": "^8.0.1", + "lodash.clonedeep": "^4.5.0", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.6.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.2.tgz", + "integrity": "sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + } + } + }, + "tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "dev": true, + "requires": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + }, + "dependencies": { + "bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "dev": true, + "requires": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + } + } + }, + "temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "dev": true + }, + "tempfile": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-3.0.0.tgz", + "integrity": "sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw==", + "dev": true, + "requires": { + "temp-dir": "^2.0.0", + "uuid": "^3.3.2" + } + }, + "tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", + "dev": true, + "requires": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "dependencies": { + "type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "dev": true + } + } + }, + "terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } + } + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + } + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "text-extensions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", + "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", + "dev": true + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=", + "dev": true, + "requires": { + "thenify": ">= 3.1.0 < 4" + } + }, + "throat": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", + "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, + "requires": { + "readable-stream": "3" + } + }, + "timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", + "dev": true + }, + "tinycolor2": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", + "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==", + "dev": true + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "tmpl": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", + "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=", + "dev": true + }, + "to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "token-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/token-stream/-/token-stream-1.0.0.tgz", + "integrity": "sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=", + "dev": true + }, + "tough-cookie": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", + "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", + "dev": true, + "requires": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.1.2" + }, + "dependencies": { + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + } + } + }, + "tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, + "requires": { + "punycode": "^2.1.1" + } + }, + "traverse": { + "version": "0.6.6", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz", + "integrity": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=", + "dev": true + }, + "tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true + }, + "trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "dev": true + }, + "trim-off-newlines": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz", + "integrity": "sha1-n5up2e+odkw4dpi8v+sshI8RrbM=", + "dev": true + }, + "trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "trough": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", + "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==", + "dev": true + }, + "ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "ts-jest": { + "version": "27.0.5", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-27.0.5.tgz", + "integrity": "sha512-lIJApzfTaSSbtlksfFNHkWOzLJuuSm4faFAfo5kvzOiRAuoN4/eKxVJ2zEAho8aecE04qX6K1pAzfH5QHL1/8w==", + "dev": true, + "requires": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^27.0.0", + "json5": "2.x", + "lodash": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "20.x" + }, + "dependencies": { + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } + }, + "ts-node": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.2.1.tgz", + "integrity": "sha512-hCnyOyuGmD5wHleOQX6NIjJtYVIO8bPP8F2acWkB4W06wdlkgyvJtubO/I9NkI88hCFECbsEgoLc0VNkYmcSfw==", + "dev": true, + "requires": { + "@cspotcode/source-map-support": "0.6.1", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "yn": "3.1.1" + }, + "dependencies": { + "acorn": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz", + "integrity": "sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==", + "dev": true + }, + "acorn-walk": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.1.1.tgz", + "integrity": "sha512-FbJdceMlPHEAWJOILDk1fXD8lnTlEIWFkqtfk+MvmL5q/qlHfN7GEHcsFZWt/Tea9jRNPWUZG4G976nqAAmU9w==", + "dev": true + } + } + }, + "tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + }, + "tsup": { + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/tsup/-/tsup-4.14.0.tgz", + "integrity": "sha512-77rWdzhikTP9mQ34XMRzK83tw++LF6f4ox/HNERlgesB7g6g5VQ1iJlueG9O0P9HAZGVKavUwyoZv0+322p6rg==", + "dev": true, + "requires": { + "cac": "^6.7.2", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "debug": "^4.3.1", + "esbuild": "^0.12.9", + "execa": "^5.0.0", + "globby": "^11.0.3", + "joycon": "^3.0.1", + "postcss-load-config": "^3.0.1", + "resolve-from": "^5.0.0", + "rollup": "^2.56.1", + "sucrase": "^3.18.1", + "tree-kill": "^1.2.2" + } + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true + }, + "type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", + "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", + "dev": true + }, + "uglify-js": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.1.tgz", + "integrity": "sha512-JhS3hmcVaXlp/xSo3PKY5R0JqKs5M3IV+exdLHW99qKvKivPO4Z8qbej6mte17SOPqAOVMjt/XGgWacnFSzM3g==", + "dev": true, + "optional": true + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, + "unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dev": true, + "requires": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==", + "dev": true + }, + "unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", + "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "dev": true, + "requires": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", + "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==", + "dev": true + }, + "unicode-property-aliases-ecmascript": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", + "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==", + "dev": true + }, + "unified": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz", + "integrity": "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==", + "dev": true, + "requires": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^2.0.0", + "trough": "^1.0.0", + "vfile": "^4.0.0" + }, + "dependencies": { + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true + } + } + }, + "union": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/union/-/union-0.5.0.tgz", + "integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==", + "dev": true, + "requires": { + "qs": "^6.4.0" + } + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "requires": { + "crypto-random-string": "^2.0.0" + } + }, + "unist-util-find-all-after": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/unist-util-find-all-after/-/unist-util-find-all-after-3.0.2.tgz", + "integrity": "sha512-xaTC/AGZ0rIM2gM28YVRAFPIZpzbpDtU3dRmp7EXlNVA8ziQc4hY3H7BHXM1J49nEmiqc3svnqMReW+PGqbZKQ==", + "dev": true, + "requires": { + "unist-util-is": "^4.0.0" + } + }, + "unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "dev": true + }, + "unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dev": true, + "requires": { + "@types/unist": "^2.0.2" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true + }, + "upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + } + }, + "upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url-join": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-2.0.5.tgz", + "integrity": "sha1-WvIvGMBSoACkjXuCxenC4v7tpyg=", + "dev": true + }, + "url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", + "dev": true, + "requires": { + "prepend-http": "^1.0.1" + } + }, + "url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=", + "dev": true + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "v8-to-istanbul": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.0.0.tgz", + "integrity": "sha512-LkmXi8UUNxnCC+JlH7/fsfsKr5AU110l+SYGJimWNkWhxbN5EyeOtm1MJ0hhvqMMOhGwBj1Fp70Yv9i+hX0QAg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + } + } + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true + }, + "vfile": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + } + }, + "vfile-message": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + } + }, + "vite": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/vite/-/vite-2.5.0.tgz", + "integrity": "sha512-Dn4B+g54PJsMG5WCc4QeFy1ygMXRdTtFrUPegqfk4+vzVQcbF/DqqmI/1bxezArzbujBJg/67QeT5wz8edfJVQ==", + "dev": true, + "requires": { + "esbuild": "^0.12.17", + "fsevents": "~2.3.2", + "postcss": "^8.3.6", + "resolve": "^1.20.0", + "rollup": "^2.38.5" + } + }, + "vite-plugin-compression": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/vite-plugin-compression/-/vite-plugin-compression-0.3.5.tgz", + "integrity": "sha512-W+zKccNTDRYPsM6MzbVGTX2hvnsVrxKfmGD2Z23VgqinFKhtmwGzNNFsnbslXbeTGHXclaE7MO5nm7O1cNY3ZA==", + "dev": true, + "requires": { + "chalk": "^4.1.2", + "debug": "^4.3.2", + "fs-extra": "^10.0.0" + } + }, + "vite-plugin-html": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/vite-plugin-html/-/vite-plugin-html-2.1.0.tgz", + "integrity": "sha512-xdyHA/LdtmQtVTpPVqmrJaO/iuwx0k/r2M0BFnfYBloLCvp9FeCW/fR3yucQePRzE19bU72QldBE6EB1toZACw==", + "dev": true, + "requires": { + "@rollup/pluginutils": "^4.1.1", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "ejs": "^3.1.6", + "fs-extra": "^10.0.0", + "html-minifier-terser": "^5.1.1" + } + }, + "vite-plugin-imagemin": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/vite-plugin-imagemin/-/vite-plugin-imagemin-0.4.5.tgz", + "integrity": "sha512-hJF9JI3HvKy5zM0XTqOX8zwUQrTpGBRpG7xTDhBp2p5DE490BqRu/Pee2DpEBur8rw9ILm4OVqdrYKxkaBk2CQ==", + "dev": true, + "requires": { + "@types/imagemin": "^7.0.1", + "@types/imagemin-gifsicle": "^7.0.1", + "@types/imagemin-jpegtran": "^5.0.1", + "@types/imagemin-mozjpeg": "^8.0.1", + "@types/imagemin-optipng": "^5.2.1", + "@types/imagemin-svgo": "^9.0.1", + "@types/imagemin-webp": "^5.1.2", + "@types/svgo": "^2.4.0", + "chalk": "^4.1.2", + "debug": "^4.3.2", + "esbuild": "^0.12.22", + "fs-extra": "^10.0.0", + "imagemin": "^7.0.1", + "imagemin-gifsicle": "^7.0.0", + "imagemin-jpegtran": "^7.0.0", + "imagemin-mozjpeg": "^9.0.0", + "imagemin-optipng": "^8.0.0", + "imagemin-pngquant": "^9.0.2", + "imagemin-svgo": "^9.0.0", + "imagemin-webp": "^6.0.0" + } + }, + "vite-plugin-mock": { + "version": "2.9.6", + "resolved": "https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.9.6.tgz", + "integrity": "sha512-/Rm59oPppe/ncbkSrUuAxIQihlI2YcBmnbR4ST1RA2VzM1C0tEQc1KlbQvnUGhXECAGTaQN2JyasiwXP6EtKgg==", + "dev": true, + "requires": { + "@rollup/plugin-node-resolve": "^13.0.4", + "@types/mockjs": "^1.0.4", + "chalk": "^4.1.2", + "chokidar": "^3.5.2", + "connect": "^3.7.0", + "debug": "^4.3.2", + "esbuild": "0.11.3", + "fast-glob": "^3.2.7", + "path-to-regexp": "^6.2.0" + }, + "dependencies": { + "esbuild": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.11.3.tgz", + "integrity": "sha512-BzVRHcCtFepjS9WcqRjqoIxLqgpK21a8J4Zi4msSGxDxiXVO1IbcqT1KjhdDDnJxKfe7bvzZrvMEX+bVO0Elcw==", + "dev": true + } + } + }, + "vite-plugin-purge-icons": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/vite-plugin-purge-icons/-/vite-plugin-purge-icons-0.7.0.tgz", + "integrity": "sha512-oGZUKFAL4waIZIeiCPT5KZvGbBA500AO/03oxW+ODTKUMq+0jbh9s+T8NPzfJQFC1jtE7eUb2ium82IP/gxZjA==", + "dev": true, + "requires": { + "@purge-icons/core": "^0.7.0", + "@purge-icons/generated": "^0.7.0", + "rollup-plugin-purge-icons": "^0.7.0" + } + }, + "vite-plugin-pwa": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.10.0.tgz", + "integrity": "sha512-QTI2OshRFR46JFS3KLVXXdIyhy+eO5pO3ezbeIXRAMNlUPJuB/r5sXhpRUGRZIkbrIq+UwSULNsCaNo8Ux5ZqA==", + "dev": true, + "requires": { + "debug": "^4.3.2", + "fast-glob": "^3.2.7", + "pretty-bytes": "^5.6.0", + "rollup": "^2.55.1", + "workbox-build": "^6.1.5", + "workbox-window": "^6.1.5" + } + }, + "vite-plugin-style-import": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-1.2.1.tgz", + "integrity": "sha512-N3qH4K/FE9GPs40k1bREEdBqKkAhjQUeLBNDWzDVFpKJ204unjUpJkGjRv6FA0c+uaZZCHwEQRUMKULtZW3kCw==", + "dev": true, + "requires": { + "@rollup/pluginutils": "^4.1.1", + "change-case": "^4.1.2", + "debug": "^4.3.2", + "es-module-lexer": "^0.7.1", + "magic-string": "^0.25.7" + } + }, + "vite-plugin-svg-icons": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vite-plugin-svg-icons/-/vite-plugin-svg-icons-1.0.4.tgz", + "integrity": "sha512-sRneOwVRA6F2zfNKtmwTQl4WwtrdzFq8REO5elX9rd9vC5gNxJ5v4TNlm8cHWGCwvLuxCu5lrnhEU2rcg8izgg==", + "dev": true, + "requires": { + "@types/svgo": "^2.3.1", + "cors": "^2.8.5", + "debug": "^4.3.2", + "etag": "^1.8.1", + "fs-extra": "^10.0.0", + "svg-baker": "1.7.0", + "svgo": "^2.3.1" + } + }, + "vite-plugin-theme": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/vite-plugin-theme/-/vite-plugin-theme-0.8.1.tgz", + "integrity": "sha512-kyfcMW9YOBuNWHvORWJoq2tJ53Eaq3O7rFntENHtqp6hbblqdGhGlCzxXDbepVthFCxlyIel8S6EFIsCT6CVfg==", + "dev": true, + "requires": { + "@types/node": "^14.17.1", + "@types/tinycolor2": "^1.4.2", + "chalk": "^4.1.1", + "clean-css": "^5.1.2", + "debug": "^4.3.2", + "esbuild": "^0.11.23", + "esbuild-plugin-alias": "^0.1.2", + "tinycolor2": "^1.4.2" + }, + "dependencies": { + "@types/node": { + "version": "14.17.14", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.17.14.tgz", + "integrity": "sha512-rsAj2u8Xkqfc332iXV12SqIsjVi07H479bOP4q94NAcjzmAvapumEhuVIt53koEf7JFrpjgNKjBga5Pnn/GL8A==", + "dev": true + }, + "clean-css": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.1.5.tgz", + "integrity": "sha512-9dr/cU/LjMpU57PXlSvDkVRh0rPxJBXiBtD0+SgYt8ahTCsXtfKjCkNYgIoTC6mBg8CFr5EKhW3DKCaGMUbUfQ==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "esbuild": { + "version": "0.11.23", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.11.23.tgz", + "integrity": "sha512-iaiZZ9vUF5wJV8ob1tl+5aJTrwDczlvGP0JoMmnpC2B0ppiMCu8n8gmy5ZTGl5bcG081XBVn+U+jP+mPFm5T5Q==", + "dev": true + } + } + }, + "vite-plugin-windicss": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-1.3.0.tgz", + "integrity": "sha512-Xd9VxXX8z9bsdKs3iL6qXJDXsDDl/HQSWqJOLZFkkp23b3goGRnlT4Rlo5WeIAfrEV944r8bF7wfpDXCkk8XCg==", + "dev": true, + "requires": { + "@windicss/plugin-utils": "1.3.0", + "chalk": "^4.1.2", + "debug": "^4.3.2", + "windicss": "^3.1.7" + } + }, + "void-elements": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz", + "integrity": "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=", + "dev": true + }, + "vscode-css-languageservice": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-5.1.4.tgz", + "integrity": "sha512-fIJZJMXbaBsK0ifBb2RmSiLtzwn6NrZnKn7O+0ziIjwAY+rPvSK9St2qqQXFU3reZVRAt/I4GBp40dC/THcUDA==", + "dev": true, + "requires": { + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-languageserver-types": "^3.16.0", + "vscode-nls": "^5.0.0", + "vscode-uri": "^3.0.2" + }, + "dependencies": { + "vscode-languageserver-types": { + "version": "3.16.0", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz", + "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==", + "dev": true + } + } + }, + "vscode-html-languageservice": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-4.0.7.tgz", + "integrity": "sha512-P5TQMYpgxAdLs+PwpC7Lm+0lXCyQAC6kZ41YuPYNHVooC4XO7Y2+ncHBcQJVK4C9LU2cTOAl0lzq4WAxuwRHYw==", + "dev": true, + "requires": { + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-languageserver-types": "^3.16.0", + "vscode-nls": "^5.0.0", + "vscode-uri": "^3.0.2" + }, + "dependencies": { + "vscode-languageserver-types": { + "version": "3.16.0", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz", + "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==", + "dev": true + } + } + }, + "vscode-json-languageservice": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.1.7.tgz", + "integrity": "sha512-cwG5TwZyHYthsk2aS3W1dVgVP6Vwn3o+zscwN58uMgZt/nKuyxd9vdEB1F58Ix+S5kSKAnkUCP6hvulcoImQQQ==", + "dev": true, + "requires": { + "jsonc-parser": "^3.0.0", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-languageserver-types": "^3.16.0", + "vscode-nls": "^5.0.0", + "vscode-uri": "^3.0.2" + }, + "dependencies": { + "vscode-languageserver-types": { + "version": "3.16.0", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz", + "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==", + "dev": true + } + } + }, + "vscode-jsonrpc": { + "version": "8.0.0-next.2", + "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.0.0-next.2.tgz", + "integrity": "sha512-gxUyTBAjmwGkiHW/UaRScre2s4i98P8M7gnc3VB4DrVQUm3vQ0idi2cN9nbkfcjATx+uEt8C22j+MLN/8UzsJA==", + "dev": true + }, + "vscode-languageserver": { + "version": "8.0.0-next.2", + "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.0.0-next.2.tgz", + "integrity": "sha512-7qCEXTeGZKkI8BGvlKh0JPXTY7BaWoiwQYKCcGaUgnMs34wt6F/yaKcxoC3XIouBBVyRxiI6Ml/JdztM3XYEaA==", + "dev": true, + "requires": { + "vscode-languageserver-protocol": "3.17.0-next.8" + } + }, + "vscode-languageserver-protocol": { + "version": "3.17.0-next.8", + "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.8.tgz", + "integrity": "sha512-P89vSuJ+FA5JzFmcOoZN13Ig1yd6LsiPOig0O5m5BSGuO/rplQegCd9J0wKpaTy7trf/SYHRoypnbUBdzy14sg==", + "dev": true, + "requires": { + "vscode-jsonrpc": "8.0.0-next.2", + "vscode-languageserver-types": "3.17.0-next.3" + } + }, + "vscode-languageserver-textdocument": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.1.tgz", + "integrity": "sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA==", + "dev": true + }, + "vscode-languageserver-types": { + "version": "3.17.0-next.3", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.3.tgz", + "integrity": "sha512-VQcXnhKYxUW6OiRMhG++SzmZYMJwusXknJGd+FfdOnS1yHAo734OHyR0e2eEHDlv0/oWc8RZPgx/VKSKyondVg==", + "dev": true + }, + "vscode-nls": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.0.0.tgz", + "integrity": "sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA==", + "dev": true + }, + "vscode-pug-languageservice": { + "version": "0.27.11", + "resolved": "https://registry.npmjs.org/vscode-pug-languageservice/-/vscode-pug-languageservice-0.27.11.tgz", + "integrity": "sha512-YRrh1Ccd3VXiqabNodL1V+tqNF9K6ExzngMRXrruSVKNkgvcfx1T7FJuWMQhWZ24aVB0389hvDm+5qZV2qR99Q==", + "dev": true, + "requires": { + "@volar/code-gen": "^0.27.11", + "@volar/shared": "^0.27.11", + "@volar/source-map": "^0.27.11", + "@volar/transforms": "^0.27.11", + "pug-lexer": "^5.0.1", + "pug-parser": "^6.0.0", + "vscode-languageserver": "^8.0.0-next.2" + } + }, + "vscode-typescript-languageservice": { + "version": "0.27.11", + "resolved": "https://registry.npmjs.org/vscode-typescript-languageservice/-/vscode-typescript-languageservice-0.27.11.tgz", + "integrity": "sha512-yUy5GTJvqTZk+MA/0l64PVc60vDkMhMM47EEHdVY6MCVYq6EnILw5GPEjST9ZYYK/5IbYqT8FjqsYXaKdBksKQ==", + "dev": true, + "requires": { + "@volar/shared": "^0.27.11", + "upath": "^2.0.1", + "vscode-languageserver": "^8.0.0-next.2", + "vscode-languageserver-textdocument": "^1.0.1" + }, + "dependencies": { + "upath": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", + "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", + "dev": true + } + } + }, + "vscode-uri": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.2.tgz", + "integrity": "sha512-jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA==", + "dev": true + }, + "vscode-vue-languageservice": { + "version": "0.27.11", + "resolved": "https://registry.npmjs.org/vscode-vue-languageservice/-/vscode-vue-languageservice-0.27.11.tgz", + "integrity": "sha512-Hpm6N43xsKO4w5x2z8qQmpB1v1LlfQntBud37OCZ1HcVAYeS+bXzRazcH4b+M0sRYPFlUSXVI+0SBtBd3/tYVg==", + "dev": true, + "requires": { + "@volar/code-gen": "^0.27.11", + "@volar/html2pug": "^0.27.11", + "@volar/shared": "^0.27.11", + "@volar/source-map": "^0.27.11", + "@volar/transforms": "^0.27.11", + "@vscode/emmet-helper": "^2.7.0", + "@vue/compiler-dom": "^3.2.6", + "@vue/reactivity": "^3.2.6", + "@vue/shared": "^3.2.6", + "request-light": "^0.5.4", + "upath": "^2.0.1", + "vscode-css-languageservice": "^5.1.4", + "vscode-html-languageservice": "^4.0.7", + "vscode-json-languageservice": "^4.1.7", + "vscode-languageserver": "^8.0.0-next.2", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-pug-languageservice": "^0.27.11", + "vscode-typescript-languageservice": "^0.27.11" + }, + "dependencies": { + "@vue/compiler-core": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.7.tgz", + "integrity": "sha512-OcWy72QNTkcNYtZIb927pRx2cRujrlDWsAx7ejWDnRzwo83gIyF8NeTrMv/7wbnHoeA+Gga9AK4Wo9PlCzhuLg==", + "dev": true, + "requires": { + "@babel/parser": "^7.15.0", + "@babel/types": "^7.15.0", + "@vue/shared": "3.2.7", + "estree-walker": "^2.0.2", + "source-map": "^0.6.1" + } + }, + "@vue/compiler-dom": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.7.tgz", + "integrity": "sha512-YZyZNoZlTbTMqyY8QMC8IhwmcDVOiE1DdVwjnXbyihg+XVqpGQkDjNcG5nyMTbtZDKXREsYkcjaZntEfKyWK5g==", + "dev": true, + "requires": { + "@vue/compiler-core": "3.2.7", + "@vue/shared": "3.2.7" + } + }, + "@vue/reactivity": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.2.7.tgz", + "integrity": "sha512-VDeQiZs6s5m1W7hIX+vzmokDCHPEKNYrSxoHWXj4MiGamcT5XZxACj/VXOCK9c6qz36qK5EQOfDWtmVhxfI2hQ==", + "dev": true, + "requires": { + "@vue/shared": "3.2.7" + } + }, + "@vue/shared": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.7.tgz", + "integrity": "sha512-YwGOcNZjOY/MmadpzFBXWyHEwZSf0lVU4XF5zpD7tXC9dmqjdo38Jkk06wATu4LYHDPW4emXKMB5YLFPWPkwFA==", + "dev": true + }, + "upath": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", + "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", + "dev": true + } + } + }, + "vue": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.2.tgz", + "integrity": "sha512-D/LuzAV30CgNJYGyNheE/VUs5N4toL2IgmS6c9qeOxvyh0xyn4exyRqizpXIrsvfx34zG9x5gCI2tdRHCGvF9w==", + "requires": { + "@vue/compiler-dom": "3.2.2", + "@vue/runtime-dom": "3.2.2", + "@vue/shared": "3.2.2" + } + }, + "vue-demi": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.11.3.tgz", + "integrity": "sha512-DpM0TTMpclRZDV6AIacgg837zrim/C9Zn+2ztXBs9hsESJN9vC83ztjTe4KC4HgJuVle8YUjPp7HTwWtwOHfmg==" + }, + "vue-eslint-parser": { + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.10.0.tgz", + "integrity": "sha512-7tc/ewS9Vq9Bn741pvpg8op2fWJPH3k32aL+jcIcWGCTzh/zXSdh7pZ5FV3W2aJancP9+ftPAv292zY5T5IPCg==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "eslint-scope": "^5.1.1", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.2.1", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^6.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + }, + "espree": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", + "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "vue-i18n": { + "version": "9.1.7", + "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.1.7.tgz", + "integrity": "sha512-ujuuDanoHqtEd4GejWrbG/fXE9nrP51ElsEGxp0WBHfv+/ki0/wyUqkO+4fLikki2obGtXdviTPH0VNpas5K6g==", + "requires": { + "@intlify/core-base": "9.1.7", + "@intlify/shared": "9.1.7", + "@intlify/vue-devtools": "9.1.7", + "@vue/devtools-api": "^6.0.0-beta.7" + } + }, + "vue-router": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.0.11.tgz", + "integrity": "sha512-sha6I8fx9HWtvTrFZfxZkiQQBpqSeT+UCwauYjkdOQYRvwsGwimlQQE2ayqUwuuXGzquFpCPoXzYKWlzL4OuXg==", + "requires": { + "@vue/devtools-api": "^6.0.0-beta.14" + } + }, + "vue-tsc": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-0.2.3.tgz", + "integrity": "sha512-0ahxAnQolmv6EOnv5zxeMi4vCpM4PkhjU70i/EI44OzMWq4OErjLZhEh8EXOLtMx6FBRuuqS5fiBXcuqLpoL7Q==", + "dev": true, + "requires": { + "vscode-vue-languageservice": "^0.27.0" + } + }, + "vue-types": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/vue-types/-/vue-types-4.0.3.tgz", + "integrity": "sha512-Yn/TNUaYhkC9ezET5aYJuvxDzPTfEWPIvvRWVjgVAv9vuJG3VTLoTsgJvF4KmdyliBzMum6yoD6uUYVG6245yg==", + "requires": { + "is-plain-object": "5.0.0" + }, + "dependencies": { + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" + } + } + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "dev": true, + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dev": true, + "requires": { + "xml-name-validator": "^3.0.0" + } + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "dev": true, + "requires": { + "makeerror": "1.0.x" + } + }, + "warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "dev": true + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dev": true, + "requires": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + }, + "windicss": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/windicss/-/windicss-3.1.7.tgz", + "integrity": "sha512-Q/HQ9j+r2R0fdt85zAjccdo11kHWzQmpkuwIUQIO6PSypyDmBTfN14aAy4szLrpgo2woyuHM7Y+kir4IG4qnKQ==", + "dev": true + }, + "with": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/with/-/with-7.0.2.tgz", + "integrity": "sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==", + "dev": true, + "requires": { + "@babel/parser": "^7.9.6", + "@babel/types": "^7.9.6", + "assert-never": "^1.2.1", + "babel-walk": "3.0.0-canary-5" + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "dev": true + }, + "workbox-background-sync": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.2.4.tgz", + "integrity": "sha512-uoGgm1PZU6THRzXKlMEntrdA4Xkp6SCfxI7re4heN+yGrtAZq6zMKYhZmsdeW+YGnXS3y5xj7WV03b5TDgLh6A==", + "dev": true, + "requires": { + "idb": "^6.0.0", + "workbox-core": "6.2.4" + } + }, + "workbox-broadcast-update": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.2.4.tgz", + "integrity": "sha512-0EpML2lbxNkiZUoap4BJDA0Hfz36MhtUd/rRhFvF6YWoRbTQ8tc6tMaRgM1EBIUmIN2OX9qQlkqe5SGGt4lfXQ==", + "dev": true, + "requires": { + "workbox-core": "6.2.4" + } + }, + "workbox-build": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.2.4.tgz", + "integrity": "sha512-01ZbY1BHi+yYvu4yDGZBw9xm1bWyZW0QGWPxiksvSPAsNH/z/NwgtWW14YEroFyG98mmXb7pufWlwl40zE1KTw==", + "dev": true, + "requires": { + "@apideck/better-ajv-errors": "^0.2.4", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^1.4.1", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "source-map-url": "^0.4.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.2.4", + "workbox-broadcast-update": "6.2.4", + "workbox-cacheable-response": "6.2.4", + "workbox-core": "6.2.4", + "workbox-expiration": "6.2.4", + "workbox-google-analytics": "6.2.4", + "workbox-navigation-preload": "6.2.4", + "workbox-precaching": "6.2.4", + "workbox-range-requests": "6.2.4", + "workbox-recipes": "6.2.4", + "workbox-routing": "6.2.4", + "workbox-strategies": "6.2.4", + "workbox-streams": "6.2.4", + "workbox-sw": "6.2.4", + "workbox-window": "6.2.4" + }, + "dependencies": { + "@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "dev": true, + "requires": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + } + }, + "@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dev": true, + "requires": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + } + }, + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "dev": true + }, + "ajv": { + "version": "8.6.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.2.tgz", + "integrity": "sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "dev": true + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "dev": true, + "requires": { + "whatwg-url": "^7.0.0" + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "workbox-cacheable-response": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.2.4.tgz", + "integrity": "sha512-KZSzAOmgWsrk15Wu+geCUSGLIyyzHaORKjH5JnR6qcVZAsm0JXUu2m2OZGqjQ+/eyQwrGdXXqAMW+4wQvTXccg==", + "dev": true, + "requires": { + "workbox-core": "6.2.4" + } + }, + "workbox-core": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.2.4.tgz", + "integrity": "sha512-Nu8X4R4Is3g8uzEJ6qwbW2CGVpzntW/cSf8OfsQGIKQR0nt84FAKzP2cLDaNLp3L/iV9TuhZgCTZzkMiap5/OQ==", + "dev": true + }, + "workbox-expiration": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.2.4.tgz", + "integrity": "sha512-EdOBLunrE3+Ff50y7AYDbiwtiLDvB+oEIkL1Wd9G5d176YVqFfgPfMRzJQ7fN+Yy2NfmsFME0Bw+dQruYekWsQ==", + "dev": true, + "requires": { + "idb": "^6.0.0", + "workbox-core": "6.2.4" + } + }, + "workbox-google-analytics": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.2.4.tgz", + "integrity": "sha512-+PWmTouoGGcDupaxM193F2NmgrF597Pyt9eHIDxfed+x+JSSeUkETlbAKwB8rnBHkAjs8JQcvStEP/IpueNKpQ==", + "dev": true, + "requires": { + "workbox-background-sync": "6.2.4", + "workbox-core": "6.2.4", + "workbox-routing": "6.2.4", + "workbox-strategies": "6.2.4" + } + }, + "workbox-navigation-preload": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.2.4.tgz", + "integrity": "sha512-y2dOSsaSdEimqhCmBIFR6kBp+GZbtNtWCBaMFwfKxTAul2uyllKcTKBHnZ9IzxULue6o6voV+I2U8Y8tO8n+eA==", + "dev": true, + "requires": { + "workbox-core": "6.2.4" + } + }, + "workbox-precaching": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.2.4.tgz", + "integrity": "sha512-7POznbVc8EG/mkbXzeb94x3B1VJruPgXvXFgS0NJ3GRugkO4ULs/DpIIb+ycs7uJIKY9EzLS7VXvElr3rMSozQ==", + "dev": true, + "requires": { + "workbox-core": "6.2.4", + "workbox-routing": "6.2.4", + "workbox-strategies": "6.2.4" + } + }, + "workbox-range-requests": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.2.4.tgz", + "integrity": "sha512-q4jjTXD1QOKbrHnzV3nxdZtIpOiVoIP5QyVmjuJrybVnAZurtyKcqirTQcAcT/zlTvgwm07zcTTk9o/zIB6DmA==", + "dev": true, + "requires": { + "workbox-core": "6.2.4" + } + }, + "workbox-recipes": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.2.4.tgz", + "integrity": "sha512-z7oECGrt940dw1Bv0xIDJEXY1xARiaxsIedeJOutZFkbgaC/yWG61VTr/hmkeJ8Nx6jnY6W7Rc0iOUvg4sePag==", + "dev": true, + "requires": { + "workbox-cacheable-response": "6.2.4", + "workbox-core": "6.2.4", + "workbox-expiration": "6.2.4", + "workbox-precaching": "6.2.4", + "workbox-routing": "6.2.4", + "workbox-strategies": "6.2.4" + } + }, + "workbox-routing": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.2.4.tgz", + "integrity": "sha512-jHnOmpeH4MOWR4eXv6l608npD2y6IFv7yFJ1bT9/RbB8wq2vXHXJQ0ExTZRTWGbVltSG22wEU+MQ8VebDDwDeg==", + "dev": true, + "requires": { + "workbox-core": "6.2.4" + } + }, + "workbox-strategies": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.2.4.tgz", + "integrity": "sha512-DKgGC3ruceDuu2o+Ae5qmJy0p0q21mFP+RrkdqKrjyf2u8cJvvtvt1eIt4nevKc5BESiKxmhC2h+TZpOSzUDvA==", + "dev": true, + "requires": { + "workbox-core": "6.2.4" + } + }, + "workbox-streams": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.2.4.tgz", + "integrity": "sha512-yG6zV7S2NmYT6koyb7/DoPsyUAat9kD+rOmjP2SbBCtJdLu6ZIi1lgN4/rOkxEby/+Xb4OE4RmCSIZdMyjEmhQ==", + "dev": true, + "requires": { + "workbox-core": "6.2.4", + "workbox-routing": "6.2.4" + } + }, + "workbox-sw": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.2.4.tgz", + "integrity": "sha512-OlWLHNNM+j44sN2OaVXnVcf2wwhJUzcHlXrTrbWDu1JWnrQJ/rLicdc/sbxkZoyE0EbQm7Xr1BXcOjsB7PNlXQ==", + "dev": true + }, + "workbox-window": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.2.4.tgz", + "integrity": "sha512-9jD6THkwGEASj1YP56ZBHYJ147733FoGpJlMamYk38k/EBFE75oc6K3Vs2tGOBx5ZGq54+mHSStnlrtFG3IiOg==", + "dev": true, + "requires": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.2.4" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "ws": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.4.tgz", + "integrity": "sha512-zP9z6GXm6zC27YtspwH99T3qTG7bBFv2VIkeHstMLrLlDJuzA7tQ5ls3OJ1hOGGCzTQPniNJoHXIAOS0Jljohg==", + "dev": true + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "dev": true, + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + }, + "zrender": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/zrender/-/zrender-5.2.0.tgz", + "integrity": "sha512-87v3gvB0lcWy48ObA/DwrhQ95ADMMRhECVrXmHDFCBNvbxHFfEDZtrZh4VmVjLAeFAjimY4PyZ65rbLCivdszA==", + "requires": { + "tslib": "2.3.0" + } + }, + "zwitch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", + "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", + "dev": true + } + } +} diff --git a/vben271/package.json b/vben271/package.json index 73d53aee..cc4f8c5d 100644 --- a/vben271/package.json +++ b/vben271/package.json @@ -24,14 +24,12 @@ "lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix", "lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"", "lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/", - "lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js", "lint:pretty": "pretty-quick --staged", "test:unit": "jest", "test:unit-coverage": "jest --coverage", "test:gzip": "http-server dist --cors --gzip -c-1", "test:br": "http-server dist --cors --brotli -c-1", "reinstall": "rimraf yarn.lock && rimraf package.lock.json && rimraf node_modules && npm run bootstrap", - "prepare": "husky install", "gen:icon": "esno ./build/generate/icon/index.ts" }, "dependencies": { diff --git a/vben271/src/router/index.ts b/vben271/src/router/index.ts index c3491515..03e599d1 100644 --- a/vben271/src/router/index.ts +++ b/vben271/src/router/index.ts @@ -1,4 +1,4 @@ -import type { RouteRecordRaw } from 'vue-router'; +import { createWebHistory, RouteRecordRaw } from 'vue-router'; import type { App } from 'vue'; import { createRouter, createWebHashHistory } from 'vue-router'; @@ -15,7 +15,7 @@ getRouteNames(basicRoutes); // app router export const router = createRouter({ - history: createWebHashHistory(import.meta.env.VITE_PUBLIC_PATH), + history: createWebHistory(import.meta.env.VITE_PUBLIC_PATH), routes: basicRoutes as unknown as RouteRecordRaw[], strict: true, scrollBehavior: () => ({ left: 0, top: 0 }), diff --git a/vben271/src/router/routes/modules/admin.ts b/vben271/src/router/routes/modules/admin.ts index 3492cd67..5b858fed 100644 --- a/vben271/src/router/routes/modules/admin.ts +++ b/vben271/src/router/routes/modules/admin.ts @@ -1,6 +1,10 @@ import type { AppRouteModule } from '/@/router/types'; import { LAYOUT } from '/@/router/constant'; import { t } from '/@/hooks/web/useI18n'; +const IFrame = () => import('/@/views/sys/iframe/FrameBlank.vue'); +import { useUserStoreWithOut } from '/@/store/modules/user'; +const userStore = useUserStoreWithOut(); +const token = userStore.getToken; const admin: AppRouteModule = { path: '/admin', @@ -33,6 +37,17 @@ const admin: AppRouteModule = { icon: 'ant-design:lock-outlined', }, }, + { + path: 'hangfire', + name: '后台任务', + component: IFrame, + meta: { + frameSrc: import.meta.env.VITE_API_URL + '/hangfire?access_token=' + token, + title: '后台任务', + //policy: 'AbpIdentity.Hangfire.Dashboard', + icon: 'ant-design:clock-circle-outlined', + }, + }, ], }; diff --git a/vben271/src/services/ServiceProxies.ts b/vben271/src/services/ServiceProxies.ts index b2c73849..fa4bd940 100644 --- a/vben271/src/services/ServiceProxies.ts +++ b/vben271/src/services/ServiceProxies.ts @@ -2,7 +2,7 @@ /* eslint-disable */ //---------------------- // -// Generated using the NSwag toolchain v13.11.3.0 (NJsonSchema v10.4.4.0 (Newtonsoft.Json v12.0.0.0)) (http://NSwag.org) +// Generated using the NSwag toolchain v13.13.2.0 (NJsonSchema v10.5.2.0 (Newtonsoft.Json v12.0.0.0)) (http://NSwag.org) // //---------------------- // ReSharper disable InconsistentNaming @@ -1169,6 +1169,102 @@ export class ApiScopeServiceProxy extends ServiceProxyBase { } return Promise.resolve(null); } + + /** + * 获取所有ApiScope + * @return Success + */ + all( cancelToken?: CancelToken | undefined): Promise { + let url_ = this.baseUrl + "/IdentityServer/ApiScope/all"; + url_ = url_.replace(/[?&]$/, ""); + + let options_ = { + method: "POST", + url: url_, + headers: { + "Accept": "text/plain" + }, + cancelToken + }; + + return this.transformOptions(options_).then(transformedOptions_ => { + return this.instance.request(transformedOptions_); + }).catch((_error: any) => { + if (isAxiosError(_error) && _error.response) { + return _error.response; + } else { + throw _error; + } + }).then((_response: AxiosResponse) => { + return this.transformResult(url_, _response, (_response: AxiosResponse) => this.processAll(_response)); + }); + } + + protected processAll(response: AxiosResponse): Promise { + const status = response.status; + let _headers: any = {}; + if (response.headers && typeof response.headers === "object") { + for (let k in response.headers) { + if (response.headers.hasOwnProperty(k)) { + _headers[k] = response.headers[k]; + } + } + } + if (status === 200) { + const _responseText = response.data; + let result200: any = null; + let resultData200 = _responseText; + if (Array.isArray(resultData200)) { + result200 = [] as any; + for (let item of resultData200) + result200!.push(StringStringFromSelector.fromJS(item)); + } + else { + result200 = null; + } + return result200; + } else if (status === 403) { + const _responseText = response.data; + let result403: any = null; + let resultData403 = _responseText; + result403 = RemoteServiceErrorResponse.fromJS(resultData403); + return throwException("Forbidden", status, _responseText, _headers, result403); + } else if (status === 401) { + const _responseText = response.data; + let result401: any = null; + let resultData401 = _responseText; + result401 = RemoteServiceErrorResponse.fromJS(resultData401); + return throwException("Unauthorized", status, _responseText, _headers, result401); + } else if (status === 400) { + const _responseText = response.data; + let result400: any = null; + let resultData400 = _responseText; + result400 = RemoteServiceErrorResponse.fromJS(resultData400); + return throwException("Bad Request", status, _responseText, _headers, result400); + } else if (status === 404) { + const _responseText = response.data; + let result404: any = null; + let resultData404 = _responseText; + result404 = RemoteServiceErrorResponse.fromJS(resultData404); + return throwException("Not Found", status, _responseText, _headers, result404); + } else if (status === 501) { + const _responseText = response.data; + let result501: any = null; + let resultData501 = _responseText; + result501 = RemoteServiceErrorResponse.fromJS(resultData501); + return throwException("Server Error", status, _responseText, _headers, result501); + } else if (status === 500) { + const _responseText = response.data; + let result500: any = null; + let resultData500 = _responseText; + result500 = RemoteServiceErrorResponse.fromJS(resultData500); + return throwException("Server Error", status, _responseText, _headers, result500); + } else if (status !== 200 && status !== 204) { + const _responseText = response.data; + return throwException("An unexpected server error occurred.", status, _responseText, _headers); + } + return Promise.resolve(null); + } } export class AuditLogsServiceProxy extends ServiceProxyBase { @@ -4787,6 +4883,7 @@ export class ActionApiDescriptionModel implements IActionApiDescriptionModel { parametersOnMethod!: MethodParameterApiDescriptionModel[] | undefined; parameters!: ParameterApiDescriptionModel[] | undefined; returnValue!: ReturnValueApiDescriptionModel; + allowAnonymous!: boolean | undefined; constructor(data?: IActionApiDescriptionModel) { if (data) { @@ -4819,6 +4916,7 @@ export class ActionApiDescriptionModel implements IActionApiDescriptionModel { this.parameters!.push(ParameterApiDescriptionModel.fromJS(item)); } this.returnValue = _data["returnValue"] ? ReturnValueApiDescriptionModel.fromJS(_data["returnValue"]) : undefined; + this.allowAnonymous = _data["allowAnonymous"]; } } @@ -4851,6 +4949,7 @@ export class ActionApiDescriptionModel implements IActionApiDescriptionModel { data["parameters"].push(item.toJSON()); } data["returnValue"] = this.returnValue ? this.returnValue.toJSON() : undefined; + data["allowAnonymous"] = this.allowAnonymous; return data; } } @@ -4864,6 +4963,7 @@ export interface IActionApiDescriptionModel { parametersOnMethod: MethodParameterApiDescriptionModel[] | undefined; parameters: ParameterApiDescriptionModel[] | undefined; returnValue: ReturnValueApiDescriptionModel; + allowAnonymous: boolean | undefined; } export class AddCorsInput implements IAddCorsInput { @@ -4987,6 +5087,7 @@ export interface IApiResourceClaimOutput { } export class ApiResourceOutput implements IApiResourceOutput { + id!: string; name!: string | undefined; displayName!: string | undefined; description!: string | undefined; @@ -5009,6 +5110,7 @@ export class ApiResourceOutput implements IApiResourceOutput { init(_data?: any) { if (_data) { + this.id = _data["id"]; this.name = _data["name"]; this.displayName = _data["displayName"]; this.description = _data["description"]; @@ -5047,6 +5149,7 @@ export class ApiResourceOutput implements IApiResourceOutput { toJSON(data?: any) { data = typeof data === 'object' ? data : {}; + data["id"] = this.id; data["name"] = this.name; data["displayName"] = this.displayName; data["description"] = this.description; @@ -5078,6 +5181,7 @@ export class ApiResourceOutput implements IApiResourceOutput { } export interface IApiResourceOutput { + id: string; name: string | undefined; displayName: string | undefined; description: string | undefined; @@ -6233,10 +6337,7 @@ export class CreateApiResourceInput implements ICreateApiResourceInput { enabled!: boolean; allowedAccessTokenSigningAlgorithms!: string | undefined; showInDiscoveryDocument!: boolean; - secrets!: ApiResourceSecretOutput[] | undefined; - scopes!: ApiResourceScopeOutput[] | undefined; - userClaims!: ApiResourceClaimOutput[] | undefined; - properties!: ApiResourcePropertyOutput[] | undefined; + secret!: string | undefined; constructor(data?: ICreateApiResourceInput) { if (data) { @@ -6255,26 +6356,7 @@ export class CreateApiResourceInput implements ICreateApiResourceInput { this.enabled = _data["enabled"]; this.allowedAccessTokenSigningAlgorithms = _data["allowedAccessTokenSigningAlgorithms"]; this.showInDiscoveryDocument = _data["showInDiscoveryDocument"]; - if (Array.isArray(_data["secrets"])) { - this.secrets = [] as any; - for (let item of _data["secrets"]) - this.secrets!.push(ApiResourceSecretOutput.fromJS(item)); - } - if (Array.isArray(_data["scopes"])) { - this.scopes = [] as any; - for (let item of _data["scopes"]) - this.scopes!.push(ApiResourceScopeOutput.fromJS(item)); - } - if (Array.isArray(_data["userClaims"])) { - this.userClaims = [] as any; - for (let item of _data["userClaims"]) - this.userClaims!.push(ApiResourceClaimOutput.fromJS(item)); - } - if (Array.isArray(_data["properties"])) { - this.properties = [] as any; - for (let item of _data["properties"]) - this.properties!.push(ApiResourcePropertyOutput.fromJS(item)); - } + this.secret = _data["secret"]; } } @@ -6293,26 +6375,7 @@ export class CreateApiResourceInput implements ICreateApiResourceInput { data["enabled"] = this.enabled; data["allowedAccessTokenSigningAlgorithms"] = this.allowedAccessTokenSigningAlgorithms; data["showInDiscoveryDocument"] = this.showInDiscoveryDocument; - if (Array.isArray(this.secrets)) { - data["secrets"] = []; - for (let item of this.secrets) - data["secrets"].push(item.toJSON()); - } - if (Array.isArray(this.scopes)) { - data["scopes"] = []; - for (let item of this.scopes) - data["scopes"].push(item.toJSON()); - } - if (Array.isArray(this.userClaims)) { - data["userClaims"] = []; - for (let item of this.userClaims) - data["userClaims"].push(item.toJSON()); - } - if (Array.isArray(this.properties)) { - data["properties"] = []; - for (let item of this.properties) - data["properties"].push(item.toJSON()); - } + data["secret"] = this.secret; return data; } } @@ -6324,10 +6387,7 @@ export interface ICreateApiResourceInput { enabled: boolean; allowedAccessTokenSigningAlgorithms: string | undefined; showInDiscoveryDocument: boolean; - secrets: ApiResourceSecretOutput[] | undefined; - scopes: ApiResourceScopeOutput[] | undefined; - userClaims: ApiResourceClaimOutput[] | undefined; - properties: ApiResourcePropertyOutput[] | undefined; + secret: string | undefined; } export class CreateApiScopeInput implements ICreateApiScopeInput { @@ -6706,6 +6766,8 @@ export class CurrentUserDto implements ICurrentUserDto { isAuthenticated!: boolean; id!: string | undefined; tenantId!: string | undefined; + impersonatorUserId!: string | undefined; + impersonatorTenantId!: string | undefined; userName!: string | undefined; name!: string | undefined; surName!: string | undefined; @@ -6729,6 +6791,8 @@ export class CurrentUserDto implements ICurrentUserDto { this.isAuthenticated = _data["isAuthenticated"]; this.id = _data["id"]; this.tenantId = _data["tenantId"]; + this.impersonatorUserId = _data["impersonatorUserId"]; + this.impersonatorTenantId = _data["impersonatorTenantId"]; this.userName = _data["userName"]; this.name = _data["name"]; this.surName = _data["surName"]; @@ -6756,6 +6820,8 @@ export class CurrentUserDto implements ICurrentUserDto { data["isAuthenticated"] = this.isAuthenticated; data["id"] = this.id; data["tenantId"] = this.tenantId; + data["impersonatorUserId"] = this.impersonatorUserId; + data["impersonatorTenantId"] = this.impersonatorTenantId; data["userName"] = this.userName; data["name"] = this.name; data["surName"] = this.surName; @@ -6776,6 +6842,8 @@ export interface ICurrentUserDto { isAuthenticated: boolean; id: string | undefined; tenantId: string | undefined; + impersonatorUserId: string | undefined; + impersonatorTenantId: string | undefined; userName: string | undefined; name: string | undefined; surName: string | undefined; @@ -7726,6 +7794,7 @@ export class FindTenantResultDto implements IFindTenantResultDto { success!: boolean; tenantId!: string | undefined; name!: string | undefined; + isActive!: boolean; constructor(data?: IFindTenantResultDto) { if (data) { @@ -7741,6 +7810,7 @@ export class FindTenantResultDto implements IFindTenantResultDto { this.success = _data["success"]; this.tenantId = _data["tenantId"]; this.name = _data["name"]; + this.isActive = _data["isActive"]; } } @@ -7756,6 +7826,7 @@ export class FindTenantResultDto implements IFindTenantResultDto { data["success"] = this.success; data["tenantId"] = this.tenantId; data["name"] = this.name; + data["isActive"] = this.isActive; return data; } } @@ -7764,6 +7835,7 @@ export interface IFindTenantResultDto { success: boolean; tenantId: string | undefined; name: string | undefined; + isActive: boolean; } export class GetAuditLogPageListOutput implements IGetAuditLogPageListOutput { @@ -10586,6 +10658,7 @@ export interface IPagingIdentityResourceListInput { } export class PagingIdentityResourceListOutput implements IPagingIdentityResourceListOutput { + id!: string; name!: string | undefined; displayName!: string | undefined; description!: string | undefined; @@ -10605,6 +10678,7 @@ export class PagingIdentityResourceListOutput implements IPagingIdentityResource init(_data?: any) { if (_data) { + this.id = _data["id"]; this.name = _data["name"]; this.displayName = _data["displayName"]; this.description = _data["description"]; @@ -10624,6 +10698,7 @@ export class PagingIdentityResourceListOutput implements IPagingIdentityResource toJSON(data?: any) { data = typeof data === 'object' ? data : {}; + data["id"] = this.id; data["name"] = this.name; data["displayName"] = this.displayName; data["description"] = this.description; @@ -10636,6 +10711,7 @@ export class PagingIdentityResourceListOutput implements IPagingIdentityResource } export interface IPagingIdentityResourceListOutput { + id: string; name: string | undefined; displayName: string | undefined; description: string | undefined; @@ -11793,6 +11869,46 @@ export interface ISetDataDictinaryDetailInput { isEnabled: boolean; } +export class StringStringFromSelector implements IStringStringFromSelector { + readonly value!: string | undefined; + readonly label!: string | undefined; + + constructor(data?: IStringStringFromSelector) { + if (data) { + for (var property in data) { + if (data.hasOwnProperty(property)) + (this)[property] = (data)[property]; + } + } + } + + init(_data?: any) { + if (_data) { + (this).value = _data["value"]; + (this).label = _data["label"]; + } + } + + static fromJS(data: any): StringStringFromSelector { + data = typeof data === 'object' ? data : {}; + let result = new StringStringFromSelector(); + result.init(data); + return result; + } + + toJSON(data?: any) { + data = typeof data === 'object' ? data : {}; + data["value"] = this.value; + data["label"] = this.label; + return data; + } +} + +export interface IStringStringFromSelector { + value: string | undefined; + label: string | undefined; +} + export class TenantCreateDto implements ITenantCreateDto { readonly extraProperties!: { [key: string]: any; } | undefined; name!: string; @@ -12376,10 +12492,8 @@ export class UpdateApiResourceInput implements IUpdateApiResourceInput { enabled!: boolean; allowedAccessTokenSigningAlgorithms!: string | undefined; showInDiscoveryDocument!: boolean; - secrets!: ApiResourceSecretOutput[] | undefined; - scopes!: ApiResourceScopeOutput[] | undefined; - userClaims!: ApiResourceClaimOutput[] | undefined; - properties!: ApiResourcePropertyOutput[] | undefined; + secret!: string | undefined; + apiScopes!: string[] | undefined; constructor(data?: IUpdateApiResourceInput) { if (data) { @@ -12398,25 +12512,11 @@ export class UpdateApiResourceInput implements IUpdateApiResourceInput { this.enabled = _data["enabled"]; this.allowedAccessTokenSigningAlgorithms = _data["allowedAccessTokenSigningAlgorithms"]; this.showInDiscoveryDocument = _data["showInDiscoveryDocument"]; - if (Array.isArray(_data["secrets"])) { - this.secrets = [] as any; - for (let item of _data["secrets"]) - this.secrets!.push(ApiResourceSecretOutput.fromJS(item)); - } - if (Array.isArray(_data["scopes"])) { - this.scopes = [] as any; - for (let item of _data["scopes"]) - this.scopes!.push(ApiResourceScopeOutput.fromJS(item)); - } - if (Array.isArray(_data["userClaims"])) { - this.userClaims = [] as any; - for (let item of _data["userClaims"]) - this.userClaims!.push(ApiResourceClaimOutput.fromJS(item)); - } - if (Array.isArray(_data["properties"])) { - this.properties = [] as any; - for (let item of _data["properties"]) - this.properties!.push(ApiResourcePropertyOutput.fromJS(item)); + this.secret = _data["secret"]; + if (Array.isArray(_data["apiScopes"])) { + this.apiScopes = [] as any; + for (let item of _data["apiScopes"]) + this.apiScopes!.push(item); } } } @@ -12436,25 +12536,11 @@ export class UpdateApiResourceInput implements IUpdateApiResourceInput { data["enabled"] = this.enabled; data["allowedAccessTokenSigningAlgorithms"] = this.allowedAccessTokenSigningAlgorithms; data["showInDiscoveryDocument"] = this.showInDiscoveryDocument; - if (Array.isArray(this.secrets)) { - data["secrets"] = []; - for (let item of this.secrets) - data["secrets"].push(item.toJSON()); - } - if (Array.isArray(this.scopes)) { - data["scopes"] = []; - for (let item of this.scopes) - data["scopes"].push(item.toJSON()); - } - if (Array.isArray(this.userClaims)) { - data["userClaims"] = []; - for (let item of this.userClaims) - data["userClaims"].push(item.toJSON()); - } - if (Array.isArray(this.properties)) { - data["properties"] = []; - for (let item of this.properties) - data["properties"].push(item.toJSON()); + data["secret"] = this.secret; + if (Array.isArray(this.apiScopes)) { + data["apiScopes"] = []; + for (let item of this.apiScopes) + data["apiScopes"].push(item); } return data; } @@ -12467,10 +12553,8 @@ export interface IUpdateApiResourceInput { enabled: boolean; allowedAccessTokenSigningAlgorithms: string | undefined; showInDiscoveryDocument: boolean; - secrets: ApiResourceSecretOutput[] | undefined; - scopes: ApiResourceScopeOutput[] | undefined; - userClaims: ApiResourceClaimOutput[] | undefined; - properties: ApiResourcePropertyOutput[] | undefined; + secret: string | undefined; + apiScopes: string[] | undefined; } export class UpdateCreateApiScopeInput implements IUpdateCreateApiScopeInput { diff --git a/vben271/src/views/admin/roles/CreateAbpRole.vue b/vben271/src/views/admin/roles/CreateAbpRole.vue index 6c2b130e..165ce758 100644 --- a/vben271/src/views/admin/roles/CreateAbpRole.vue +++ b/vben271/src/views/admin/roles/CreateAbpRole.vue @@ -1,11 +1,17 @@ diff --git a/vben271/src/views/identityServers/apiResources/CreateApiResource.vue b/vben271/src/views/identityServers/apiResources/CreateApiResource.vue index 17121cbe..6a6ad751 100644 --- a/vben271/src/views/identityServers/apiResources/CreateApiResource.vue +++ b/vben271/src/views/identityServers/apiResources/CreateApiResource.vue @@ -1,11 +1,17 @@ + diff --git a/vben271/src/views/identityServers/apiScopes/ApiScopes.ts b/vben271/src/views/identityServers/apiScopes/ApiScopes.ts index 830393b4..4611c52b 100644 --- a/vben271/src/views/identityServers/apiScopes/ApiScopes.ts +++ b/vben271/src/views/identityServers/apiScopes/ApiScopes.ts @@ -67,7 +67,6 @@ export const createFormSchema: FormSchema[] = [ field: 'enabled', label: 'enabled', component: 'Switch', - required: true, labelWidth: 200, colProps: { span: 20 }, }, @@ -124,7 +123,6 @@ export const editFormSchema: FormSchema[] = [ field: 'enabled', label: 'enabled', component: 'Switch', - required: true, labelWidth: 200, colProps: { span: 20 }, }, @@ -186,15 +184,17 @@ export async function deleteApiScopeAsync({ id, reload }) { await _apiScopeServiceProxy.delete(request); reload(); } -/** - * 删除 - * @param param0 - */ + export async function editApiScopeAsync({ request, changeOkLoading, validate, closeModal }) { - await validate(); - changeOkLoading(true); - const _apiScopeServiceProxy = new ApiScopeServiceProxy(); - await _apiScopeServiceProxy.update(request); - changeOkLoading(false); - closeModal(); + try { + await validate(); + changeOkLoading(true); + const _apiScopeServiceProxy = new ApiScopeServiceProxy(); + await _apiScopeServiceProxy.update(request); + changeOkLoading(false); + closeModal(); + } catch (error) { + } finally { + changeOkLoading(false); + } } diff --git a/vben271/src/views/identityServers/clients/Clients.ts b/vben271/src/views/identityServers/clients/Clients.ts index e1ed796a..7c46b622 100644 --- a/vben271/src/views/identityServers/clients/Clients.ts +++ b/vben271/src/views/identityServers/clients/Clients.ts @@ -1,6 +1,14 @@ import { FormSchema } from '/@/components/Table'; import { BasicColumn } from '/@/components/Table'; -import { ClientServiceProxy, EnabledInput, IdInput, PagingClientListInput } from '/@/services/ServiceProxies'; +import { message } from 'ant-design-vue'; +import { useI18n } from '/@/hooks/web/useI18n'; +const { t } = useI18n(); +import { + ClientServiceProxy, + EnabledInput, + IdInput, + PagingClientListInput, +} from '/@/services/ServiceProxies'; export const searchFormSchema: FormSchema[] = [ { @@ -301,6 +309,19 @@ export async function createClientAsync({ request, changeOkLoading, validate, cl closeModal(); } +export async function updateClientAsync({ request, changeOkLoading, closeModal }) { + try { + changeOkLoading(true); + const _clientServiceProxy = new ClientServiceProxy(); + await _clientServiceProxy.updateBasic(request); + message.success(t('common.operationSuccess')); + closeModal(); + } catch (error) { + } finally { + changeOkLoading(false); + } +} + /** * 删除 * @param param0 @@ -313,7 +334,7 @@ export async function deleteClientAsync({ id, reload }) { reload(); } /** - * 删除 + * 启用禁用 * @param param0 */ export async function enabledClientAsync({ clientId, enabled, reload }) { diff --git a/vben271/src/views/identityServers/clients/EditClientBasic.vue b/vben271/src/views/identityServers/clients/EditClientBasic.vue index ebd9a668..42547859 100644 --- a/vben271/src/views/identityServers/clients/EditClientBasic.vue +++ b/vben271/src/views/identityServers/clients/EditClientBasic.vue @@ -4,25 +4,22 @@ :width="700" :canFullscreen="false" @ok="submit" - @cancel="cancel" @register="registerModal" - @visible-change="visibleChange" :bodyStyle="{ 'padding-top': '0' }" :destroyOnClose="true" - :maskClosable="false" >
- + - + - + @@ -31,11 +28,17 @@ diff --git a/vben271/src/views/identityServers/identityResources/IdentityResources.ts b/vben271/src/views/identityServers/identityResources/IdentityResources.ts index 328715b1..f9688983 100644 --- a/vben271/src/views/identityServers/identityResources/IdentityResources.ts +++ b/vben271/src/views/identityServers/identityResources/IdentityResources.ts @@ -1,7 +1,13 @@ import { FormSchema } from '/@/components/Table'; import { BasicColumn } from '/@/components/Table'; -import { IdentityResourceServiceProxy, PagingIdentityResourceListInput, IdInput } from '/@/services/ServiceProxies'; - +import { + IdentityResourceServiceProxy, + PagingIdentityResourceListInput, + IdInput, +} from '/@/services/ServiceProxies'; +import { message } from 'ant-design-vue'; +import { useI18n } from '/@/hooks/web/useI18n'; +const { t } = useI18n(); export const searchFormSchema: FormSchema[] = [ { field: 'filter', @@ -98,6 +104,7 @@ export const createFormSchema: FormSchema[] = [ colProps: { span: 20 }, }, ]; + export const editFormSchema: FormSchema[] = [ { field: 'name', @@ -154,6 +161,7 @@ export const editFormSchema: FormSchema[] = [ colProps: { span: 20 }, }, ]; + /** * 分页列表 * @param params @@ -163,7 +171,12 @@ export async function getTableListAsync(params: PagingIdentityResourceListInput) const _identityResourceServiceProxy = new IdentityResourceServiceProxy(); return _identityResourceServiceProxy.page(params); } -export async function createIdentityResourcesAsync({ request, changeOkLoading, validate, closeModal }) { +export async function createIdentityResourcesAsync({ + request, + changeOkLoading, + validate, + closeModal, +}) { changeOkLoading(true); await validate(); const _identityResourceServiceProxy = new IdentityResourceServiceProxy(); @@ -182,3 +195,17 @@ export async function deleteIdentityResourcesAsync({ id, reload }) { await _identityResourceServiceProxy.delete(request); reload(); } + +export async function editIdentityResourceAsync({ request, changeOkLoading, closeModal }) { + try { + changeOkLoading(true); + const _identityResourceServiceProxy = new IdentityResourceServiceProxy(); + await _identityResourceServiceProxy.update(request); + changeOkLoading(false); + message.success(t('common.operationSuccess')); + closeModal(); + } catch (error) { + } finally { + changeOkLoading(false); + } +} diff --git a/vben271/yarn.lock b/vben271/yarn.lock deleted file mode 100644 index cd1874ab..00000000 --- a/vben271/yarn.lock +++ /dev/null @@ -1,11836 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@ant-design/colors@^5.0.0": - version "5.1.1" - resolved "https://registry.npmjs.org/@ant-design/colors/-/colors-5.1.1.tgz#800b2186b1e27e66432e67d03ed96af3e21d8940" - integrity sha512-Txy4KpHrp3q4XZdfgOBqLl+lkQIc3tEvHXOimRN1giX1AEC7mGtyrO9p8iRGJ3FLuVMGa2gNEzQyghVymLttKQ== - dependencies: - "@ctrl/tinycolor" "^3.3.1" - -"@ant-design/icons-svg@^4.0.0": - version "4.1.0" - resolved "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.1.0.tgz#480b025f4b20ef7fe8f47d4a4846e4fee84ea06c" - integrity sha512-Fi03PfuUqRs76aI3UWYpP864lkrfPo0hluwGqh7NJdLhvH4iRDc3jbJqZIvRDLHKbXrvAfPPV3+zjUccfFvWOQ== - -"@ant-design/icons-vue@^6.0.0": - version "6.0.1" - resolved "https://registry.npmjs.org/@ant-design/icons-vue/-/icons-vue-6.0.1.tgz#9d804c3c74d2cfaf97cb18e582d3b9400934f5fd" - integrity sha512-HigIgEVV6bbcrz2A92/qDzi/aKWB5EC6b6E1mxMB6aQA7ksiKY+gi4U94TpqyEIIhR23uaDrjufJ+xCZQ+vx6Q== - dependencies: - "@ant-design/colors" "^5.0.0" - "@ant-design/icons-svg" "^4.0.0" - "@types/lodash" "^4.14.165" - lodash "^4.17.15" - -"@antfu/utils@^0.2.4": - version "0.2.4" - resolved "https://registry.npmjs.org/@antfu/utils/-/utils-0.2.4.tgz#c7d33fc6faa0d3a6fcc2555673f5e9b19c0fbc15" - integrity sha512-2bZNkVfL9IZESmvE26UKi8SzyvSoaIsGXDcnbHFMtmGMqUiB1fXpAJ1ijGf+tSqKRQ5yagck2U1Qk0p+705/kw== - dependencies: - "@types/throttle-debounce" "^2.1.0" - -"@babel/code-frame@7.12.11": - version "7.12.11" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" - integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== - dependencies: - "@babel/highlight" "^7.10.4" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb" - integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw== - dependencies: - "@babel/highlight" "^7.14.5" - -"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.5.tgz#8ef4c18e58e801c5c95d3c1c0f2874a2680fadea" - integrity sha512-kixrYn4JwfAVPa0f2yfzc2AWti6WRRyO3XjWW5PJAvtE11qhSayrrcrEnee05KAtNaPC+EwehE8Qt1UedEVB8w== - -"@babel/core@>=7.9.0", "@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.7.2", "@babel/core@^7.7.5": - version "7.14.6" - resolved "https://registry.npmjs.org/@babel/core/-/core-7.14.6.tgz#e0814ec1a950032ff16c13a2721de39a8416fcab" - integrity sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA== - dependencies: - "@babel/code-frame" "^7.14.5" - "@babel/generator" "^7.14.5" - "@babel/helper-compilation-targets" "^7.14.5" - "@babel/helper-module-transforms" "^7.14.5" - "@babel/helpers" "^7.14.6" - "@babel/parser" "^7.14.6" - "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.1.2" - semver "^6.3.0" - source-map "^0.5.0" - -"@babel/core@^7.14.8": - version "7.14.8" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.8.tgz#20cdf7c84b5d86d83fac8710a8bc605a7ba3f010" - integrity sha512-/AtaeEhT6ErpDhInbXmjHcUQXH0L0TEgscfcxk1qbOvLuKCa5aZT0SOOtDKFY96/CLROwbLSKyFor6idgNaU4Q== - dependencies: - "@babel/code-frame" "^7.14.5" - "@babel/generator" "^7.14.8" - "@babel/helper-compilation-targets" "^7.14.5" - "@babel/helper-module-transforms" "^7.14.8" - "@babel/helpers" "^7.14.8" - "@babel/parser" "^7.14.8" - "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.8" - "@babel/types" "^7.14.8" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.1.2" - semver "^6.3.0" - source-map "^0.5.0" - -"@babel/generator@^7.14.5", "@babel/generator@^7.7.2": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.14.5.tgz#848d7b9f031caca9d0cd0af01b063f226f52d785" - integrity sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA== - dependencies: - "@babel/types" "^7.14.5" - jsesc "^2.5.1" - source-map "^0.5.0" - -"@babel/generator@^7.14.8": - version "7.14.8" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.8.tgz#bf86fd6af96cf3b74395a8ca409515f89423e070" - integrity sha512-cYDUpvIzhBVnMzRoY1fkSEhK/HmwEVwlyULYgn/tMQYd6Obag3ylCjONle3gdErfXBW61SVTlR9QR7uWlgeIkg== - dependencies: - "@babel/types" "^7.14.8" - jsesc "^2.5.1" - source-map "^0.5.0" - -"@babel/helper-annotate-as-pure@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz#7bf478ec3b71726d56a8ca5775b046fc29879e61" - integrity sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz#b939b43f8c37765443a19ae74ad8b15978e0a191" - integrity sha512-YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w== - dependencies: - "@babel/helper-explode-assignable-expression" "^7.14.5" - "@babel/types" "^7.14.5" - -"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz#7a99c5d0967911e972fe2c3411f7d5b498498ecf" - integrity sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw== - dependencies: - "@babel/compat-data" "^7.14.5" - "@babel/helper-validator-option" "^7.14.5" - browserslist "^4.16.6" - semver "^6.3.0" - -"@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.14.6": - version "7.14.6" - resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.6.tgz#f114469b6c06f8b5c59c6c4e74621f5085362542" - integrity sha512-Z6gsfGofTxH/+LQXqYEK45kxmcensbzmk/oi8DmaQytlQCgqNZt9XQF8iqlI/SeXWVjaMNxvYvzaYw+kh42mDg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.14.5" - "@babel/helper-function-name" "^7.14.5" - "@babel/helper-member-expression-to-functions" "^7.14.5" - "@babel/helper-optimise-call-expression" "^7.14.5" - "@babel/helper-replace-supers" "^7.14.5" - "@babel/helper-split-export-declaration" "^7.14.5" - -"@babel/helper-create-regexp-features-plugin@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz#c7d5ac5e9cf621c26057722fb7a8a4c5889358c4" - integrity sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A== - dependencies: - "@babel/helper-annotate-as-pure" "^7.14.5" - regexpu-core "^4.7.1" - -"@babel/helper-define-polyfill-provider@^0.2.2": - version "0.2.3" - resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz#0525edec5094653a282688d34d846e4c75e9c0b6" - integrity sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew== - dependencies: - "@babel/helper-compilation-targets" "^7.13.0" - "@babel/helper-module-imports" "^7.12.13" - "@babel/helper-plugin-utils" "^7.13.0" - "@babel/traverse" "^7.13.0" - debug "^4.1.1" - lodash.debounce "^4.0.8" - resolve "^1.14.2" - semver "^6.1.2" - -"@babel/helper-explode-assignable-expression@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz#8aa72e708205c7bb643e45c73b4386cdf2a1f645" - integrity sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-function-name@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz#89e2c474972f15d8e233b52ee8c480e2cfcd50c4" - integrity sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ== - dependencies: - "@babel/helper-get-function-arity" "^7.14.5" - "@babel/template" "^7.14.5" - "@babel/types" "^7.14.5" - -"@babel/helper-get-function-arity@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz#25fbfa579b0937eee1f3b805ece4ce398c431815" - integrity sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-hoist-variables@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz#e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d" - integrity sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-member-expression-to-functions@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.5.tgz#d5c70e4ad13b402c95156c7a53568f504e2fb7b8" - integrity sha512-UxUeEYPrqH1Q/k0yRku1JE7dyfyehNwT6SVkMHvYvPDv4+uu627VXBckVj891BO8ruKBkiDoGnZf4qPDD8abDQ== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz#6d1a44df6a38c957aa7c312da076429f11b422f3" - integrity sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-module-transforms@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz#7de42f10d789b423eb902ebd24031ca77cb1e10e" - integrity sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA== - dependencies: - "@babel/helper-module-imports" "^7.14.5" - "@babel/helper-replace-supers" "^7.14.5" - "@babel/helper-simple-access" "^7.14.5" - "@babel/helper-split-export-declaration" "^7.14.5" - "@babel/helper-validator-identifier" "^7.14.5" - "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" - -"@babel/helper-module-transforms@^7.14.8": - version "7.14.8" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.8.tgz#d4279f7e3fd5f4d5d342d833af36d4dd87d7dc49" - integrity sha512-RyE+NFOjXn5A9YU1dkpeBaduagTlZ0+fccnIcAGbv1KGUlReBj7utF7oEth8IdIBQPcux0DDgW5MFBH2xu9KcA== - dependencies: - "@babel/helper-module-imports" "^7.14.5" - "@babel/helper-replace-supers" "^7.14.5" - "@babel/helper-simple-access" "^7.14.8" - "@babel/helper-split-export-declaration" "^7.14.5" - "@babel/helper-validator-identifier" "^7.14.8" - "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.8" - "@babel/types" "^7.14.8" - -"@babel/helper-optimise-call-expression@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz#f27395a8619e0665b3f0364cddb41c25d71b499c" - integrity sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9" - integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ== - -"@babel/helper-remap-async-to-generator@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz#51439c913612958f54a987a4ffc9ee587a2045d6" - integrity sha512-rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A== - dependencies: - "@babel/helper-annotate-as-pure" "^7.14.5" - "@babel/helper-wrap-function" "^7.14.5" - "@babel/types" "^7.14.5" - -"@babel/helper-replace-supers@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz#0ecc0b03c41cd567b4024ea016134c28414abb94" - integrity sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow== - dependencies: - "@babel/helper-member-expression-to-functions" "^7.14.5" - "@babel/helper-optimise-call-expression" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" - -"@babel/helper-simple-access@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz#66ea85cf53ba0b4e588ba77fc813f53abcaa41c4" - integrity sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-simple-access@^7.14.8": - version "7.14.8" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz#82e1fec0644a7e775c74d305f212c39f8fe73924" - integrity sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg== - dependencies: - "@babel/types" "^7.14.8" - -"@babel/helper-skip-transparent-expression-wrappers@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz#96f486ac050ca9f44b009fbe5b7d394cab3a0ee4" - integrity sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-split-export-declaration@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz#22b23a54ef51c2b7605d851930c1976dd0bc693a" - integrity sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-validator-identifier@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8" - integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg== - -"@babel/helper-validator-identifier@^7.14.8": - version "7.14.8" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.8.tgz#32be33a756f29e278a0d644fa08a2c9e0f88a34c" - integrity sha512-ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow== - -"@babel/helper-validator-option@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" - integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== - -"@babel/helper-wrap-function@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz#5919d115bf0fe328b8a5d63bcb610f51601f2bff" - integrity sha512-YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ== - dependencies: - "@babel/helper-function-name" "^7.14.5" - "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" - -"@babel/helpers@^7.14.6": - version "7.14.6" - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.6.tgz#5b58306b95f1b47e2a0199434fa8658fa6c21635" - integrity sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA== - dependencies: - "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" - -"@babel/helpers@^7.14.8": - version "7.14.8" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.8.tgz#839f88f463025886cff7f85a35297007e2da1b77" - integrity sha512-ZRDmI56pnV+p1dH6d+UN6GINGz7Krps3+270qqI9UJ4wxYThfAIcI5i7j5vXC4FJ3Wap+S9qcebxeYiqn87DZw== - dependencies: - "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.8" - "@babel/types" "^7.14.8" - -"@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" - integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== - dependencies: - "@babel/helper-validator-identifier" "^7.14.5" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.12.0", "@babel/parser@^7.13.9", "@babel/parser@^7.14.5", "@babel/parser@^7.14.6", "@babel/parser@^7.6.0", "@babel/parser@^7.7.2", "@babel/parser@^7.9.6": - version "7.14.6" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.14.6.tgz#d85cc68ca3cac84eae384c06f032921f5227f4b2" - integrity sha512-oG0ej7efjEXxb4UgE+klVx+3j4MVo+A2vCzm7OUN4CLo6WhQ+vSOD2yJ8m7B+DghObxtLxt3EfgMWpq+AsWehQ== - -"@babel/parser@^7.14.8": - version "7.14.8" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.8.tgz#66fd41666b2d7b840bd5ace7f7416d5ac60208d4" - integrity sha512-syoCQFOoo/fzkWDeM0dLEZi5xqurb5vuyzwIMNZRNun+N/9A4cUZeQaE7dTrB8jGaKuJRBtEOajtnmw0I5hvvA== - -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz#4b467302e1548ed3b1be43beae2cc9cf45e0bb7e" - integrity sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" - "@babel/plugin-proposal-optional-chaining" "^7.14.5" - -"@babel/plugin-proposal-async-generator-functions@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.5.tgz#4024990e3dd74181f4f426ea657769ff49a2df39" - integrity sha512-tbD/CG3l43FIXxmu4a7RBe4zH7MLJ+S/lFowPFO7HetS2hyOZ/0nnnznegDuzFzfkyQYTxqdTH/hKmuBngaDAA== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/helper-remap-async-to-generator" "^7.14.5" - "@babel/plugin-syntax-async-generators" "^7.8.4" - -"@babel/plugin-proposal-class-properties@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz#40d1ee140c5b1e31a350f4f5eed945096559b42e" - integrity sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-proposal-class-static-block@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz#158e9e10d449c3849ef3ecde94a03d9f1841b681" - integrity sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-proposal-dynamic-import@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz#0c6617df461c0c1f8fff3b47cd59772360101d2c" - integrity sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - -"@babel/plugin-proposal-export-namespace-from@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz#dbad244310ce6ccd083072167d8cea83a52faf76" - integrity sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - -"@babel/plugin-proposal-json-strings@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz#38de60db362e83a3d8c944ac858ddf9f0c2239eb" - integrity sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/plugin-syntax-json-strings" "^7.8.3" - -"@babel/plugin-proposal-logical-assignment-operators@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz#6e6229c2a99b02ab2915f82571e0cc646a40c738" - integrity sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz#ee38589ce00e2cc59b299ec3ea406fcd3a0fdaf6" - integrity sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - -"@babel/plugin-proposal-numeric-separator@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz#83631bf33d9a51df184c2102a069ac0c58c05f18" - integrity sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-proposal-object-rest-spread@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.5.tgz#e581d5ccdfa187ea6ed73f56c6a21c1580b90fbf" - integrity sha512-VzMyY6PWNPPT3pxc5hi9LloKNr4SSrVCg7Yr6aZpW4Ym07r7KqSU/QXYwjXLVxqwSv0t/XSXkFoKBPUkZ8vb2A== - dependencies: - "@babel/compat-data" "^7.14.5" - "@babel/helper-compilation-targets" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.14.5" - -"@babel/plugin-proposal-optional-catch-binding@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz#939dd6eddeff3a67fdf7b3f044b5347262598c3c" - integrity sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - -"@babel/plugin-proposal-optional-chaining@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz#fa83651e60a360e3f13797eef00b8d519695b603" - integrity sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - -"@babel/plugin-proposal-private-methods@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz#37446495996b2945f30f5be5b60d5e2aa4f5792d" - integrity sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-proposal-private-property-in-object@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz#9f65a4d0493a940b4c01f8aa9d3f1894a587f636" - integrity sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q== - dependencies: - "@babel/helper-annotate-as-pure" "^7.14.5" - "@babel/helper-create-class-features-plugin" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - -"@babel/plugin-proposal-unicode-property-regex@^7.14.5", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz#0f95ee0e757a5d647f378daa0eca7e93faa8bbe8" - integrity sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-bigint@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" - integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": - version "7.12.13" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-class-static-block@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" - integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-dynamic-import@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" - integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-export-namespace-from@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" - integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" - integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-jsx@^7.0.0": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz#000e2e25d8673cce49300517a3eda44c263e4201" - integrity sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-private-property-in-object@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" - integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-typescript@^7.14.5", "@babel/plugin-syntax-typescript@^7.7.2": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz#b82c6ce471b165b5ce420cf92914d6fb46225716" - integrity sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-arrow-functions@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz#f7187d9588a768dd080bf4c9ffe117ea62f7862a" - integrity sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-async-to-generator@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz#72c789084d8f2094acb945633943ef8443d39e67" - integrity sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA== - dependencies: - "@babel/helper-module-imports" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/helper-remap-async-to-generator" "^7.14.5" - -"@babel/plugin-transform-block-scoped-functions@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz#e48641d999d4bc157a67ef336aeb54bc44fd3ad4" - integrity sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-block-scoping@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz#8cc63e61e50f42e078e6f09be775a75f23ef9939" - integrity sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-classes@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz#0e98e82097b38550b03b483f9b51a78de0acb2cf" - integrity sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.14.5" - "@babel/helper-function-name" "^7.14.5" - "@babel/helper-optimise-call-expression" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/helper-replace-supers" "^7.14.5" - "@babel/helper-split-export-declaration" "^7.14.5" - globals "^11.1.0" - -"@babel/plugin-transform-computed-properties@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz#1b9d78987420d11223d41195461cc43b974b204f" - integrity sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-destructuring@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.5.tgz#d32ad19ff1a6da1e861dc62720d80d9776e3bf35" - integrity sha512-wU9tYisEbRMxqDezKUqC9GleLycCRoUsai9ddlsq54r8QRLaeEhc+d+9DqCG+kV9W2GgQjTZESPTpn5bAFMDww== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-dotall-regex@^7.14.5", "@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz#2f6bf76e46bdf8043b4e7e16cf24532629ba0c7a" - integrity sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-duplicate-keys@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz#365a4844881bdf1501e3a9f0270e7f0f91177954" - integrity sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-exponentiation-operator@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz#5154b8dd6a3dfe6d90923d61724bd3deeb90b493" - integrity sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-for-of@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz#dae384613de8f77c196a8869cbf602a44f7fc0eb" - integrity sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-function-name@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz#e81c65ecb900746d7f31802f6bed1f52d915d6f2" - integrity sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ== - dependencies: - "@babel/helper-function-name" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-literals@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz#41d06c7ff5d4d09e3cf4587bd3ecf3930c730f78" - integrity sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-member-expression-literals@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz#b39cd5212a2bf235a617d320ec2b48bcc091b8a7" - integrity sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-modules-amd@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz#4fd9ce7e3411cb8b83848480b7041d83004858f7" - integrity sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g== - dependencies: - "@babel/helper-module-transforms" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - babel-plugin-dynamic-import-node "^2.3.3" - -"@babel/plugin-transform-modules-commonjs@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz#7aaee0ea98283de94da98b28f8c35701429dad97" - integrity sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A== - dependencies: - "@babel/helper-module-transforms" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/helper-simple-access" "^7.14.5" - babel-plugin-dynamic-import-node "^2.3.3" - -"@babel/plugin-transform-modules-systemjs@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz#c75342ef8b30dcde4295d3401aae24e65638ed29" - integrity sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA== - dependencies: - "@babel/helper-hoist-variables" "^7.14.5" - "@babel/helper-module-transforms" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/helper-validator-identifier" "^7.14.5" - babel-plugin-dynamic-import-node "^2.3.3" - -"@babel/plugin-transform-modules-umd@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz#fb662dfee697cce274a7cda525190a79096aa6e0" - integrity sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA== - dependencies: - "@babel/helper-module-transforms" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-named-capturing-groups-regex@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.5.tgz#d537e8ee083ee6f6aa4f4eef9d2081d555746e4c" - integrity sha512-+Xe5+6MWFo311U8SchgeX5c1+lJM+eZDBZgD+tvXu9VVQPXwwVzeManMMjYX6xw2HczngfOSZjoFYKwdeB/Jvw== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.14.5" - -"@babel/plugin-transform-new-target@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz#31bdae8b925dc84076ebfcd2a9940143aed7dbf8" - integrity sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-object-super@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz#d0b5faeac9e98597a161a9cf78c527ed934cdc45" - integrity sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/helper-replace-supers" "^7.14.5" - -"@babel/plugin-transform-parameters@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz#49662e86a1f3ddccac6363a7dfb1ff0a158afeb3" - integrity sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-property-literals@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz#0ddbaa1f83db3606f1cdf4846fa1dfb473458b34" - integrity sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-regenerator@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz#9676fd5707ed28f522727c5b3c0aa8544440b04f" - integrity sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg== - dependencies: - regenerator-transform "^0.14.2" - -"@babel/plugin-transform-reserved-words@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz#c44589b661cfdbef8d4300dcc7469dffa92f8304" - integrity sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-shorthand-properties@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz#97f13855f1409338d8cadcbaca670ad79e091a58" - integrity sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-spread@^7.14.5": - version "7.14.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz#6bd40e57fe7de94aa904851963b5616652f73144" - integrity sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" - -"@babel/plugin-transform-sticky-regex@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz#5b617542675e8b7761294381f3c28c633f40aeb9" - integrity sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-template-literals@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz#a5f2bc233937d8453885dc736bdd8d9ffabf3d93" - integrity sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-typeof-symbol@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz#39af2739e989a2bd291bf6b53f16981423d457d4" - integrity sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-typescript@^7.14.6": - version "7.14.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.6.tgz#6e9c2d98da2507ebe0a883b100cde3c7279df36c" - integrity sha512-XlTdBq7Awr4FYIzqhmYY80WN0V0azF74DMPyFqVHBvf81ZUgc4X7ZOpx6O8eLDK6iM5cCQzeyJw0ynTaefixRA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.14.6" - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/plugin-syntax-typescript" "^7.14.5" - -"@babel/plugin-transform-unicode-escapes@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz#9d4bd2a681e3c5d7acf4f57fa9e51175d91d0c6b" - integrity sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-transform-unicode-regex@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz#4cd09b6c8425dd81255c7ceb3fb1836e7414382e" - integrity sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/preset-env@^7.11.0": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.5.tgz#c0c84e763661fd0e74292c3d511cb33b0c668997" - integrity sha512-ci6TsS0bjrdPpWGnQ+m4f+JSSzDKlckqKIJJt9UZ/+g7Zz9k0N8lYU8IeLg/01o2h8LyNZDMLGgRLDTxpudLsA== - dependencies: - "@babel/compat-data" "^7.14.5" - "@babel/helper-compilation-targets" "^7.14.5" - "@babel/helper-plugin-utils" "^7.14.5" - "@babel/helper-validator-option" "^7.14.5" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.14.5" - "@babel/plugin-proposal-async-generator-functions" "^7.14.5" - "@babel/plugin-proposal-class-properties" "^7.14.5" - "@babel/plugin-proposal-class-static-block" "^7.14.5" - "@babel/plugin-proposal-dynamic-import" "^7.14.5" - "@babel/plugin-proposal-export-namespace-from" "^7.14.5" - "@babel/plugin-proposal-json-strings" "^7.14.5" - "@babel/plugin-proposal-logical-assignment-operators" "^7.14.5" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.5" - "@babel/plugin-proposal-numeric-separator" "^7.14.5" - "@babel/plugin-proposal-object-rest-spread" "^7.14.5" - "@babel/plugin-proposal-optional-catch-binding" "^7.14.5" - "@babel/plugin-proposal-optional-chaining" "^7.14.5" - "@babel/plugin-proposal-private-methods" "^7.14.5" - "@babel/plugin-proposal-private-property-in-object" "^7.14.5" - "@babel/plugin-proposal-unicode-property-regex" "^7.14.5" - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-class-properties" "^7.12.13" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-transform-arrow-functions" "^7.14.5" - "@babel/plugin-transform-async-to-generator" "^7.14.5" - "@babel/plugin-transform-block-scoped-functions" "^7.14.5" - "@babel/plugin-transform-block-scoping" "^7.14.5" - "@babel/plugin-transform-classes" "^7.14.5" - "@babel/plugin-transform-computed-properties" "^7.14.5" - "@babel/plugin-transform-destructuring" "^7.14.5" - "@babel/plugin-transform-dotall-regex" "^7.14.5" - "@babel/plugin-transform-duplicate-keys" "^7.14.5" - "@babel/plugin-transform-exponentiation-operator" "^7.14.5" - "@babel/plugin-transform-for-of" "^7.14.5" - "@babel/plugin-transform-function-name" "^7.14.5" - "@babel/plugin-transform-literals" "^7.14.5" - "@babel/plugin-transform-member-expression-literals" "^7.14.5" - "@babel/plugin-transform-modules-amd" "^7.14.5" - "@babel/plugin-transform-modules-commonjs" "^7.14.5" - "@babel/plugin-transform-modules-systemjs" "^7.14.5" - "@babel/plugin-transform-modules-umd" "^7.14.5" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.14.5" - "@babel/plugin-transform-new-target" "^7.14.5" - "@babel/plugin-transform-object-super" "^7.14.5" - "@babel/plugin-transform-parameters" "^7.14.5" - "@babel/plugin-transform-property-literals" "^7.14.5" - "@babel/plugin-transform-regenerator" "^7.14.5" - "@babel/plugin-transform-reserved-words" "^7.14.5" - "@babel/plugin-transform-shorthand-properties" "^7.14.5" - "@babel/plugin-transform-spread" "^7.14.5" - "@babel/plugin-transform-sticky-regex" "^7.14.5" - "@babel/plugin-transform-template-literals" "^7.14.5" - "@babel/plugin-transform-typeof-symbol" "^7.14.5" - "@babel/plugin-transform-unicode-escapes" "^7.14.5" - "@babel/plugin-transform-unicode-regex" "^7.14.5" - "@babel/preset-modules" "^0.1.4" - "@babel/types" "^7.14.5" - babel-plugin-polyfill-corejs2 "^0.2.2" - babel-plugin-polyfill-corejs3 "^0.2.2" - babel-plugin-polyfill-regenerator "^0.2.2" - core-js-compat "^3.14.0" - semver "^6.3.0" - -"@babel/preset-modules@^0.1.4": - version "0.1.4" - resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" - integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-transform-dotall-regex" "^7.4.4" - "@babel/types" "^7.4.4" - esutils "^2.0.2" - -"@babel/runtime@^7.10.5", "@babel/runtime@^7.11.2", "@babel/runtime@^7.8.4": - version "7.14.6" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz#535203bc0892efc7dec60bdc27b2ecf6e409062d" - integrity sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/standalone@^7.14.9": - version "7.14.9" - resolved "https://registry.npmjs.org/@babel/standalone/-/standalone-7.14.9.tgz#b9a6fa913271a153ca232fdd0f2aa5e3c951d9d5" - integrity sha512-EEAwahkk3VW8WOlEAd3xtKN4tVDcgbSiDCc50qD4IgjyMowI2mvLnIZbRpZU5G/yZBGZsEPg7FssT/+yLFBlQQ== - -"@babel/template@^7.0.0", "@babel/template@^7.14.5", "@babel/template@^7.3.3": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f4" - integrity sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g== - dependencies: - "@babel/code-frame" "^7.14.5" - "@babel/parser" "^7.14.5" - "@babel/types" "^7.14.5" - -"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.7.2": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.5.tgz#c111b0f58afab4fea3d3385a406f692748c59870" - integrity sha512-G3BiS15vevepdmFqmUc9X+64y0viZYygubAMO8SvBmKARuF6CPSZtH4Ng9vi/lrWlZFGe3FWdXNy835akH8Glg== - dependencies: - "@babel/code-frame" "^7.14.5" - "@babel/generator" "^7.14.5" - "@babel/helper-function-name" "^7.14.5" - "@babel/helper-hoist-variables" "^7.14.5" - "@babel/helper-split-export-declaration" "^7.14.5" - "@babel/parser" "^7.14.5" - "@babel/types" "^7.14.5" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/traverse@^7.14.8": - version "7.14.8" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.8.tgz#c0253f02677c5de1a8ff9df6b0aacbec7da1a8ce" - integrity sha512-kexHhzCljJcFNn1KYAQ6A5wxMRzq9ebYpEDV4+WdNyr3i7O44tanbDOR/xjiG2F3sllan+LgwK+7OMk0EmydHg== - dependencies: - "@babel/code-frame" "^7.14.5" - "@babel/generator" "^7.14.8" - "@babel/helper-function-name" "^7.14.5" - "@babel/helper-hoist-variables" "^7.14.5" - "@babel/helper-split-export-declaration" "^7.14.5" - "@babel/parser" "^7.14.8" - "@babel/types" "^7.14.8" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/types@^7.0.0", "@babel/types@^7.12.0", "@babel/types@^7.13.0", "@babel/types@^7.14.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz#3bb997ba829a2104cedb20689c4a5b8121d383ff" - integrity sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg== - dependencies: - "@babel/helper-validator-identifier" "^7.14.5" - to-fast-properties "^2.0.0" - -"@babel/types@^7.14.8": - version "7.14.8" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.8.tgz#38109de8fcadc06415fbd9b74df0065d4d41c728" - integrity sha512-iob4soQa7dZw8nodR/KlOQkPh9S4I8RwCxwRIFuiMRYjOzH/KJzdUfDgz6cGi5dDaclXF4P2PAhCdrBJNIg68Q== - dependencies: - "@babel/helper-validator-identifier" "^7.14.8" - to-fast-properties "^2.0.0" - -"@bcoe/v8-coverage@^0.2.3": - version "0.2.3" - resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" - integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== - -"@commitlint/cli@^13.1.0": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-13.1.0.tgz#3608bb24dbef41aaa0729ffe65c7f9b57409626a" - integrity sha512-xN/uNYWtGTva5OMSd+xA6e6/c2jk8av7MUbdd6w2cw89u6z3fAWoyiH87X0ewdSMNYmW/6B3L/2dIVGHRDID5w== - dependencies: - "@commitlint/format" "^13.1.0" - "@commitlint/lint" "^13.1.0" - "@commitlint/load" "^13.1.0" - "@commitlint/read" "^13.1.0" - "@commitlint/types" "^13.1.0" - lodash "^4.17.19" - resolve-from "5.0.0" - resolve-global "1.0.0" - yargs "^17.0.0" - -"@commitlint/config-conventional@^13.1.0": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-13.1.0.tgz#f02871d50c73db0a31b777231f49203b964d9d59" - integrity sha512-zukJXqdr6jtMiVRy3tTHmwgKcUMGfqKDEskRigc5W3k2aYF4gBAtCEjMAJGZgSQE4DMcHeok0pEV2ANmTpb0cw== - dependencies: - conventional-changelog-conventionalcommits "^4.3.1" - -"@commitlint/ensure@^13.1.0": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-13.1.0.tgz#057a325b54f104cbeed2a26bacb5eec29298e7d5" - integrity sha512-NRGyjOdZQnlYwm9it//BZJ2Vm+4x7G9rEnHpLCvNKYY0c6RA8Qf7hamLAB8dWO12RLuFt06JaOpHZoTt/gHutA== - dependencies: - "@commitlint/types" "^13.1.0" - lodash "^4.17.19" - -"@commitlint/execute-rule@^12.1.4": - version "12.1.4" - resolved "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-12.1.4.tgz#9973b02e9779adbf1522ae9ac207a4815ec73de1" - integrity sha512-h2S1j8SXyNeABb27q2Ok2vD1WfxJiXvOttKuRA9Or7LN6OQoC/KtT3844CIhhWNteNMu/wE0gkTqGxDVAnJiHg== - -"@commitlint/execute-rule@^13.0.0": - version "13.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-13.0.0.tgz#7823303b82b5d86dac46e67cfa005f4433476981" - integrity sha512-lBz2bJhNAgkkU/rFMAw3XBNujbxhxlaFHY3lfKB/MxpAa+pIfmWB3ig9i1VKe0wCvujk02O0WiMleNaRn2KJqw== - -"@commitlint/format@^13.1.0": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-13.1.0.tgz#915570d958d83bae5fa645de6b1e6c9dd1362ec0" - integrity sha512-n46rYvzf+6Sm99TJjTLjJBkjm6JVcklt31lDO5Q+pCIV0NnJ4qIUcwa6wIL9a9Vqb1XzlMgtp27E0zyYArkvSg== - dependencies: - "@commitlint/types" "^13.1.0" - chalk "^4.0.0" - -"@commitlint/is-ignored@^13.1.0": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-13.1.0.tgz#88a5dfbc8f9ea91e860323af6681aa131322b0c4" - integrity sha512-P6zenLE5Tn3FTNjRzmL9+/KooTXEI0khA2TmUbuei9KiycemeO4q7Xk7w7aXwFPNAbN0O9oI7z3z7cFpzKJWmQ== - dependencies: - "@commitlint/types" "^13.1.0" - semver "7.3.5" - -"@commitlint/lint@^13.1.0": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-13.1.0.tgz#ea56ce0970f9b75ffe7bd2c9968f4f1d4461ba3a" - integrity sha512-qH9AYSQDDTaSWSdtOvB3G1RdPpcYSgddAdFYqpFewlKQ1GJj/L+sM7vwqCG7/ip6AiM04Sry1sgmFzaEoFREUA== - dependencies: - "@commitlint/is-ignored" "^13.1.0" - "@commitlint/parse" "^13.1.0" - "@commitlint/rules" "^13.1.0" - "@commitlint/types" "^13.1.0" - -"@commitlint/load@>6.1.1": - version "12.1.4" - resolved "https://registry.npmjs.org/@commitlint/load/-/load-12.1.4.tgz#e3c2dbc0e7d8d928f57a6878bd7219909fc0acab" - integrity sha512-Keszi0IOjRzKfxT+qES/n+KZyLrxy79RQz8wWgssCboYjKEp+wC+fLCgbiMCYjI5k31CIzIOq/16J7Ycr0C0EA== - dependencies: - "@commitlint/execute-rule" "^12.1.4" - "@commitlint/resolve-extends" "^12.1.4" - "@commitlint/types" "^12.1.4" - chalk "^4.0.0" - cosmiconfig "^7.0.0" - lodash "^4.17.19" - resolve-from "^5.0.0" - -"@commitlint/load@^13.1.0": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-13.1.0.tgz#d6c9b547551f2216586d6c1964d93f92e7b04277" - integrity sha512-zlZbjJCWnWmBOSwTXis8H7I6pYk6JbDwOCuARA6B9Y/qt2PD+NCo0E/7EuaaFoxjHl+o56QR5QttuMBrf+BJzg== - dependencies: - "@commitlint/execute-rule" "^13.0.0" - "@commitlint/resolve-extends" "^13.0.0" - "@commitlint/types" "^13.1.0" - chalk "^4.0.0" - cosmiconfig "^7.0.0" - lodash "^4.17.19" - resolve-from "^5.0.0" - -"@commitlint/message@^13.0.0": - version "13.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-13.0.0.tgz#4f8d56b59e9cee8b37b8db6b48c26d7faf33762f" - integrity sha512-W/pxhesVEk8747BEWJ+VGQ9ILHmCV27/pEwJ0hGny1wqVquUR8SxvScRCbUjHCB1YtWX4dEnOPXOS9CLH/CX7A== - -"@commitlint/parse@^13.1.0": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-13.1.0.tgz#b88764be36527a468531e1b8dd2d95693ff9ba34" - integrity sha512-xFybZcqBiKVjt6vTStvQkySWEUYPI0AcO4QQELyy29o8EzYZqWkhUfrb7K61fWiHsplWL1iL6F3qCLoxSgTcrg== - dependencies: - "@commitlint/types" "^13.1.0" - conventional-changelog-angular "^5.0.11" - conventional-commits-parser "^3.0.0" - -"@commitlint/read@^13.1.0": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-13.1.0.tgz#ccb65426b1228b8a598ed36966722d19756eea41" - integrity sha512-NrVe23GMKyL6i1yDJD8IpqCBzhzoS3wtLfDj8QBzc01Ov1cYBmDojzvBklypGb+MLJM1NbzmRM4PR5pNX0U/NQ== - dependencies: - "@commitlint/top-level" "^13.0.0" - "@commitlint/types" "^13.1.0" - fs-extra "^10.0.0" - git-raw-commits "^2.0.0" - -"@commitlint/resolve-extends@^12.1.4": - version "12.1.4" - resolved "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-12.1.4.tgz#e758ed7dcdf942618b9f603a7c28a640f6a0802a" - integrity sha512-R9CoUtsXLd6KSCfsZly04grsH6JVnWFmVtWgWs1KdDpdV+G3TSs37tColMFqglpkx3dsWu8dsPD56+D9YnJfqg== - dependencies: - import-fresh "^3.0.0" - lodash "^4.17.19" - resolve-from "^5.0.0" - resolve-global "^1.0.0" - -"@commitlint/resolve-extends@^13.0.0": - version "13.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-13.0.0.tgz#a38fcd2474483bf9ec6e1e901b27b8a23abe7d73" - integrity sha512-1SyaE+UOsYTkQlTPUOoj4NwxQhGFtYildVS/d0TJuK8a9uAJLw7bhCLH2PEeH5cC2D1do4Eqhx/3bLDrSLH3hg== - dependencies: - import-fresh "^3.0.0" - lodash "^4.17.19" - resolve-from "^5.0.0" - resolve-global "^1.0.0" - -"@commitlint/rules@^13.1.0": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-13.1.0.tgz#04f5aaf952884364ebf4e899ec440e3985f0e580" - integrity sha512-b6F+vBqEXsHVghrhomG0Y6YJimHZqkzZ0n5QEpk03dpBXH2OnsezpTw5e+GvbyYCc7PutGbYVQkytuv+7xCxYA== - dependencies: - "@commitlint/ensure" "^13.1.0" - "@commitlint/message" "^13.0.0" - "@commitlint/to-lines" "^13.0.0" - "@commitlint/types" "^13.1.0" - execa "^5.0.0" - -"@commitlint/to-lines@^13.0.0": - version "13.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-13.0.0.tgz#5937dd287e3a4f984580ea94bdb994132169a780" - integrity sha512-mzxWwCio1M4/kG9/69TTYqrraQ66LmtJCYTzAZdZ2eJX3I5w52pSjyP/DJzAUVmmJCYf2Kw3s+RtNVShtnZ+Rw== - -"@commitlint/top-level@^13.0.0": - version "13.0.0" - resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-13.0.0.tgz#f8e1d1425240cd72c600e4da5716418c4ea0bda2" - integrity sha512-baBy3MZBF28sR93yFezd4a5TdHsbXaakeladfHK9dOcGdXo9oQe3GS5hP3BmlN680D6AiQSN7QPgEJgrNUWUCg== - dependencies: - find-up "^5.0.0" - -"@commitlint/types@^12.1.4": - version "12.1.4" - resolved "https://registry.npmjs.org/@commitlint/types/-/types-12.1.4.tgz#9618a5dc8991fb58e6de6ed89d7bf712fa74ba7e" - integrity sha512-KRIjdnWNUx6ywz+SJvjmNCbQKcKP6KArhjZhY2l+CWKxak0d77SOjggkMwFTiSgLODOwmuLTbarR2ZfWPiPMlw== - dependencies: - chalk "^4.0.0" - -"@commitlint/types@^13.1.0": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-13.1.0.tgz#12cfb6e932372b1816af8900e2d10694add28191" - integrity sha512-zcVjuT+OfKt8h91vhBxt05RMcTGEx6DM7Q9QZeuMbXFk6xgbsSEDMMapbJPA1bCZ81fa/1OQBijSYPrKvtt06g== - dependencies: - chalk "^4.0.0" - -"@cspotcode/source-map-consumer@0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz#33bf4b7b39c178821606f669bbc447a6a629786b" - integrity sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg== - -"@cspotcode/source-map-support@0.6.1": - version "0.6.1" - resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.6.1.tgz#118511f316e2e87ee4294761868e254d3da47960" - integrity sha512-DX3Z+T5dt1ockmPdobJS/FAsQPW4V4SrWEhD2iYQT2Cb2tQsiMnYxrcUH9By/Z3B+v0S5LMBkQtV/XOBbpLEOg== - dependencies: - "@cspotcode/source-map-consumer" "0.8.0" - -"@ctrl/tinycolor@^3.3.1": - version "3.4.0" - resolved "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.4.0.tgz#c3c5ae543c897caa9c2a68630bed355be5f9990f" - integrity sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ== - -"@emmetio/abbreviation@^2.2.2": - version "2.2.2" - resolved "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.2.2.tgz#746762fd9e7a8c2ea604f580c62e3cfe250e6989" - integrity sha512-TtE/dBnkTCct8+LntkqVrwqQao6EnPAs1YN3cUgxOxTaBlesBCY37ROUAVZrRlG64GNnVShdl/b70RfAI3w5lw== - dependencies: - "@emmetio/scanner" "^1.0.0" - -"@emmetio/css-abbreviation@^2.1.4": - version "2.1.4" - resolved "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.4.tgz#90362e8a1122ce3b76f6c3157907d30182f53f54" - integrity sha512-qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw== - dependencies: - "@emmetio/scanner" "^1.0.0" - -"@emmetio/scanner@^1.0.0": - version "1.0.0" - resolved "https://registry.npmjs.org/@emmetio/scanner/-/scanner-1.0.0.tgz#065b2af6233fe7474d44823e3deb89724af42b5f" - integrity sha512-8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA== - -"@eslint/eslintrc@^0.4.3": - version "0.4.3" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" - integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw== - dependencies: - ajv "^6.12.4" - debug "^4.1.1" - espree "^7.3.0" - globals "^13.9.0" - ignore "^4.0.6" - import-fresh "^3.2.1" - js-yaml "^3.13.1" - minimatch "^3.0.4" - strip-json-comments "^3.1.1" - -"@hapi/address@^2.1.2": - version "2.1.4" - resolved "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5" - integrity sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ== - -"@hapi/formula@^1.2.0": - version "1.2.0" - resolved "https://registry.npmjs.org/@hapi/formula/-/formula-1.2.0.tgz#994649c7fea1a90b91a0a1e6d983523f680e10cd" - integrity sha512-UFbtbGPjstz0eWHb+ga/GM3Z9EzqKXFWIbSOFURU0A/Gku0Bky4bCk9/h//K2Xr3IrCfjFNhMm4jyZ5dbCewGA== - -"@hapi/hoek@^8.2.4", "@hapi/hoek@^8.3.0": - version "8.5.1" - resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz#fde96064ca446dec8c55a8c2f130957b070c6e06" - integrity sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow== - -"@hapi/joi@^16.1.8": - version "16.1.8" - resolved "https://registry.npmjs.org/@hapi/joi/-/joi-16.1.8.tgz#84c1f126269489871ad4e2decc786e0adef06839" - integrity sha512-wAsVvTPe+FwSrsAurNt5vkg3zo+TblvC5Bb1zMVK6SJzZqw9UrJnexxR+76cpePmtUZKHAPxcQ2Bf7oVHyahhg== - dependencies: - "@hapi/address" "^2.1.2" - "@hapi/formula" "^1.2.0" - "@hapi/hoek" "^8.2.4" - "@hapi/pinpoint" "^1.0.2" - "@hapi/topo" "^3.1.3" - -"@hapi/pinpoint@^1.0.2": - version "1.0.2" - resolved "https://registry.npmjs.org/@hapi/pinpoint/-/pinpoint-1.0.2.tgz#025b7a36dbbf4d35bf1acd071c26b20ef41e0d13" - integrity sha512-dtXC/WkZBfC5vxscazuiJ6iq4j9oNx1SHknmIr8hofarpKUZKmlUVYVIhNVzIEgK5Wrc4GMHL5lZtt1uS2flmQ== - -"@hapi/topo@^3.1.3": - version "3.1.6" - resolved "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz#68d935fa3eae7fdd5ab0d7f953f3205d8b2bfc29" - integrity sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ== - dependencies: - "@hapi/hoek" "^8.3.0" - -"@humanwhocodes/config-array@^0.5.0": - version "0.5.0" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" - integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== - dependencies: - "@humanwhocodes/object-schema" "^1.2.0" - debug "^4.1.1" - minimatch "^3.0.4" - -"@humanwhocodes/object-schema@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz#87de7af9c231826fdd68ac7258f77c429e0e5fcf" - integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w== - -"@iconify/iconify@2.0.0-rc.6": - version "2.0.0-rc.6" - resolved "https://registry.npmjs.org/@iconify/iconify/-/iconify-2.0.0-rc.6.tgz#e3f5376b63b441dcb3696317784b98e2e678cf46" - integrity sha512-pXvLXqLPQsjpDY4qbbyh5cPEtakTfWfQCAo6SdYNhYQzat+/0fbeEhScryqaketNAG0bT4/+deKezkJZTvbuSg== - dependencies: - cross-fetch "^3.0.6" - -"@iconify/iconify@>=2.0.0-rc.6": - version "2.0.2" - resolved "https://registry.npmjs.org/@iconify/iconify/-/iconify-2.0.2.tgz#8e8be6c8f20042ab69324bc6db6fc884be98b418" - integrity sha512-m3MDKXYRRsrVLZFFUkSaTv9/jTk0sLOlIhlmupj2/VhHnZt0i3ACyUD7rx/Vd5bLvtotrHaT5e/ZOLP7uiFmKQ== - dependencies: - cross-fetch "^3.0.6" - -"@iconify/iconify@^2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@iconify/iconify/-/iconify-2.0.3.tgz#1ae5bc81c2615b4d24ae495e6bdd6b5109f6e1dc" - integrity sha512-Ctjre38vIf0PjjU2joj+DheSDFajdLiZ7gNdttjsXPqB9yYrmqOIDe1ce8L8v0qO86kM05hF9lUMriQTlgiSPA== - dependencies: - cross-fetch "^3.0.6" - -"@iconify/json@^1.1.386": - version "1.1.386" - resolved "https://registry.yarnpkg.com/@iconify/json/-/json-1.1.386.tgz#e9e637ff15bb1f4b7cb4ae086026cc0b09313ac3" - integrity sha512-HXX6vwagakC7ASwJvSDQ7nROI0TZ/7E5Lv5M675SDTkmgJ8VO5dR09rU9csBqiVs37hdhZzTUscOiVyTkD208g== - -"@intlify/core-base@9.1.7": - version "9.1.7" - resolved "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-9.1.7.tgz#a454a492683690bc3d0abab82605ab5a23645bd0" - integrity sha512-q1W2j81xbHyfKrNcca/CeJyf0Bcx4u9UDu05l7AaiJbqOseTme2o2I3wp1hDDCtmC7k7HgX0sAygyHNJH9swuQ== - dependencies: - "@intlify/devtools-if" "9.1.7" - "@intlify/message-compiler" "9.1.7" - "@intlify/message-resolver" "9.1.7" - "@intlify/runtime" "9.1.7" - "@intlify/shared" "9.1.7" - "@intlify/vue-devtools" "9.1.7" - -"@intlify/devtools-if@9.1.7": - version "9.1.7" - resolved "https://registry.yarnpkg.com/@intlify/devtools-if/-/devtools-if-9.1.7.tgz#a5df0f33e06c3ead3e53b7f4d4b10a2d52309361" - integrity sha512-/DcN5FUySSkQhDqx5y1RvxfuCXO3Ot/dUEIOs472qbM7Hyb2qif+eXCnwHBzlI4+wEfQVT6L0PiM1a7Er/ro9g== - dependencies: - "@intlify/shared" "9.1.7" - -"@intlify/message-compiler@9.1.7": - version "9.1.7" - resolved "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.1.7.tgz#4663fcc2a190f3cc6970e12565c8d6f22beeb719" - integrity sha512-JZNkAhr3O7tnbdbRBcpYfqr/Ai26WTzX0K/lV8Y1KVdOIj/dGiamaffdWUdFiDXUnbJRNbPiOaKxy7Pwip3KxQ== - dependencies: - "@intlify/message-resolver" "9.1.7" - "@intlify/shared" "9.1.7" - source-map "0.6.1" - -"@intlify/message-resolver@9.1.7": - version "9.1.7" - resolved "https://registry.yarnpkg.com/@intlify/message-resolver/-/message-resolver-9.1.7.tgz#a95d13866c8de85784358039c8845668152e4162" - integrity sha512-WTK+OaXJYjyquLGhuCyDvU2WHkG+kXzXeHagmVFHn+s118Jf2143zzkLLUrapP5CtZ/csuyjmYg7b3xQRQAmvw== - -"@intlify/runtime@9.1.7": - version "9.1.7" - resolved "https://registry.yarnpkg.com/@intlify/runtime/-/runtime-9.1.7.tgz#67e0d6b2fd85a5b0b301a151c2f436f93154c3c6" - integrity sha512-QURPSlzhOVnRwS2XMGpCDsDkP42kfVBh94aAORxh/gVGzdgJip2vagrIFij/J69aEqdB476WJkMhVjP8VSHmiA== - dependencies: - "@intlify/message-compiler" "9.1.7" - "@intlify/message-resolver" "9.1.7" - "@intlify/shared" "9.1.7" - -"@intlify/shared@9.1.7": - version "9.1.7" - resolved "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.1.7.tgz#e7d8bc90cb59dc17dd7b4c85a73db16fcb7891fc" - integrity sha512-zt0zlUdalumvT9AjQNxPXA36UgOndUyvBMplh8uRZU0fhWHAwhnJTcf0NaG9Qvr8I1n3HPSs96+kLb/YdwTavQ== - -"@intlify/vue-devtools@9.1.7": - version "9.1.7" - resolved "https://registry.yarnpkg.com/@intlify/vue-devtools/-/vue-devtools-9.1.7.tgz#b08d39bb5f21ba9b1954eab9466e9408129425a7" - integrity sha512-DI5Wc0aOiohtBUGUkKAcryCWbbuaO4/PK4Pa/LaNCsFNxbtgR5qkIDmhBv9xVPYGTUhySXxaDDAMvOpBjhPJjw== - dependencies: - "@intlify/message-resolver" "9.1.7" - "@intlify/runtime" "9.1.7" - "@intlify/shared" "9.1.7" - -"@istanbuljs/load-nyc-config@^1.0.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" - integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== - dependencies: - camelcase "^5.3.1" - find-up "^4.1.0" - get-package-type "^0.1.0" - js-yaml "^3.13.1" - resolve-from "^5.0.0" - -"@istanbuljs/schema@^0.1.2": - version "0.1.3" - resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" - integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== - -"@jest/console@^27.0.6": - version "27.0.6" - resolved "https://registry.npmjs.org/@jest/console/-/console-27.0.6.tgz#3eb72ea80897495c3d73dd97aab7f26770e2260f" - integrity sha512-fMlIBocSHPZ3JxgWiDNW/KPj6s+YRd0hicb33IrmelCcjXo/pXPwvuiKFmZz+XuqI/1u7nbUK10zSsWL/1aegg== - dependencies: - "@jest/types" "^27.0.6" - "@types/node" "*" - chalk "^4.0.0" - jest-message-util "^27.0.6" - jest-util "^27.0.6" - slash "^3.0.0" - -"@jest/core@^27.0.6": - version "27.0.6" - resolved "https://registry.npmjs.org/@jest/core/-/core-27.0.6.tgz#c5f642727a0b3bf0f37c4b46c675372d0978d4a1" - integrity sha512-SsYBm3yhqOn5ZLJCtccaBcvD/ccTLCeuDv8U41WJH/V1MW5eKUkeMHT9U+Pw/v1m1AIWlnIW/eM2XzQr0rEmow== - dependencies: - "@jest/console" "^27.0.6" - "@jest/reporters" "^27.0.6" - "@jest/test-result" "^27.0.6" - "@jest/transform" "^27.0.6" - "@jest/types" "^27.0.6" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - emittery "^0.8.1" - exit "^0.1.2" - graceful-fs "^4.2.4" - jest-changed-files "^27.0.6" - jest-config "^27.0.6" - jest-haste-map "^27.0.6" - jest-message-util "^27.0.6" - jest-regex-util "^27.0.6" - jest-resolve "^27.0.6" - jest-resolve-dependencies "^27.0.6" - jest-runner "^27.0.6" - jest-runtime "^27.0.6" - jest-snapshot "^27.0.6" - jest-util "^27.0.6" - jest-validate "^27.0.6" - jest-watcher "^27.0.6" - micromatch "^4.0.4" - p-each-series "^2.1.0" - rimraf "^3.0.0" - slash "^3.0.0" - strip-ansi "^6.0.0" - -"@jest/environment@^27.0.6": - version "27.0.6" - resolved "https://registry.npmjs.org/@jest/environment/-/environment-27.0.6.tgz#ee293fe996db01d7d663b8108fa0e1ff436219d2" - integrity sha512-4XywtdhwZwCpPJ/qfAkqExRsERW+UaoSRStSHCCiQTUpoYdLukj+YJbQSFrZjhlUDRZeNiU9SFH0u7iNimdiIg== - dependencies: - "@jest/fake-timers" "^27.0.6" - "@jest/types" "^27.0.6" - "@types/node" "*" - jest-mock "^27.0.6" - -"@jest/fake-timers@^27.0.6": - version "27.0.6" - resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.0.6.tgz#cbad52f3fe6abe30e7acb8cd5fa3466b9588e3df" - integrity sha512-sqd+xTWtZ94l3yWDKnRTdvTeZ+A/V7SSKrxsrOKSqdyddb9CeNRF8fbhAU0D7ZJBpTTW2nbp6MftmKJDZfW2LQ== - dependencies: - "@jest/types" "^27.0.6" - "@sinonjs/fake-timers" "^7.0.2" - "@types/node" "*" - jest-message-util "^27.0.6" - jest-mock "^27.0.6" - jest-util "^27.0.6" - -"@jest/globals@^27.0.6": - version "27.0.6" - resolved "https://registry.npmjs.org/@jest/globals/-/globals-27.0.6.tgz#48e3903f99a4650673d8657334d13c9caf0e8f82" - integrity sha512-DdTGCP606rh9bjkdQ7VvChV18iS7q0IMJVP1piwTWyWskol4iqcVwthZmoJEf7obE1nc34OpIyoVGPeqLC+ryw== - dependencies: - "@jest/environment" "^27.0.6" - "@jest/types" "^27.0.6" - expect "^27.0.6" - -"@jest/reporters@^27.0.6": - version "27.0.6" - resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-27.0.6.tgz#91e7f2d98c002ad5df94d5b5167c1eb0b9fd5b00" - integrity sha512-TIkBt09Cb2gptji3yJXb3EE+eVltW6BjO7frO7NEfjI9vSIYoISi5R3aI3KpEDXlB1xwB+97NXIqz84qYeYsfA== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^27.0.6" - "@jest/test-result" "^27.0.6" - "@jest/transform" "^27.0.6" - "@jest/types" "^27.0.6" - chalk "^4.0.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.2" - graceful-fs "^4.2.4" - istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^4.0.3" - istanbul-lib-report "^3.0.0" - istanbul-lib-source-maps "^4.0.0" - istanbul-reports "^3.0.2" - jest-haste-map "^27.0.6" - jest-resolve "^27.0.6" - jest-util "^27.0.6" - jest-worker "^27.0.6" - slash "^3.0.0" - source-map "^0.6.0" - string-length "^4.0.1" - terminal-link "^2.0.0" - v8-to-istanbul "^8.0.0" - -"@jest/source-map@^27.0.6": - version "27.0.6" - resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-27.0.6.tgz#be9e9b93565d49b0548b86e232092491fb60551f" - integrity sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g== - dependencies: - callsites "^3.0.0" - graceful-fs "^4.2.4" - source-map "^0.6.0" - -"@jest/test-result@^27.0.6": - version "27.0.6" - resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-27.0.6.tgz#3fa42015a14e4fdede6acd042ce98c7f36627051" - integrity sha512-ja/pBOMTufjX4JLEauLxE3LQBPaI2YjGFtXexRAjt1I/MbfNlMx0sytSX3tn5hSLzQsR3Qy2rd0hc1BWojtj9w== - dependencies: - "@jest/console" "^27.0.6" - "@jest/types" "^27.0.6" - "@types/istanbul-lib-coverage" "^2.0.0" - collect-v8-coverage "^1.0.0" - -"@jest/test-sequencer@^27.0.6": - version "27.0.6" - resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.0.6.tgz#80a913ed7a1130545b1cd777ff2735dd3af5d34b" - integrity sha512-bISzNIApazYOlTHDum9PwW22NOyDa6VI31n6JucpjTVM0jD6JDgqEZ9+yn575nDdPF0+4csYDxNNW13NvFQGZA== - dependencies: - "@jest/test-result" "^27.0.6" - graceful-fs "^4.2.4" - jest-haste-map "^27.0.6" - jest-runtime "^27.0.6" - -"@jest/transform@^27.0.6": - version "27.0.6" - resolved "https://registry.npmjs.org/@jest/transform/-/transform-27.0.6.tgz#189ad7107413208f7600f4719f81dd2f7278cc95" - integrity sha512-rj5Dw+mtIcntAUnMlW/Vju5mr73u8yg+irnHwzgtgoeI6cCPOvUwQ0D1uQtc/APmWgvRweEb1g05pkUpxH3iCA== - dependencies: - "@babel/core" "^7.1.0" - "@jest/types" "^27.0.6" - babel-plugin-istanbul "^6.0.0" - chalk "^4.0.0" - convert-source-map "^1.4.0" - fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.2.4" - jest-haste-map "^27.0.6" - jest-regex-util "^27.0.6" - jest-util "^27.0.6" - micromatch "^4.0.4" - pirates "^4.0.1" - slash "^3.0.0" - source-map "^0.6.1" - write-file-atomic "^3.0.0" - -"@jest/types@^27.0.2": - version "27.0.2" - resolved "https://registry.npmjs.org/@jest/types/-/types-27.0.2.tgz#e153d6c46bda0f2589f0702b071f9898c7bbd37e" - integrity sha512-XpjCtJ/99HB4PmyJ2vgmN7vT+JLP7RW1FBT9RgnMFS4Dt7cvIyBee8O3/j98aUZ34ZpenPZFqmaaObWSeL65dg== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^16.0.0" - chalk "^4.0.0" - -"@jest/types@^27.0.6": - version "27.0.6" - resolved "https://registry.npmjs.org/@jest/types/-/types-27.0.6.tgz#9a992bc517e0c49f035938b8549719c2de40706b" - integrity sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^16.0.0" - chalk "^4.0.0" - -"@logicflow/core@^0.6.8": - version "0.6.8" - resolved "https://registry.yarnpkg.com/@logicflow/core/-/core-0.6.8.tgz#ae5fd54f8f191f3db9e57f7ada82889db006e934" - integrity sha512-ezMOEQh+ZnjRwJsERz3yE4X/FPsR2lTsLdq9TatC8NIbVF5psq9mQ8g91iqiSY45Cl58cjDJBjmsnJIHDYJtaA== - dependencies: - "@types/mousetrap" "^1.6.4" - mousetrap "^1.6.5" - preact "^10.4.8" - -"@logicflow/core@^0.6.9": - version "0.6.9" - resolved "https://registry.yarnpkg.com/@logicflow/core/-/core-0.6.9.tgz#e88f34ff002b3864a02c7caa448018e0fe9628e5" - integrity sha512-5kBgX2Ve5JtMxEHEqVFK//Ccy883IYlYQWrO6ac0t3/d8+xjBConi2a9iLir6TqkFSlQV1B90N+Rhwt3NfZbcA== - dependencies: - "@types/mousetrap" "^1.6.4" - mousetrap "^1.6.5" - preact "^10.4.8" - -"@logicflow/extension@^0.6.9": - version "0.6.9" - resolved "https://registry.yarnpkg.com/@logicflow/extension/-/extension-0.6.9.tgz#ce3c269dba20b17b87e82dd6604c1362c2932bb7" - integrity sha512-9fF6NQrpDZskRpuOKElyzfN3D+2ghhF8fdvn1JpkLq8lKQoFSJEw7vJPqmaQVq+aRJxn0rQnaHVdnUnLd3oKSg== - dependencies: - "@logicflow/core" "^0.6.8" - ids "^1.0.0" - preact "^10.4.8" - -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.walk@^1.2.3": - version "1.2.7" - resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.7.tgz#94c23db18ee4653e129abd26fb06f870ac9e1ee2" - integrity sha512-BTIhocbPBSrRmHxOAJFtR18oLhxTtAFDAvL8hY1S3iU8k+E60W/YFs4jrixGzQjMpF4qPXxIQHcjVD9dz1C2QA== - dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" - -"@purge-icons/core@^0.7.0": - version "0.7.0" - resolved "https://registry.npmjs.org/@purge-icons/core/-/core-0.7.0.tgz#097ba8d4d8b7e8d662df687bd2391eb8b83caba0" - integrity sha512-PaCeTFjkQUX+MzBsNg3L8x5aCZqXwaUSNw1FY3Jn7wlLqNqxRNoShw5P//a1DQAy7hLlUHvEL6IGeDoN/xf98A== - dependencies: - "@iconify/iconify" "2.0.0-rc.6" - axios "^0.21.1" - debug "^4.3.2" - fast-glob "^3.2.5" - fs-extra "^9.1.0" - -"@purge-icons/generated@^0.7.0": - version "0.7.0" - resolved "https://registry.npmjs.org/@purge-icons/generated/-/generated-0.7.0.tgz#d87dbb3145e8b9a64e2e12ff660aa3cb13cbeb56" - integrity sha512-4SHVpZnKaW5ekRTjhPY9b1pALVlF0pDuGIDRAlxAm0V+gQVOL0+Ghav6U9XqXFj2kiG1+eQ8swpvB+kd0a+tqg== - dependencies: - "@iconify/iconify" ">=2.0.0-rc.6" - -"@rollup/plugin-babel@^5.2.0": - version "5.3.0" - resolved "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.0.tgz#9cb1c5146ddd6a4968ad96f209c50c62f92f9879" - integrity sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw== - dependencies: - "@babel/helper-module-imports" "^7.10.4" - "@rollup/pluginutils" "^3.1.0" - -"@rollup/plugin-node-resolve@^11.2.1": - version "11.2.1" - resolved "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz#82aa59397a29cd4e13248b106e6a4a1880362a60" - integrity sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg== - dependencies: - "@rollup/pluginutils" "^3.1.0" - "@types/resolve" "1.17.1" - builtin-modules "^3.1.0" - deepmerge "^4.2.2" - is-module "^1.0.0" - resolve "^1.19.0" - -"@rollup/plugin-node-resolve@^13.0.2": - version "13.0.2" - resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.0.2.tgz#bfe58e9bfc7284ee0fabc6da7fabcb268f04e0a4" - integrity sha512-hv+eAMcA2hQ7qvPVcXbtIyc0dtue4jMyA2sCW4IMkrmh+SeDDEHg1MXTv65VPpKdtjvWzN3+4mHAEl4rT+zgzQ== - dependencies: - "@rollup/pluginutils" "^3.1.0" - "@types/resolve" "1.17.1" - builtin-modules "^3.1.0" - deepmerge "^4.2.2" - is-module "^1.0.0" - resolve "^1.19.0" - -"@rollup/plugin-replace@^2.4.1": - version "2.4.2" - resolved "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz#a2d539314fbc77c244858faa523012825068510a" - integrity sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg== - dependencies: - "@rollup/pluginutils" "^3.1.0" - magic-string "^0.25.7" - -"@rollup/pluginutils@^3.1.0": - version "3.1.0" - resolved "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" - integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== - dependencies: - "@types/estree" "0.0.39" - estree-walker "^1.0.1" - picomatch "^2.2.2" - -"@rollup/pluginutils@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.1.1.tgz#1d4da86dd4eded15656a57d933fda2b9a08d47ec" - integrity sha512-clDjivHqWGXi7u+0d2r2sBi4Ie6VLEAzWMIkvJLnDmxoOhBYOTfzGbOQBA32THHm11/LiJbd01tJUpJsbshSWQ== - dependencies: - estree-walker "^2.0.1" - picomatch "^2.2.2" - -"@simonwep/pickr@~1.8.0": - version "1.8.1" - resolved "https://registry.npmjs.org/@simonwep/pickr/-/pickr-1.8.1.tgz#e136cbd9c345ddbb7d71eb14af544c798165d495" - integrity sha512-3Q5+INWW0Py+/E9hgy0cyD0/0w/yGZbkxam6RzFVFDOEHgAqMVJR+x9znx58/ky/ZIvE/78FbH189yIC9h111A== - dependencies: - core-js "^3.12.1" - nanopop "^2.1.0" - -"@sindresorhus/is@^0.7.0": - version "0.7.0" - resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz#9a06f4f137ee84d7df0460c1fdb1135ffa6c50fd" - integrity sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow== - -"@sinonjs/commons@^1.7.0": - version "1.8.3" - resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" - integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== - dependencies: - type-detect "4.0.8" - -"@sinonjs/fake-timers@^7.0.2": - version "7.1.2" - resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-7.1.2.tgz#2524eae70c4910edccf99b2f4e6efc5894aff7b5" - integrity sha512-iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg== - dependencies: - "@sinonjs/commons" "^1.7.0" - -"@stylelint/postcss-css-in-js@^0.37.2": - version "0.37.2" - resolved "https://registry.npmjs.org/@stylelint/postcss-css-in-js/-/postcss-css-in-js-0.37.2.tgz#7e5a84ad181f4234a2480803422a47b8749af3d2" - integrity sha512-nEhsFoJurt8oUmieT8qy4nk81WRHmJynmVwn/Vts08PL9fhgIsMhk1GId5yAN643OzqEEb5S/6At2TZW7pqPDA== - dependencies: - "@babel/core" ">=7.9.0" - -"@stylelint/postcss-markdown@^0.36.2": - version "0.36.2" - resolved "https://registry.npmjs.org/@stylelint/postcss-markdown/-/postcss-markdown-0.36.2.tgz#0a540c4692f8dcdfc13c8e352c17e7bfee2bb391" - integrity sha512-2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ== - dependencies: - remark "^13.0.0" - unist-util-find-all-after "^3.0.2" - -"@surma/rollup-plugin-off-main-thread@^1.4.1": - version "1.4.2" - resolved "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz#e6786b6af5799f82f7ab3a82e53f6182d2b91a58" - integrity sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A== - dependencies: - ejs "^2.6.1" - magic-string "^0.25.0" - -"@tootallnate/once@1": - version "1.1.2" - resolved "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" - integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== - -"@trysound/sax@0.1.1": - version "0.1.1" - resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.1.1.tgz#3348564048e7a2d7398c935d466c0414ebb6a669" - integrity sha512-Z6DoceYb/1xSg5+e+ZlPZ9v0N16ZvZ+wYMraFue4HYrE4ttONKtsvruIRf6t9TBR0YvSOfi1hUU0fJfBLCDYow== - -"@tsconfig/node10@^1.0.7": - version "1.0.8" - resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.8.tgz#c1e4e80d6f964fbecb3359c43bd48b40f7cadad9" - integrity sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg== - -"@tsconfig/node12@^1.0.7": - version "1.0.8" - resolved "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.8.tgz#a883d62f049a64fea1e56a6bbe66828d11c6241b" - integrity sha512-LM6XwBhjZRls1qJGpiM/It09SntEwe9M0riXRfQ9s6XlJQG0JPGl92ET18LtGeYh/GuOtafIXqwZeqLOd0FNFQ== - -"@tsconfig/node14@^1.0.0": - version "1.0.1" - resolved "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.1.tgz#95f2d167ffb9b8d2068b0b235302fafd4df711f2" - integrity sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg== - -"@tsconfig/node16@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.2.tgz#423c77877d0569db20e1fc80885ac4118314010e" - integrity sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA== - -"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": - version "7.1.14" - resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.14.tgz#faaeefc4185ec71c389f4501ee5ec84b170cc402" - integrity sha512-zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - "@types/babel__generator" "*" - "@types/babel__template" "*" - "@types/babel__traverse" "*" - -"@types/babel__generator@*": - version "7.6.2" - resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz#f3d71178e187858f7c45e30380f8f1b7415a12d8" - integrity sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.4.0" - resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz#0c888dd70b3ee9eebb6e4f200e809da0076262be" - integrity sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": - version "7.11.1" - resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.1.tgz#654f6c4f67568e24c23b367e947098c6206fa639" - integrity sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw== - dependencies: - "@babel/types" "^7.3.0" - -"@types/codemirror@^5.60.2": - version "5.60.2" - resolved "https://registry.npmjs.org/@types/codemirror/-/codemirror-5.60.2.tgz#1f8b604964efb4fa2f5a6d6d8c5656f93a050d8a" - integrity sha512-tk8YxckrdU49GaJYRKxdzzzXrTlyT2nQGnobb8rAk34jt+kYXOxPKGqNgr7SJpl5r6YGaRD4CDfqiL+6A+/z7w== - dependencies: - "@types/tern" "*" - -"@types/crypto-js@^4.0.2": - version "4.0.2" - resolved "https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.0.2.tgz#4524325a175bf819fec6e42560c389ce1fb92c97" - integrity sha512-sCVniU+h3GcGqxOmng11BRvf9TfN9yIs8KKjB8C8d75W69cpTfZG80gau9yTx5SxF3gvHGbJhdESzzvnjtf3Og== - -"@types/estree@*", "@types/estree@^0.0.48": - version "0.0.48" - resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.48.tgz#18dc8091b285df90db2f25aa7d906cfc394b7f74" - integrity sha512-LfZwXoGUDo0C3me81HXgkBg5CTQYb6xzEl+fNmbO4JdRiSKQ8A0GD1OBBvKAIsbCUgoyAty7m99GqqMQe784ew== - -"@types/estree@0.0.39": - version "0.0.39" - resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" - integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== - -"@types/fs-extra@^9.0.12": - version "9.0.12" - resolved "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.12.tgz#9b8f27973df8a7a3920e8461517ebf8a7d4fdfaf" - integrity sha512-I+bsBr67CurCGnSenZZ7v94gd3tc3+Aj2taxMT4yu4ABLuOgOjeFxX3dokG24ztSRg5tnT00sL8BszO7gSMoIw== - dependencies: - "@types/node" "*" - -"@types/glob@^7.1.1": - version "7.1.3" - resolved "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183" - integrity sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w== - dependencies: - "@types/minimatch" "*" - "@types/node" "*" - -"@types/graceful-fs@^4.1.2": - version "4.1.5" - resolved "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" - integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== - dependencies: - "@types/node" "*" - -"@types/imagemin-gifsicle@^7.0.1": - version "7.0.1" - resolved "https://registry.yarnpkg.com/@types/imagemin-gifsicle/-/imagemin-gifsicle-7.0.1.tgz#0844a96a338438bb98f77b298acf217260d0d409" - integrity sha512-kUz6sUh0P95JOS0RGEaaemWUrASuw+dLsWIveK2UZJx74id/B9epgblMkCk/r5MjUWbZ83wFvacG5Rb/f97gyA== - dependencies: - "@types/imagemin" "*" - -"@types/imagemin-jpegtran@^5.0.1": - version "5.0.1" - resolved "https://registry.npmjs.org/@types/imagemin-jpegtran/-/imagemin-jpegtran-5.0.1.tgz#798b2a66cd49b7ec6550fb733c05a5b8755f211f" - integrity sha512-Ps8kbm+DUFte/Eln/tUdEvpMWHKFCsQKlV8n+RN50zqWqL/7QhfLxR0ymitP9wa90P6+rkbJlintBNPkVR+B/Q== - dependencies: - "@types/imagemin" "*" - -"@types/imagemin-mozjpeg@^8.0.1": - version "8.0.1" - resolved "https://registry.yarnpkg.com/@types/imagemin-mozjpeg/-/imagemin-mozjpeg-8.0.1.tgz#eaf2f07aea3a317a1710ef2c763ec53f3bcfcdc5" - integrity sha512-kMQWEoKxxhlnH4POI3qfW9DjXlQfi80ux3l2b3j5R3eudSCoUIzKQLkfMjNJ6eMYnMWBcB+rfQOWqIzdIwFGKw== - dependencies: - "@types/imagemin" "*" - -"@types/imagemin-optipng@^5.2.1": - version "5.2.1" - resolved "https://registry.yarnpkg.com/@types/imagemin-optipng/-/imagemin-optipng-5.2.1.tgz#6ef033f3b15d281009de4e0bd2cadf6cbd2e741a" - integrity sha512-XCM/3q+HUL7v4zOqMI+dJ5dTxT+MUukY9KU49DSnYb/4yWtSMHJyADP+WHSMVzTR63J2ZvfUOzSilzBNEQW78g== - dependencies: - "@types/imagemin" "*" - -"@types/imagemin-svgo@^9.0.1": - version "9.0.1" - resolved "https://registry.yarnpkg.com/@types/imagemin-svgo/-/imagemin-svgo-9.0.1.tgz#629ebc8d01802405a9f07667e73e73943ba28ff7" - integrity sha512-DMMunSfN9EOYOh5hfvtY1N5ydVDoMnqN+1bvoL4OIspUJIOiN9hadrdeXTd51oI2tpQXM3Htadrb6QSg0VnYbQ== - dependencies: - "@types/imagemin" "*" - "@types/svgo" "^1" - -"@types/imagemin-webp@^5.1.2": - version "5.1.2" - resolved "https://registry.yarnpkg.com/@types/imagemin-webp/-/imagemin-webp-5.1.2.tgz#b426f93c7019f3799578c88e28ce6949d95b1690" - integrity sha512-elm1oHtWvpu56ucCgnlcP4uiaH9tO8icfF+Vqma4VzuS2b1dgchSRccf7iI1eDxWatvmRt91jHwP0MDwsHhnuA== - dependencies: - "@types/imagemin" "*" - -"@types/imagemin@*": - version "7.0.0" - resolved "https://registry.npmjs.org/@types/imagemin/-/imagemin-7.0.0.tgz#cb99d719190ebe421015213733d656fac1f8af2e" - integrity sha512-BiNd5FazD5ZmJUYD9txsbrttL0P0welrb9yAPn6ykKK3kWufwFsxYqw5KdggfZQDjiNYwsBrX+Fwei0Xsw4oAw== - dependencies: - "@types/node" "*" - -"@types/imagemin@^7.0.1": - version "7.0.1" - resolved "https://registry.yarnpkg.com/@types/imagemin/-/imagemin-7.0.1.tgz#11ca1e65ccb3871a8469d9b23033b95d3838eda0" - integrity sha512-xEn5+M3lDBtI3JxLy6eU3ksoVurygnlG7OYhTqJfGGP4PcvYnfn+IABCmMve7ziM/SneHDm5xgJFKC8hCYPicw== - dependencies: - "@types/node" "*" - -"@types/inquirer@^7.3.3": - version "7.3.3" - resolved "https://registry.npmjs.org/@types/inquirer/-/inquirer-7.3.3.tgz#92e6676efb67fa6925c69a2ee638f67a822952ac" - integrity sha512-HhxyLejTHMfohAuhRun4csWigAMjXTmRyiJTU1Y/I1xmggikFMkOUoMQRlFm+zQcPEGHSs3io/0FAmNZf8EymQ== - dependencies: - "@types/through" "*" - rxjs "^6.4.0" - -"@types/intro.js@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@types/intro.js/-/intro.js-3.0.2.tgz#cbf9b69f055b77582cc2cebe236e9a405b30efbd" - integrity sha512-kow8REgIIG42atN9vAaIdpEqVzj6WzV9m0PII8oce+an4Lc3eyfQF32/FbabbGmfWuF7TceTdd+gh74kOrXkPw== - -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": - version "2.0.3" - resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" - integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw== - -"@types/istanbul-lib-report@*": - version "3.0.0" - resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" - integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== - dependencies: - "@types/istanbul-lib-coverage" "*" - -"@types/istanbul-reports@^3.0.0": - version "3.0.1" - resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" - integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== - dependencies: - "@types/istanbul-lib-report" "*" - -"@types/jest@^27.0.1": - version "27.0.1" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.0.1.tgz#fafcc997da0135865311bb1215ba16dba6bdf4ca" - integrity sha512-HTLpVXHrY69556ozYkcq47TtQJXpcWAWfkoqz+ZGz2JnmZhzlRjprCIyFnetSy8gpDWwTTGBcRVv1J1I1vBrHw== - dependencies: - jest-diff "^27.0.0" - pretty-format "^27.0.0" - -"@types/json-schema@^7.0.7": - version "7.0.7" - resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" - integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== - -"@types/lodash-es@^4.17.4": - version "4.17.4" - resolved "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.4.tgz#b2e440d2bf8a93584a9fd798452ec497986c9b97" - integrity sha512-BBz79DCJbD2CVYZH67MBeHZRX++HF+5p8Mo5MzjZi64Wac39S3diedJYHZtScbRVf4DjZyN6LzA0SB0zy+HSSQ== - dependencies: - "@types/lodash" "*" - -"@types/lodash@*", "@types/lodash@^4.14.165": - version "4.14.170" - resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.170.tgz#0d67711d4bf7f4ca5147e9091b847479b87925d6" - integrity sha512-bpcvu/MKHHeYX+qeEN8GE7DIravODWdACVA1ctevD8CN24RhPZIKMn9ntfAsrvLfSX3cR5RrBKAbYm9bGs0A+Q== - -"@types/mdast@^3.0.0": - version "3.0.3" - resolved "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.3.tgz#2d7d671b1cd1ea3deb306ea75036c2a0407d2deb" - integrity sha512-SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw== - dependencies: - "@types/unist" "*" - -"@types/minimatch@*", "@types/minimatch@^3.0.3": - version "3.0.4" - resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.4.tgz#f0ec25dbf2f0e4b18647313ac031134ca5b24b21" - integrity sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA== - -"@types/minimist@^1.2.0": - version "1.2.1" - resolved "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.1.tgz#283f669ff76d7b8260df8ab7a4262cc83d988256" - integrity sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg== - -"@types/mockjs@^1.0.4": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@types/mockjs/-/mockjs-1.0.4.tgz#e706951d5e33b4f0a4bb73b1f8b124e26f081de0" - integrity sha512-gK20xPqJhzMIitechVbvfnAk+oBIxVRnWrihJpRYHMI6UHCB/cvWgJa+dy6trRwQLE3AbtAJnXpm7pn6blG8sA== - -"@types/mousetrap@^1.6.4": - version "1.6.8" - resolved "https://registry.yarnpkg.com/@types/mousetrap/-/mousetrap-1.6.8.tgz#448929e6dc21126392830465fdb9d4a2cfc16a88" - integrity sha512-zTqjvgCUT5EoXqbqmd8iJMb4NJqyV/V7pK7AIKq7qcaAsJIpGlTVJS1HQM6YkdHCdnkNSbhcQI7MXYxFfE3iCA== - -"@types/node@*": - version "15.12.2" - resolved "https://registry.npmjs.org/@types/node/-/node-15.12.2.tgz#1f2b42c4be7156ff4a6f914b2fb03d05fa84e38d" - integrity sha512-zjQ69G564OCIWIOHSXyQEEDpdpGl+G348RAKY0XXy9Z5kU9Vzv1GMNnkar/ZJ8dzXB3COzD9Mo9NtRZ4xfgUww== - -"@types/node@^14.17.1": - version "14.17.3" - resolved "https://registry.npmjs.org/@types/node/-/node-14.17.3.tgz#6d327abaa4be34a74e421ed6409a0ae2f47f4c3d" - integrity sha512-e6ZowgGJmTuXa3GyaPbTGxX17tnThl2aSSizrFthQ7m9uLGZBXiGhgE55cjRZTF5kjZvYn9EOPOMljdjwbflxw== - -"@types/node@^16.6.1": - version "16.6.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.6.1.tgz#aee62c7b966f55fc66c7b6dfa1d58db2a616da61" - integrity sha512-Sr7BhXEAer9xyGuCN3Ek9eg9xPviCF2gfu9kTfuU2HkTVAMYSDeX40fvpmo72n5nansg3nsBjuQBrsS28r+NUw== - -"@types/normalize-package-data@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" - integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== - -"@types/nprogress@^0.2.0": - version "0.2.0" - resolved "https://registry.npmjs.org/@types/nprogress/-/nprogress-0.2.0.tgz#86c593682d4199212a0509cc3c4d562bbbd6e45f" - integrity sha512-1cYJrqq9GezNFPsWTZpFut/d4CjpZqA0vhqDUPFWYKF1oIyBz5qnoYMzR+0C/T96t3ebLAC1SSnwrVOm5/j74A== - -"@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== - -"@types/prettier@^2.1.5": - version "2.3.0" - resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.3.0.tgz#2e8332cc7363f887d32ec5496b207d26ba8052bb" - integrity sha512-hkc1DATxFLQo4VxPDpMH1gCkPpBbpOoJ/4nhuXw4n63/0R6bCpQECj4+K226UJ4JO/eJQz+1mC2I7JsWanAdQw== - -"@types/qrcode@^1.4.1": - version "1.4.1" - resolved "https://registry.yarnpkg.com/@types/qrcode/-/qrcode-1.4.1.tgz#0689f400c3a95d2db040c99c99834faa09ee9dc1" - integrity sha512-vxMyr7JM7tYPxu8vUE83NiosWX5DZieCyYeJRoOIg0pAkyofCBzknJ2ycUZkPGDFis2RS8GN/BeJLnRnAPxeCA== - dependencies: - "@types/node" "*" - -"@types/qs@^6.9.7": - version "6.9.7" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" - integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== - -"@types/resolve@1.17.1": - version "1.17.1" - resolved "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6" - integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== - dependencies: - "@types/node" "*" - -"@types/sortablejs@^1.10.7": - version "1.10.7" - resolved "https://registry.npmjs.org/@types/sortablejs/-/sortablejs-1.10.7.tgz#ab9039c85429f0516955ec6dbc0bb20139417b15" - integrity sha512-lGCwwgpj8zW/ZmaueoPVSP7nnc9t8VqVWXS+ASX3eoUUENmiazv0rlXyTRludXzuX9ALjPsMqBu85TgJNWbTOg== - -"@types/stack-utils@^2.0.0": - version "2.0.0" - resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz#7036640b4e21cc2f259ae826ce843d277dad8cff" - integrity sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw== - -"@types/svgo@^1": - version "1.3.5" - resolved "https://registry.npmjs.org/@types/svgo/-/svgo-1.3.5.tgz#18a0166fbcdfbfc7f17d0491da2ea07ee397d3f9" - integrity sha512-y9Pw8IK50OqFRDpdI9Is29KlWiENVW9FDvlTmGHelvTfR2brYFJbsClvulZfeq6YKacFrDsG9a39w0kJZdHLaw== - -"@types/svgo@^2.3.1": - version "2.3.1" - resolved "https://registry.npmjs.org/@types/svgo/-/svgo-2.3.1.tgz#85442587bc72bbfb92f3721020e28d678b8744ec" - integrity sha512-L7gdQLO8cfGKksOVtlpS0jwh04SL3W7xe+efuWbNnfSwl3cKSdgX0gLl5VnHDtSAX//xfCbEgB+RSN64tfShqQ== - -"@types/tern@*": - version "0.23.3" - resolved "https://registry.npmjs.org/@types/tern/-/tern-0.23.3.tgz#4b54538f04a88c9ff79de1f6f94f575a7f339460" - integrity sha512-imDtS4TAoTcXk0g7u4kkWqedB3E4qpjXzCpD2LU5M5NAXHzCDsypyvXSaG7mM8DKYkCRa7tFp4tS/lp/Wo7Q3w== - dependencies: - "@types/estree" "*" - -"@types/throttle-debounce@^2.1.0": - version "2.1.0" - resolved "https://registry.npmjs.org/@types/throttle-debounce/-/throttle-debounce-2.1.0.tgz#1c3df624bfc4b62f992d3012b84c56d41eab3776" - integrity sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ== - -"@types/through@*": - version "0.0.30" - resolved "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz#e0e42ce77e897bd6aead6f6ea62aeb135b8a3895" - integrity sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg== - dependencies: - "@types/node" "*" - -"@types/tinycolor2@^1.4.2": - version "1.4.2" - resolved "https://registry.npmjs.org/@types/tinycolor2/-/tinycolor2-1.4.2.tgz#721ca5c5d1a2988b4a886e35c2ffc5735b6afbdf" - integrity sha512-PeHg/AtdW6aaIO2a+98Xj7rWY4KC1E6yOy7AFknJQ7VXUGNrMlyxDFxJo7HqLtjQms/ZhhQX52mLVW/EX3JGOw== - -"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2": - version "2.0.3" - resolved "https://registry.npmjs.org/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e" - integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ== - -"@types/yargs-parser@*": - version "20.2.0" - resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz#dd3e6699ba3237f0348cd085e4698780204842f9" - integrity sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA== - -"@types/yargs@^16.0.0": - version "16.0.3" - resolved "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.3.tgz#4b6d35bb8e680510a7dc2308518a80ee1ef27e01" - integrity sha512-YlFfTGS+zqCgXuXNV26rOIeETOkXnGQXP/pjjL9P0gO/EP9jTmc7pUBhx+jVEIxpq41RX33GQ7N3DzOSfZoglQ== - dependencies: - "@types/yargs-parser" "*" - -"@typescript-eslint/eslint-plugin@^4.29.1": - version "4.29.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.29.1.tgz#808d206e2278e809292b5de752a91105da85860b" - integrity sha512-AHqIU+SqZZgBEiWOrtN94ldR3ZUABV5dUG94j8Nms9rQnHFc8fvDOue/58K4CFz6r8OtDDc35Pw9NQPWo0Ayrw== - dependencies: - "@typescript-eslint/experimental-utils" "4.29.1" - "@typescript-eslint/scope-manager" "4.29.1" - debug "^4.3.1" - functional-red-black-tree "^1.0.1" - regexpp "^3.1.0" - semver "^7.3.5" - tsutils "^3.21.0" - -"@typescript-eslint/experimental-utils@4.29.1": - version "4.29.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.29.1.tgz#0af2b17b0296b60c6b207f11062119fa9c5a8994" - integrity sha512-kl6QG6qpzZthfd2bzPNSJB2YcZpNOrP6r9jueXupcZHnL74WiuSjaft7WSu17J9+ae9zTlk0KJMXPUj0daBxMw== - dependencies: - "@types/json-schema" "^7.0.7" - "@typescript-eslint/scope-manager" "4.29.1" - "@typescript-eslint/types" "4.29.1" - "@typescript-eslint/typescript-estree" "4.29.1" - eslint-scope "^5.1.1" - eslint-utils "^3.0.0" - -"@typescript-eslint/experimental-utils@^4.0.1": - version "4.27.0" - resolved "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.27.0.tgz#78192a616472d199f084eab8f10f962c0757cd1c" - integrity sha512-n5NlbnmzT2MXlyT+Y0Jf0gsmAQzCnQSWXKy4RGSXVStjDvS5we9IWbh7qRVKdGcxT0WYlgcCYUK/HRg7xFhvjQ== - dependencies: - "@types/json-schema" "^7.0.7" - "@typescript-eslint/scope-manager" "4.27.0" - "@typescript-eslint/types" "4.27.0" - "@typescript-eslint/typescript-estree" "4.27.0" - eslint-scope "^5.1.1" - eslint-utils "^3.0.0" - -"@typescript-eslint/parser@^4.29.1": - version "4.29.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.29.1.tgz#17dfbb45c9032ffa0fe15881d20fbc2a4bdeb02d" - integrity sha512-3fL5iN20hzX3Q4OkG7QEPFjZV2qsVGiDhEwwh+EkmE/w7oteiOvUNzmpu5eSwGJX/anCryONltJ3WDmAzAoCMg== - dependencies: - "@typescript-eslint/scope-manager" "4.29.1" - "@typescript-eslint/types" "4.29.1" - "@typescript-eslint/typescript-estree" "4.29.1" - debug "^4.3.1" - -"@typescript-eslint/scope-manager@4.27.0": - version "4.27.0" - resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.27.0.tgz#b0b1de2b35aaf7f532e89c8e81d0fa298cae327d" - integrity sha512-DY73jK6SEH6UDdzc6maF19AHQJBFVRf6fgAXHPXCGEmpqD4vYgPEzqpFz1lf/daSbOcMpPPj9tyXXDPW2XReAw== - dependencies: - "@typescript-eslint/types" "4.27.0" - "@typescript-eslint/visitor-keys" "4.27.0" - -"@typescript-eslint/scope-manager@4.29.1": - version "4.29.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.29.1.tgz#f25da25bc6512812efa2ce5ebd36619d68e61358" - integrity sha512-Hzv/uZOa9zrD/W5mftZa54Jd5Fed3tL6b4HeaOpwVSabJK8CJ+2MkDasnX/XK4rqP5ZTWngK1ZDeCi6EnxPQ7A== - dependencies: - "@typescript-eslint/types" "4.29.1" - "@typescript-eslint/visitor-keys" "4.29.1" - -"@typescript-eslint/types@4.27.0": - version "4.27.0" - resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.27.0.tgz#712b408519ed699baff69086bc59cd2fc13df8d8" - integrity sha512-I4ps3SCPFCKclRcvnsVA/7sWzh7naaM/b4pBO2hVxnM3wrU51Lveybdw5WoIktU/V4KfXrTt94V9b065b/0+wA== - -"@typescript-eslint/types@4.29.1": - version "4.29.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.29.1.tgz#94cce6cf7cc83451df03339cda99d326be2feaf5" - integrity sha512-Jj2yu78IRfw4nlaLtKjVaGaxh/6FhofmQ/j8v3NXmAiKafbIqtAPnKYrf0sbGjKdj0hS316J8WhnGnErbJ4RCA== - -"@typescript-eslint/typescript-estree@4.27.0": - version "4.27.0" - resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.27.0.tgz#189a7b9f1d0717d5cccdcc17247692dedf7a09da" - integrity sha512-KH03GUsUj41sRLLEy2JHstnezgpS5VNhrJouRdmh6yNdQ+yl8w5LrSwBkExM+jWwCJa7Ct2c8yl8NdtNRyQO6g== - dependencies: - "@typescript-eslint/types" "4.27.0" - "@typescript-eslint/visitor-keys" "4.27.0" - debug "^4.3.1" - globby "^11.0.3" - is-glob "^4.0.1" - semver "^7.3.5" - tsutils "^3.21.0" - -"@typescript-eslint/typescript-estree@4.29.1": - version "4.29.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.29.1.tgz#7b32a25ff8e51f2671ccc6b26cdbee3b1e6c5e7f" - integrity sha512-lIkkrR9E4lwZkzPiRDNq0xdC3f2iVCUjw/7WPJ4S2Sl6C3nRWkeE1YXCQ0+KsiaQRbpY16jNaokdWnm9aUIsfw== - dependencies: - "@typescript-eslint/types" "4.29.1" - "@typescript-eslint/visitor-keys" "4.29.1" - debug "^4.3.1" - globby "^11.0.3" - is-glob "^4.0.1" - semver "^7.3.5" - tsutils "^3.21.0" - -"@typescript-eslint/visitor-keys@4.27.0": - version "4.27.0" - resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.27.0.tgz#f56138b993ec822793e7ebcfac6ffdce0a60cb81" - integrity sha512-es0GRYNZp0ieckZ938cEANfEhsfHrzuLrePukLKtY3/KPXcq1Xd555Mno9/GOgXhKzn0QfkDLVgqWO3dGY80bg== - dependencies: - "@typescript-eslint/types" "4.27.0" - eslint-visitor-keys "^2.0.0" - -"@typescript-eslint/visitor-keys@4.29.1": - version "4.29.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.29.1.tgz#0615be8b55721f5e854f3ee99f1a714f2d093e5d" - integrity sha512-zLqtjMoXvgdZY/PG6gqA73V8BjqPs4af1v2kiiETBObp+uC6gRYnJLmJHxC0QyUrrHDLJPIWNYxoBV3wbcRlag== - dependencies: - "@typescript-eslint/types" "4.29.1" - eslint-visitor-keys "^2.0.0" - -"@vitejs/plugin-legacy@^1.5.1": - version "1.5.1" - resolved "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-1.5.1.tgz#fef2a11c05d83f5ab13d2d04e52d75bac13c6e6c" - integrity sha512-g+0iy0X3NJRUSKZK+OCeSxNWnCuuE/6lsmr2WLWPOEt1vp6LdfHuNCYRooCm6s0ccTZ/SiumVk8vt9DWSYs+8A== - dependencies: - "@babel/standalone" "^7.14.9" - core-js "^3.16.0" - magic-string "^0.25.7" - regenerator-runtime "^0.13.9" - systemjs "^6.10.2" - -"@vitejs/plugin-vue-jsx@^1.1.7": - version "1.1.7" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.1.7.tgz#3e0236a01d6b5f8010bd6bc5ffccdbe1f0fa50d5" - integrity sha512-lomCrTZ/LXUk8L+1fBX4dpW+L/S7qY4+pzS5BRG2NuLpjo26Efh4yb8nDkYM7b8COS3ea7otis0SsqD8vGOSlg== - dependencies: - "@babel/core" "^7.14.8" - "@babel/plugin-syntax-import-meta" "^7.10.4" - "@babel/plugin-transform-typescript" "^7.14.6" - "@rollup/pluginutils" "^4.1.1" - "@vue/babel-plugin-jsx" "^1.0.6" - hash-sum "^2.0.0" - -"@vitejs/plugin-vue@^1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-1.4.0.tgz#962ae01b7fd16ad4007898c64ed639136e12215b" - integrity sha512-RkqfJHz9wdLKBp5Yi+kQL8BAljdrvPoccQm2PTZc/UcL4EjD11xsv2PPCduYx2oV1a/bpSKA3sD5sxOHFhz+LA== - -"@volar/code-gen@^0.27.1": - version "0.27.1" - resolved "https://registry.yarnpkg.com/@volar/code-gen/-/code-gen-0.27.1.tgz#5fbf3808b000a1e3966b4916689c55958efaf70d" - integrity sha512-tN7Rxa7mAfd8GQceKxHjjDjfRo3S4OBIEtv4GpmO75IrodjMVkZEZR/v6EY3yn52ffTh3SuAvjiCSRRcHhvDqg== - dependencies: - "@volar/shared" "^0.27.1" - "@volar/source-map" "^0.27.1" - -"@volar/html2pug@^0.27.1": - version "0.27.1" - resolved "https://registry.yarnpkg.com/@volar/html2pug/-/html2pug-0.27.1.tgz#9c996c189859e002a2e016b25ea04022fa321890" - integrity sha512-4192qerpj+fuzmaduT8l9qoY7620oh4LNEK2GN8V9l7+LNAuPRr9kN0BNrow2j1WO9lklhtNqDlCSOmPCmcoPA== - dependencies: - domelementtype "^2.2.0" - domhandler "^4.2.0" - htmlparser2 "^6.1.0" - pug "^3.0.2" - -"@volar/shared@^0.27.1": - version "0.27.1" - resolved "https://registry.yarnpkg.com/@volar/shared/-/shared-0.27.1.tgz#004933283d1c479e46c33534f6b52b594728eaac" - integrity sha512-PvoD6cp3ICaZXsLcuEB14FkrQuJnQVuhtAiss6BLGFfq4vOhJPMZihfoSZtQYkspkZ1/r8IgidMZqTtuAxYBzA== - dependencies: - upath "^2.0.1" - vscode-jsonrpc "^8.0.0-next.1" - vscode-uri "^3.0.2" - -"@volar/source-map@^0.27.1": - version "0.27.1" - resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-0.27.1.tgz#1e0fd73f4bfc46f9e70e7d3f8a1b1c03b816ce6d" - integrity sha512-Y4cJjAIfMhoHg0jsO8uUZ4YvJAxDYSwWRD9corm+2W/4Km5AKSF7hhVwFSGy2WvODTRLZY2jjlL3eu88m1eg/g== - dependencies: - "@volar/shared" "^0.27.1" - -"@volar/transforms@^0.27.1": - version "0.27.1" - resolved "https://registry.yarnpkg.com/@volar/transforms/-/transforms-0.27.1.tgz#117a7cd5d12ca1bf0c83715201f93e630b4211bd" - integrity sha512-jEWYXFQL+KUVS85qrYYsaQYtwdLZLs3koNFEMEQMnDMad3jEBDqd3IKgDGePI6jQ5Vq3jFneNwX1GGCFJeKvJA== - dependencies: - "@volar/shared" "^0.27.1" - -"@vscode/emmet-helper@^2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@vscode/emmet-helper/-/emmet-helper-2.7.0.tgz#3db485f6a650196ff8bbd38ba1b9e468ec8d22f8" - integrity sha512-LL7MoKNLUQASacQROO7hBdx5IAxsEnA0UdJFd9xXyf3sBQgz8NE3QEfo3IezE7uin8W2fkG2+EXMst3oqK6+KQ== - dependencies: - emmet "^2.3.0" - jsonc-parser "^2.3.0" - vscode-languageserver-textdocument "^1.0.1" - vscode-languageserver-types "^3.15.1" - vscode-nls "^5.0.0" - vscode-uri "^2.1.2" - -"@vue/babel-helper-vue-transform-on@^1.0.2": - version "1.0.2" - resolved "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz#9b9c691cd06fc855221a2475c3cc831d774bc7dc" - integrity sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA== - -"@vue/babel-plugin-jsx@^1.0.6": - version "1.0.6" - resolved "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.6.tgz#184bf3541ab6efdbe5079ab8b20c19e2af100bfb" - integrity sha512-RzYsvBhzKUmY2YG6LoV+W5PnlnkInq0thh1AzCmewwctAgGN6e9UFon6ZrQQV1CO5G5PeME7MqpB+/vvGg0h4g== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/plugin-syntax-jsx" "^7.0.0" - "@babel/template" "^7.0.0" - "@babel/traverse" "^7.0.0" - "@babel/types" "^7.0.0" - "@vue/babel-helper-vue-transform-on" "^1.0.2" - camelcase "^6.0.0" - html-tags "^3.1.0" - svg-tags "^1.0.0" - -"@vue/compiler-core@3.2.2": - version "3.2.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.2.2.tgz#8d3e29f129579ed9b14f48af735fd8d95f248504" - integrity sha512-QhCI0ZU5nAR0LMcLgzW3v75374tIrHGp8XG5CzJS7Nsy+iuignbE4MZ2XJfh5TGIrtpuzfWA4eTIfukZf/cRdg== - dependencies: - "@babel/parser" "^7.12.0" - "@babel/types" "^7.12.0" - "@vue/shared" "3.2.2" - estree-walker "^2.0.1" - source-map "^0.6.1" - -"@vue/compiler-dom@3.2.2", "@vue/compiler-dom@^3.2.2": - version "3.2.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.2.tgz#26e198498746c53047c3744d26fc95e670692ab7" - integrity sha512-ggcc+NV/ENIE0Uc3TxVE/sKrhYVpLepMAAmEiQ047332mbKOvUkowz4TTFZ+YkgOIuBOPP0XpCxmCMg7p874mA== - dependencies: - "@vue/compiler-core" "3.2.2" - "@vue/shared" "3.2.2" - -"@vue/compiler-sfc@3.2.2", "@vue/compiler-sfc@^3.2.2": - version "3.2.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.2.2.tgz#5b7b13b07689be8e4880d856f72d1be500785be9" - integrity sha512-hrtqpQ5L6IPn5v7yVRo7uvLcQxv0z1+KBjZBWMBOcrXz4t+PKUxU/SWd6Tl9T8FDmYlunzKUh6lcx+2CLo6f5A== - dependencies: - "@babel/parser" "^7.13.9" - "@babel/types" "^7.13.0" - "@types/estree" "^0.0.48" - "@vue/compiler-core" "3.2.2" - "@vue/compiler-dom" "3.2.2" - "@vue/compiler-ssr" "3.2.2" - "@vue/shared" "3.2.2" - consolidate "^0.16.0" - estree-walker "^2.0.1" - hash-sum "^2.0.0" - lru-cache "^5.1.1" - magic-string "^0.25.7" - merge-source-map "^1.1.0" - postcss "^8.1.10" - postcss-modules "^4.0.0" - postcss-selector-parser "^6.0.4" - source-map "^0.6.1" - -"@vue/compiler-ssr@3.2.2": - version "3.2.2" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.2.2.tgz#633bb8e01f00a969c35ca12db32be7fe4c7185a9" - integrity sha512-rVl1agMFhdEN3Go0bCriXo+3cysxKIuRP0yh1Wd8ysRrKfAmokyDhUA8PrGSq2Ymj/LdZTh+4OKfj3p2+C+hlA== - dependencies: - "@vue/compiler-dom" "3.2.2" - "@vue/shared" "3.2.2" - -"@vue/devtools-api@^6.0.0-beta.14", "@vue/devtools-api@^6.0.0-beta.7": - version "6.0.0-beta.14" - resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.0.0-beta.14.tgz#6ed2d6f8d66a9256c9ad04bfff08309ba87b9723" - integrity sha512-44fPrrN1cqcs6bFkT0C+yxTM6PZXLbR+ESh1U1j8UD22yO04gXvxH62HApMjLbS3WqJO/iCNC+CYT+evPQh2EQ== - -"@vue/devtools-api@^6.0.0-beta.15": - version "6.0.0-beta.15" - resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.0.0-beta.15.tgz#ad7cb384e062f165bcf9c83732125bffbc2ad83d" - integrity sha512-quBx4Jjpexo6KDiNUGFr/zF/2A4srKM9S9v2uHgMXSU//hjgq1eGzqkIFql8T9gfX5ZaVOUzYBP3jIdIR3PKIA== - -"@vue/reactivity@3.2.2", "@vue/reactivity@^3.2.2": - version "3.2.2" - resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.2.2.tgz#d37011a68395e038a3cf5256af52d48c591b06b6" - integrity sha512-IHjhtmrhK6dzacj/EnLQDWOaA3HuzzVk6w84qgV8EpS4uWGIJXiRalMRg6XvGW2ykJvIl3pLsF0aBFlTMRiLOA== - dependencies: - "@vue/shared" "3.2.2" - -"@vue/runtime-core@3.2.2": - version "3.2.2" - resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.2.2.tgz#b9a7250783de19dd8dd6febf008084b0f9144586" - integrity sha512-/aUk1+GO/VPX0oVxhbzSWE1zrf3/wGCsO1ALNisVokYftKqfqLDjbJHE6mrI2hx3MiuwbHrWjJClkGUVTIOPEQ== - dependencies: - "@vue/reactivity" "3.2.2" - "@vue/shared" "3.2.2" - -"@vue/runtime-dom@3.2.2": - version "3.2.2" - resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.2.2.tgz#6d0da23ed1cfc702477f4b8c5dc4f9335c94e119" - integrity sha512-1Le/NpCfawCOfePfJezvWUF+oCVLU8N+IHN4oFDOxRe6/PgHNJ+yT+YdxFifBfI+TIAoXI/9PsnqzmJZV+xsmw== - dependencies: - "@vue/runtime-core" "3.2.2" - "@vue/shared" "3.2.2" - csstype "^2.6.8" - -"@vue/shared@3.2.2", "@vue/shared@^3.2.2": - version "3.2.2" - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.2.tgz#6104185ebd57af5a14ac51c1f491b2205fc24054" - integrity sha512-dvYb318tk9uOzHtSaT3WII/HscQSIRzoCZ5GyxEb3JlkEXASpAUAQwKnvSe2CudnF8XHFRTB7VITWSnWNLZUtA== - -"@vue/test-utils@^2.0.0-rc.12": - version "2.0.0-rc.12" - resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-2.0.0-rc.12.tgz#716a84d915d6045640eeac416cc2a2acd514e06e" - integrity sha512-G9BGRYlfwWjhorGjnpniC3hcYn1pCG2NqKG68fdUpk3DgWKordZ+BsEFD/SAmKdTZVMCY1huFwY3XAbPc+AgRw== - -"@vueuse/core@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-5.3.0.tgz#d8c6e939e18089afa224fab6e443fae2bdb57a51" - integrity sha512-bBL1/JMRHFWmbgQzUZHF4WOwlqfenR1B8+elriXsbnHlogQM5foSz9++WyDBR0YPIVgCJq7fvNLqd4T7+cjc5w== - dependencies: - "@vueuse/shared" "5.3.0" - vue-demi "*" - -"@vueuse/shared@5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-5.3.0.tgz#2b9583f80f1284242f808925e7e141310e400e45" - integrity sha512-qZfkPFH0qTScFpYiPOFpTcxWriRhlM3bgSzl3DFTgr/U0eZg3w2EFWaRZHdWeSvAUdNQyjOC4Toa8S0zJyEjHw== - dependencies: - vue-demi "*" - -"@windicss/config@1.2.7": - version "1.2.7" - resolved "https://registry.npmjs.org/@windicss/config/-/config-1.2.7.tgz#c70bde7de272574f7a33eb9a1d7f80bdbffe48ba" - integrity sha512-XpH/dkXWk2LGygHzHBWWEW/yGcLqhpFFN2jo+zMeWZ1ggBzndQQzBHqHGQHcr6U6v3PoBuOz1prVWgUmQxn9eQ== - dependencies: - debug "^4.3.2" - jiti "^1.11.0" - windicss "^3.1.6" - -"@windicss/plugin-utils@1.2.7": - version "1.2.7" - resolved "https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-1.2.7.tgz#aa2c571f66600ce2c916c9c47efe8eafb229908c" - integrity sha512-aNQhd1nEjkVsCHmzq0+4VGTmovOGGfPnH2hspH4YuDxMDhQ/99VrBdyk7irngWJjedjHB3+UYCSYWpY5a+2Hbg== - dependencies: - "@antfu/utils" "^0.2.4" - "@windicss/config" "1.2.7" - debug "^4.3.2" - fast-glob "^3.2.7" - magic-string "^0.25.7" - micromatch "^4.0.4" - windicss "^3.1.6" - -"@zxcvbn-ts/core@^1.0.0-beta.0": - version "1.0.0-beta.0" - resolved "https://registry.yarnpkg.com/@zxcvbn-ts/core/-/core-1.0.0-beta.0.tgz#a616beacb83dbfe9174408ebabee746f3468b0ec" - integrity sha512-E2rHy2jrCDzJ62xqY5KteOHR+y7uPqL6FLUPVCDZmeYrAZRgB+CpO0QIQKLVrxwssx0YhApmE23eHmouce+OUA== - -JSONStream@^1.0.4: - version "1.3.5" - resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" - integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== - dependencies: - jsonparse "^1.2.0" - through ">=2.2.7 <3" - -abab@^2.0.3, abab@^2.0.5: - version "2.0.5" - resolved "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" - integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== - -acorn-globals@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" - integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== - dependencies: - acorn "^7.1.1" - acorn-walk "^7.1.1" - -acorn-jsx@^5.2.0, acorn-jsx@^5.3.1: - version "5.3.1" - resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" - integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== - -acorn-walk@^7.1.1: - version "7.2.0" - resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" - integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== - -acorn-walk@^8.1.1: - version "8.1.1" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.1.1.tgz#3ddab7f84e4a7e2313f6c414c5b7dac85f4e3ebc" - integrity sha512-FbJdceMlPHEAWJOILDk1fXD8lnTlEIWFkqtfk+MvmL5q/qlHfN7GEHcsFZWt/Tea9jRNPWUZG4G976nqAAmU9w== - -acorn@^7.1.1, acorn@^7.4.0: - version "7.4.1" - resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - -acorn@^8.2.4: - version "8.4.0" - resolved "https://registry.npmjs.org/acorn/-/acorn-8.4.0.tgz#af53266e698d7cffa416714b503066a82221be60" - integrity sha512-ULr0LDaEqQrMFGyQ3bhJkLsbtrQ8QibAseGZeaSUiT/6zb9IvIkomWHJIvgvwad+hinRAgsI51JcWk2yvwyL+w== - -acorn@^8.4.1: - version "8.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.4.1.tgz#56c36251fc7cabc7096adc18f05afe814321a28c" - integrity sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA== - -add-stream@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" - integrity sha1-anmQQ3ynNtXhKI25K9MmbV9csqo= - -agent-base@6: - version "6.0.2" - resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - -ajv@^6.10.0, ajv@^6.12.4: - version "6.12.6" - resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ajv@^8.0.1: - version "8.6.0" - resolved "https://registry.npmjs.org/ajv/-/ajv-8.6.0.tgz#60cc45d9c46a477d80d92c48076d972c342e5720" - integrity sha512-cnUG4NSBiM4YFBxgZIj/In3/6KX+rQ2l2YPRVcvAMQGWEPKuXoPIhxzwqh31jA3IPbI4qEOp/5ILI4ynioXsGQ== - dependencies: - fast-deep-equal "^3.1.1" - json-schema-traverse "^1.0.0" - require-from-string "^2.0.2" - uri-js "^4.2.2" - -ansi-colors@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" - integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== - -ansi-escapes@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" - integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== - -ansi-escapes@^4.2.1, ansi-escapes@^4.3.0: - version "4.3.2" - resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= - -ansi-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" - integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= - -ansi-regex@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" - integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== - -ansi-regex@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" - integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== - -ansi-styles@^2.2.1: - version "2.2.1" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= - -ansi-styles@^3.2.0, ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansi-styles@^5.0.0: - version "5.2.0" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" - integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== - -ant-design-vue@2.2.6: - version "2.2.6" - resolved "https://registry.yarnpkg.com/ant-design-vue/-/ant-design-vue-2.2.6.tgz#2acf45ea8bb2bb8a0e48a83fa9c6a827fef5236f" - integrity sha512-WgZow4FtrsAZON01wv+ObuXWL1Elaq/fhPRdmOEfFx5f8azTDBYL75A8dVl59TNBKW8FdSGBTl9PZYzW5eO6Gw== - dependencies: - "@ant-design/icons-vue" "^6.0.0" - "@babel/runtime" "^7.10.5" - "@simonwep/pickr" "~1.8.0" - array-tree-filter "^2.1.0" - async-validator "^3.3.0" - dom-align "^1.12.1" - dom-scroll-into-view "^2.0.0" - lodash "^4.17.21" - lodash-es "^4.17.15" - moment "^2.27.0" - omit.js "^2.0.0" - resize-observer-polyfill "^1.5.1" - scroll-into-view-if-needed "^2.2.25" - shallow-equal "^1.0.0" - vue-types "^3.0.0" - warning "^4.0.0" - -anymatch@^3.0.3, anymatch@~3.1.2: - version "3.1.2" - resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" - integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -arch@^2.1.0: - version "2.2.0" - resolved "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" - integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== - -archive-type@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz#f92e72233056dfc6969472749c267bdb046b1d70" - integrity sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA= - dependencies: - file-type "^4.2.0" - -arg@^4.1.0: - version "4.1.3" - resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" - integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -arr-diff@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" - integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= - -arr-flatten@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" - integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== - -arr-union@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" - integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= - -array-differ@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b" - integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg== - -array-find-index@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" - integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= - -array-ify@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" - integrity sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4= - -array-tree-filter@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/array-tree-filter/-/array-tree-filter-2.1.0.tgz#873ac00fec83749f255ac8dd083814b4f6329190" - integrity sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw== - -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -array-unique@^0.3.2: - version "0.3.2" - resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" - integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= - -arrify@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= - -arrify@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" - integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== - -asap@~2.0.3: - version "2.0.6" - resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= - -assert-never@^1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz#11f0e363bf146205fb08193b5c7b90f4d1cf44fe" - integrity sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw== - -assign-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" - integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= - -astral-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" - integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== - -async-validator@^3.3.0: - version "3.5.2" - resolved "https://registry.npmjs.org/async-validator/-/async-validator-3.5.2.tgz#68e866a96824e8b2694ff7a831c1a25c44d5e500" - integrity sha512-8eLCg00W9pIRZSB781UUX/H6Oskmm8xloZfr09lz5bikRpBVDlJ3hRVuxxP1SxcwsEYfJ4IU8Q19Y8/893r3rQ== - -async@0.9.x: - version "0.9.2" - resolved "https://registry.npmjs.org/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" - integrity sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= - -async@^2.6.2: - version "2.6.3" - resolved "https://registry.npmjs.org/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" - integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== - dependencies: - lodash "^4.17.14" - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= - -at-least-node@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" - integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== - -atob@^2.1.2: - version "2.1.2" - resolved "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== - -autoprefixer@^10.3.1: - version "10.3.1" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.3.1.tgz#954214821d3aa06692406c6a0a9e9d401eafbed2" - integrity sha512-L8AmtKzdiRyYg7BUXJTzigmhbQRCXFKz6SA1Lqo0+AR2FBbQ4aTAPFSDlOutnFkjhiz8my4agGXog1xlMjPJ6A== - dependencies: - browserslist "^4.16.6" - caniuse-lite "^1.0.30001243" - colorette "^1.2.2" - fraction.js "^4.1.1" - normalize-range "^0.1.2" - postcss-value-parser "^4.1.0" - -autoprefixer@^9.8.6: - version "9.8.6" - resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f" - integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg== - dependencies: - browserslist "^4.12.0" - caniuse-lite "^1.0.30001109" - colorette "^1.2.1" - normalize-range "^0.1.2" - num2fraction "^1.2.2" - postcss "^7.0.32" - postcss-value-parser "^4.1.0" - -axios@^0.21.1: - version "0.21.1" - resolved "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz#22563481962f4d6bde9a76d516ef0e5d3c09b2b8" - integrity sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA== - dependencies: - follow-redirects "^1.10.0" - -babel-jest@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-27.0.6.tgz#e99c6e0577da2655118e3608b68761a5a69bd0d8" - integrity sha512-iTJyYLNc4wRofASmofpOc5NK9QunwMk+TLFgGXsTFS8uEqmd8wdI7sga0FPe2oVH3b5Agt/EAK1QjPEuKL8VfA== - dependencies: - "@jest/transform" "^27.0.6" - "@jest/types" "^27.0.6" - "@types/babel__core" "^7.1.14" - babel-plugin-istanbul "^6.0.0" - babel-preset-jest "^27.0.6" - chalk "^4.0.0" - graceful-fs "^4.2.4" - slash "^3.0.0" - -babel-plugin-dynamic-import-node@^2.3.3: - version "2.3.3" - resolved "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" - integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== - dependencies: - object.assign "^4.1.0" - -babel-plugin-istanbul@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" - integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@istanbuljs/load-nyc-config" "^1.0.0" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-instrument "^4.0.0" - test-exclude "^6.0.0" - -babel-plugin-jest-hoist@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.0.6.tgz#f7c6b3d764af21cb4a2a1ab6870117dbde15b456" - integrity sha512-CewFeM9Vv2gM7Yr9n5eyyLVPRSiBnk6lKZRjgwYnGKSl9M14TMn2vkN02wTF04OGuSDLEzlWiMzvjXuW9mB6Gw== - dependencies: - "@babel/template" "^7.3.3" - "@babel/types" "^7.3.3" - "@types/babel__core" "^7.0.0" - "@types/babel__traverse" "^7.0.6" - -babel-plugin-polyfill-corejs2@^0.2.2: - version "0.2.2" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz#e9124785e6fd94f94b618a7954e5693053bf5327" - integrity sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ== - dependencies: - "@babel/compat-data" "^7.13.11" - "@babel/helper-define-polyfill-provider" "^0.2.2" - semver "^6.1.1" - -babel-plugin-polyfill-corejs3@^0.2.2: - version "0.2.3" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.3.tgz#72add68cf08a8bf139ba6e6dfc0b1d504098e57b" - integrity sha512-rCOFzEIJpJEAU14XCcV/erIf/wZQMmMT5l5vXOpL5uoznyOGfDIjPj6FVytMvtzaKSTSVKouOCTPJ5OMUZH30g== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.2.2" - core-js-compat "^3.14.0" - -babel-plugin-polyfill-regenerator@^0.2.2: - version "0.2.2" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz#b310c8d642acada348c1fa3b3e6ce0e851bee077" - integrity sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.2.2" - -babel-preset-current-node-syntax@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" - integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== - dependencies: - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-bigint" "^7.8.3" - "@babel/plugin-syntax-class-properties" "^7.8.3" - "@babel/plugin-syntax-import-meta" "^7.8.3" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.8.3" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-top-level-await" "^7.8.3" - -babel-preset-jest@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.0.6.tgz#909ef08e9f24a4679768be2f60a3df0856843f9d" - integrity sha512-WObA0/Biw2LrVVwZkF/2GqbOdzhKD6Fkdwhoy9ASIrOWr/zodcSpQh72JOkEn6NWyjmnPDjNSqaGN4KnpKzhXw== - dependencies: - babel-plugin-jest-hoist "^27.0.6" - babel-preset-current-node-syntax "^1.0.0" - -babel-walk@3.0.0-canary-5: - version "3.0.0-canary-5" - resolved "https://registry.npmjs.org/babel-walk/-/babel-walk-3.0.0-canary-5.tgz#f66ecd7298357aee44955f235a6ef54219104b11" - integrity sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw== - dependencies: - "@babel/types" "^7.9.6" - -bail@^1.0.0: - version "1.0.5" - resolved "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776" - integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ== - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -balanced-match@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz#dc70f920d78db8b858535795867bf48f820633d9" - integrity sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA== - -base64-js@^1.3.1: - version "1.5.1" - resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -base@^0.11.1: - version "0.11.2" - resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" - integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== - dependencies: - cache-base "^1.0.1" - class-utils "^0.3.5" - component-emitter "^1.2.1" - define-property "^1.0.0" - isobject "^3.0.1" - mixin-deep "^1.2.0" - pascalcase "^0.1.1" - -basic-auth@^1.0.3: - version "1.1.0" - resolved "https://registry.npmjs.org/basic-auth/-/basic-auth-1.1.0.tgz#45221ee429f7ee1e5035be3f51533f1cdfd29884" - integrity sha1-RSIe5Cn37h5QNb4/UVM/HN/SmIQ= - -big.js@^5.2.2: - version "5.2.2" - resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" - integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== - -bin-build@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz#c5780a25a8a9f966d8244217e6c1f5082a143861" - integrity sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA== - dependencies: - decompress "^4.0.0" - download "^6.2.2" - execa "^0.7.0" - p-map-series "^1.0.0" - tempfile "^2.0.0" - -bin-check@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz#fc495970bdc88bb1d5a35fc17e65c4a149fc4a49" - integrity sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA== - dependencies: - execa "^0.7.0" - executable "^4.1.0" - -bin-version-check@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz#7d819c62496991f80d893e6e02a3032361608f71" - integrity sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ== - dependencies: - bin-version "^3.0.0" - semver "^5.6.0" - semver-truncate "^1.1.2" - -bin-version@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz#5b09eb280752b1bd28f0c9db3f96f2f43b6c0839" - integrity sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ== - dependencies: - execa "^1.0.0" - find-versions "^3.0.0" - -bin-wrapper@^4.0.0, bin-wrapper@^4.0.1, "bin-wrapper@npm:bin-wrapper-china": - version "0.1.0" - resolved "https://registry.npmjs.org/bin-wrapper-china/-/bin-wrapper-china-0.1.0.tgz#c2ec95b4d0eaef6ed5ad10954f9227d8e5ef3725" - integrity sha512-1UCm17WYEbgry50tup+AQN+JGVEVzoW4f8HMl899k1lvuFxWKGZXl/G2fgxQxAckRjnloO3ijLVVEsv8zescUg== - dependencies: - bin-check "^4.1.0" - bin-version-check "^4.0.0" - binary-mirror-config "^1" - download "^7.1.0" - import-lazy "^4.0.0" - os-filter-obj "^2.0.0" - pify "^4.0.1" - -binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== - -binary-mirror-config@^1: - version "1.30.0" - resolved "https://registry.npmjs.org/binary-mirror-config/-/binary-mirror-config-1.30.0.tgz#17c6f6263dd2d1e1ebcec21351c2b712bdfc4593" - integrity sha512-LAw4MnTH4o3IvIX27ixBueO9dHQ70Jv26gswNPUi91mdCAGU3Zg6e+1Se81tHrL5ppvO80Tv++1Wpb3kE+dy6Q== - -bl@^1.0.0: - version "1.2.3" - resolved "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz#1e8dd80142eac80d7158c9dccc047fb620e035e7" - integrity sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww== - dependencies: - readable-stream "^2.3.5" - safe-buffer "^5.1.1" - -bl@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - -bluebird@^3.5.0, bluebird@^3.7.2: - version "3.7.2" - resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" - integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== - -boolbase@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -braces@^2.2.2: - version "2.3.2" - resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" - integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== - dependencies: - arr-flatten "^1.1.0" - array-unique "^0.3.2" - extend-shallow "^2.0.1" - fill-range "^4.0.0" - isobject "^3.0.1" - repeat-element "^1.1.2" - snapdragon "^0.8.1" - snapdragon-node "^2.0.1" - split-string "^3.0.2" - to-regex "^3.0.1" - -braces@^3.0.1, braces@~3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -browser-process-hrtime@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" - integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== - -browserslist@^4.12.0, browserslist@^4.16.6: - version "4.16.6" - resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" - integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ== - dependencies: - caniuse-lite "^1.0.30001219" - colorette "^1.2.2" - electron-to-chromium "^1.3.723" - escalade "^3.1.1" - node-releases "^1.1.71" - -bs-logger@0.x: - version "0.2.6" - resolved "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" - integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== - dependencies: - fast-json-stable-stringify "2.x" - -bser@2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" - integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== - dependencies: - node-int64 "^0.4.0" - -buffer-alloc-unsafe@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" - integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== - -buffer-alloc@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" - integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== - dependencies: - buffer-alloc-unsafe "^1.1.0" - buffer-fill "^1.0.0" - -buffer-crc32@~0.2.3: - version "0.2.13" - resolved "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" - integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= - -buffer-fill@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" - integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= - -buffer-from@1.x, buffer-from@^1.0.0, buffer-from@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== - -buffer@^5.2.1, buffer@^5.4.3, buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - -builtin-modules@^3.1.0: - version "3.2.0" - resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887" - integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA== - -cache-base@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" - integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== - dependencies: - collection-visit "^1.0.0" - component-emitter "^1.2.1" - get-value "^2.0.6" - has-value "^1.0.0" - isobject "^3.0.1" - set-value "^2.0.0" - to-object-path "^0.3.0" - union-value "^1.0.0" - unset-value "^1.0.0" - -cacheable-request@^2.1.1: - version "2.1.4" - resolved "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz#0d808801b6342ad33c91df9d0b44dc09b91e5c3d" - integrity sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0= - dependencies: - clone-response "1.0.2" - get-stream "3.0.0" - http-cache-semantics "3.8.1" - keyv "3.0.0" - lowercase-keys "1.0.0" - normalize-url "2.0.1" - responselike "1.0.2" - -cachedir@2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/cachedir/-/cachedir-2.2.0.tgz#19afa4305e05d79e417566882e0c8f960f62ff0e" - integrity sha512-VvxA0xhNqIIfg0V9AmJkDg91DaJwryutH5rVEZAhcNi4iJFj9f+QxmAjgK1LT9I8OgToX27fypX6/MeCXVbBjQ== - -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camel-case@^4.1.1, camel-case@^4.1.2: - version "4.1.2" - resolved "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" - integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== - dependencies: - pascal-case "^3.1.2" - tslib "^2.0.3" - -camelcase-keys@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" - integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc= - dependencies: - camelcase "^2.0.0" - map-obj "^1.0.0" - -camelcase-keys@^6.2.2: - version "6.2.2" - resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" - integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== - dependencies: - camelcase "^5.3.1" - map-obj "^4.0.0" - quick-lru "^4.0.1" - -camelcase@^2.0.0: - version "2.1.1" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" - integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= - -camelcase@^5.0.0, camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -camelcase@^6.0.0, camelcase@^6.2.0: - version "6.2.0" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" - integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== - -caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001219: - version "1.0.30001237" - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001237.tgz#4b7783661515b8e7151fc6376cfd97f0e427b9e5" - integrity sha512-pDHgRndit6p1NR2GhzMbQ6CkRrp4VKuSsqbcLeOQppYPKOYkKT/6ZvZDvKJUqcmtyWIAHuZq3SVS2vc1egCZzw== - -caniuse-lite@^1.0.30001243: - version "1.0.30001243" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001243.tgz#d9250155c91e872186671c523f3ae50cfc94a3aa" - integrity sha512-vNxw9mkTBtkmLFnJRv/2rhs1yufpDfCkBZexG3Y0xdOH2Z/eE/85E4Dl5j1YUN34nZVsSp6vVRFQRrez9wJMRA== - -capital-case@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz#9d130292353c9249f6b00fa5852bee38a717e669" - integrity sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - upper-case-first "^2.0.2" - -caw@^2.0.0, caw@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz#6c3ca071fc194720883c2dc5da9b074bfc7e9e95" - integrity sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA== - dependencies: - get-proxy "^2.0.0" - isurl "^1.0.0-alpha5" - tunnel-agent "^0.6.0" - url-to-options "^1.0.1" - -chalk@^1.0.0, chalk@^1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - -chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" - integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" - integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chalk@^4.1.2: - version "4.1.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -change-case@^4.1.2: - version "4.1.2" - resolved "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12" - integrity sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A== - dependencies: - camel-case "^4.1.2" - capital-case "^1.0.4" - constant-case "^3.0.4" - dot-case "^3.0.4" - header-case "^2.0.4" - no-case "^3.0.4" - param-case "^3.0.4" - pascal-case "^3.1.2" - path-case "^3.0.4" - sentence-case "^3.0.4" - snake-case "^3.0.4" - tslib "^2.0.3" - -char-regex@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" - integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== - -character-entities-legacy@^1.0.0: - version "1.1.4" - resolved "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" - integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== - -character-entities@^1.0.0: - version "1.2.4" - resolved "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b" - integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== - -character-parser@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0" - integrity sha1-x84o821LzZdE5f/CxfzeHHMmH8A= - dependencies: - is-regex "^1.0.3" - -character-reference-invalid@^1.0.0: - version "1.1.4" - resolved "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" - integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== - -chardet@^0.7.0: - version "0.7.0" - resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" - integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== - -chokidar@^3.5.2: - version "3.5.2" - resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" - integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - -ci-info@^3.1.1: - version "3.2.0" - resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.2.0.tgz#2876cb948a498797b5236f0095bc057d0dca38b6" - integrity sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A== - -cjs-module-lexer@^1.0.0: - version "1.2.1" - resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.1.tgz#2fd46d9906a126965aa541345c499aaa18e8cd73" - integrity sha512-jVamGdJPDeuQilKhvVn1h3knuMOZzr8QDnpk+M9aMlCaMkTDd6fBWPhiDqFvFZ07pL0liqabAiuy8SY4jGHeaw== - -class-utils@^0.3.5: - version "0.3.6" - resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" - integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== - dependencies: - arr-union "^3.1.0" - define-property "^0.2.5" - isobject "^3.0.0" - static-extend "^0.1.1" - -clean-css@^4.2.3: - version "4.2.3" - resolved "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78" - integrity sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA== - dependencies: - source-map "~0.6.0" - -clean-css@^5.1.2: - version "5.1.2" - resolved "https://registry.npmjs.org/clean-css/-/clean-css-5.1.2.tgz#6ea0da7286b4ddc2469a1b776e2461a5007eed54" - integrity sha512-QcaGg9OuMo+0Ds933yLOY+gHPWbxhxqF0HDexmToPf8pczvmvZGYzd+QqWp9/mkucAOKViI+dSFOqoZIvXbeBw== - dependencies: - source-map "~0.6.0" - -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - -cli-cursor@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" - integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= - dependencies: - restore-cursor "^2.0.0" - -cli-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" - integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== - dependencies: - restore-cursor "^3.1.0" - -cli-spinners@^2.5.0: - version "2.6.0" - resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz#36c7dc98fb6a9a76bd6238ec3f77e2425627e939" - integrity sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q== - -cli-truncate@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" - integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== - dependencies: - slice-ansi "^3.0.0" - string-width "^4.2.0" - -cli-width@^2.0.0: - version "2.2.1" - resolved "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" - integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== - -cli-width@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" - integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== - -cliui@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" - integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== - dependencies: - string-width "^3.1.0" - strip-ansi "^5.2.0" - wrap-ansi "^5.1.0" - -cliui@^7.0.2: - version "7.0.4" - resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - -clone-regexp@^2.1.0: - version "2.2.0" - resolved "https://registry.npmjs.org/clone-regexp/-/clone-regexp-2.2.0.tgz#7d65e00885cd8796405c35a737e7a86b7429e36f" - integrity sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q== - dependencies: - is-regexp "^2.0.0" - -clone-response@1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" - integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= - dependencies: - mimic-response "^1.0.0" - -clone@^1.0.2: - version "1.0.4" - resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" - integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= - -clone@^2.1.1: - version "2.1.2" - resolved "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" - integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= - -co@^4.6.0: - version "4.6.0" - resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= - -collect-v8-coverage@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" - integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== - -collection-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" - integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= - dependencies: - map-visit "^1.0.0" - object-visit "^1.0.0" - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= - -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -colorette@^1.2.1, colorette@^1.2.2: - version "1.2.2" - resolved "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" - integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== - -colors@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" - integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== - -combined-stream@^1.0.8: - version "1.0.8" - resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -commander@*, commander@^7.1.0, commander@^7.2.0: - version "7.2.0" - resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" - integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== - -commander@^2.20.0, commander@^2.8.1: - version "2.20.3" - resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - -commander@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" - integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== - -commitizen@^4.0.3, commitizen@^4.2.4: - version "4.2.4" - resolved "https://registry.npmjs.org/commitizen/-/commitizen-4.2.4.tgz#a3e5b36bd7575f6bf6e7aa19dbbf06b0d8f37165" - integrity sha512-LlZChbDzg3Ir3O2S7jSo/cgWp5/QwylQVr59K4xayVq8S4/RdKzSyJkghAiZZHfhh5t4pxunUoyeg0ml1q/7aw== - dependencies: - cachedir "2.2.0" - cz-conventional-changelog "3.2.0" - dedent "0.7.0" - detect-indent "6.0.0" - find-node-modules "^2.1.2" - find-root "1.1.0" - fs-extra "8.1.0" - glob "7.1.4" - inquirer "6.5.2" - is-utf8 "^0.2.1" - lodash "^4.17.20" - minimist "1.2.5" - strip-bom "4.0.0" - strip-json-comments "3.0.1" - -common-tags@^1.8.0: - version "1.8.0" - resolved "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" - integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw== - -compare-func@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" - integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== - dependencies: - array-ify "^1.0.0" - dot-prop "^5.1.0" - -component-emitter@^1.2.1: - version "1.3.0" - resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== - -compute-scroll-into-view@^1.0.17: - version "1.0.17" - resolved "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz#6a88f18acd9d42e9cf4baa6bec7e0522607ab7ab" - integrity sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg== - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= - -config-chain@^1.1.11: - version "1.1.13" - resolved "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" - integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== - dependencies: - ini "^1.3.4" - proto-list "~1.2.1" - -connect@^3.7.0: - version "3.7.0" - resolved "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" - integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ== - dependencies: - debug "2.6.9" - finalhandler "1.1.2" - parseurl "~1.3.3" - utils-merge "1.0.1" - -console-stream@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/console-stream/-/console-stream-0.1.1.tgz#a095fe07b20465955f2fafd28b5d72bccd949d44" - integrity sha1-oJX+B7IEZZVfL6/Si11yvM2UnUQ= - -consolidate@^0.16.0: - version "0.16.0" - resolved "https://registry.npmjs.org/consolidate/-/consolidate-0.16.0.tgz#a11864768930f2f19431660a65906668f5fbdc16" - integrity sha512-Nhl1wzCslqXYTJVDyJCu3ODohy9OfBMB5uD2BiBTzd7w+QY0lBzafkR8y8755yMYHAaMD4NuzbAw03/xzfw+eQ== - dependencies: - bluebird "^3.7.2" - -constant-case@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz#3b84a9aeaf4cf31ec45e6bf5de91bdfb0589faf1" - integrity sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - upper-case "^2.0.2" - -constantinople@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/constantinople/-/constantinople-4.0.1.tgz#0def113fa0e4dc8de83331a5cf79c8b325213151" - integrity sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw== - dependencies: - "@babel/parser" "^7.6.0" - "@babel/types" "^7.6.1" - -content-disposition@^0.5.2: - version "0.5.3" - resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" - integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== - dependencies: - safe-buffer "5.1.2" - -conventional-changelog-angular@^5.0.11, conventional-changelog-angular@^5.0.12: - version "5.0.12" - resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.12.tgz#c979b8b921cbfe26402eb3da5bbfda02d865a2b9" - integrity sha512-5GLsbnkR/7A89RyHLvvoExbiGbd9xKdKqDTrArnPbOqBqG/2wIosu0fHwpeIRI8Tl94MhVNBXcLJZl92ZQ5USw== - dependencies: - compare-func "^2.0.0" - q "^1.5.1" - -conventional-changelog-atom@^2.0.8: - version "2.0.8" - resolved "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz#a759ec61c22d1c1196925fca88fe3ae89fd7d8de" - integrity sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw== - dependencies: - q "^1.5.1" - -conventional-changelog-cli@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-2.1.1.tgz#7a11980bc399938e0509d2adf8e7a0e213eb994e" - integrity sha512-xMGQdKJ+4XFDDgfX5aK7UNFduvJMbvF5BB+g0OdVhA3rYdYyhctrIE2Al+WYdZeKTdg9YzMWF2iFPT8MupIwng== - dependencies: - add-stream "^1.0.0" - conventional-changelog "^3.1.24" - lodash "^4.17.15" - meow "^8.0.0" - tempfile "^3.0.0" - -conventional-changelog-codemirror@^2.0.8: - version "2.0.8" - resolved "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz#398e9530f08ce34ec4640af98eeaf3022eb1f7dc" - integrity sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw== - dependencies: - q "^1.5.1" - -conventional-changelog-conventionalcommits@^4.3.1, conventional-changelog-conventionalcommits@^4.5.0: - version "4.6.0" - resolved "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.0.tgz#7fc17211dbca160acf24687bd2fdd5fd767750eb" - integrity sha512-sj9tj3z5cnHaSJCYObA9nISf7eq/YjscLPoq6nmew4SiOjxqL2KRpK20fjnjVbpNDjJ2HR3MoVcWKXwbVvzS0A== - dependencies: - compare-func "^2.0.0" - lodash "^4.17.15" - q "^1.5.1" - -conventional-changelog-core@^4.2.1: - version "4.2.2" - resolved "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.2.tgz#f0897df6d53b5d63dec36b9442bd45354f8b3ce5" - integrity sha512-7pDpRUiobQDNkwHyJG7k9f6maPo9tfPzkSWbRq97GGiZqisElhnvUZSvyQH20ogfOjntB5aadvv6NNcKL1sReg== - dependencies: - add-stream "^1.0.0" - conventional-changelog-writer "^4.0.18" - conventional-commits-parser "^3.2.0" - dateformat "^3.0.0" - get-pkg-repo "^1.0.0" - git-raw-commits "^2.0.8" - git-remote-origin-url "^2.0.0" - git-semver-tags "^4.1.1" - lodash "^4.17.15" - normalize-package-data "^3.0.0" - q "^1.5.1" - read-pkg "^3.0.0" - read-pkg-up "^3.0.0" - shelljs "^0.8.3" - through2 "^4.0.0" - -conventional-changelog-ember@^2.0.9: - version "2.0.9" - resolved "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz#619b37ec708be9e74a220f4dcf79212ae1c92962" - integrity sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A== - dependencies: - q "^1.5.1" - -conventional-changelog-eslint@^3.0.9: - version "3.0.9" - resolved "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz#689bd0a470e02f7baafe21a495880deea18b7cdb" - integrity sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA== - dependencies: - q "^1.5.1" - -conventional-changelog-express@^2.0.6: - version "2.0.6" - resolved "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz#420c9d92a347b72a91544750bffa9387665a6ee8" - integrity sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ== - dependencies: - q "^1.5.1" - -conventional-changelog-jquery@^3.0.11: - version "3.0.11" - resolved "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz#d142207400f51c9e5bb588596598e24bba8994bf" - integrity sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw== - dependencies: - q "^1.5.1" - -conventional-changelog-jshint@^2.0.9: - version "2.0.9" - resolved "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz#f2d7f23e6acd4927a238555d92c09b50fe3852ff" - integrity sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA== - dependencies: - compare-func "^2.0.0" - q "^1.5.1" - -conventional-changelog-preset-loader@^2.3.4: - version "2.3.4" - resolved "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c" - integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g== - -conventional-changelog-writer@^4.0.18: - version "4.1.0" - resolved "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.1.0.tgz#1ca7880b75aa28695ad33312a1f2366f4b12659f" - integrity sha512-WwKcUp7WyXYGQmkLsX4QmU42AZ1lqlvRW9mqoyiQzdD+rJWbTepdWoKJuwXTS+yq79XKnQNa93/roViPQrAQgw== - dependencies: - compare-func "^2.0.0" - conventional-commits-filter "^2.0.7" - dateformat "^3.0.0" - handlebars "^4.7.6" - json-stringify-safe "^5.0.1" - lodash "^4.17.15" - meow "^8.0.0" - semver "^6.0.0" - split "^1.0.0" - through2 "^4.0.0" - -conventional-changelog@^3.1.24: - version "3.1.24" - resolved "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.24.tgz#ebd180b0fd1b2e1f0095c4b04fd088698348a464" - integrity sha512-ed6k8PO00UVvhExYohroVPXcOJ/K1N0/drJHx/faTH37OIZthlecuLIRX/T6uOp682CAoVoFpu+sSEaeuH6Asg== - dependencies: - conventional-changelog-angular "^5.0.12" - conventional-changelog-atom "^2.0.8" - conventional-changelog-codemirror "^2.0.8" - conventional-changelog-conventionalcommits "^4.5.0" - conventional-changelog-core "^4.2.1" - conventional-changelog-ember "^2.0.9" - conventional-changelog-eslint "^3.0.9" - conventional-changelog-express "^2.0.6" - conventional-changelog-jquery "^3.0.11" - conventional-changelog-jshint "^2.0.9" - conventional-changelog-preset-loader "^2.3.4" - -conventional-commit-types@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz#7c9214e58eae93e85dd66dbfbafe7e4fffa2365b" - integrity sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg== - -conventional-commits-filter@^2.0.7: - version "2.0.7" - resolved "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz#f8d9b4f182fce00c9af7139da49365b136c8a0b3" - integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA== - dependencies: - lodash.ismatch "^4.4.0" - modify-values "^1.0.0" - -conventional-commits-parser@^3.0.0, conventional-commits-parser@^3.2.0: - version "3.2.1" - resolved "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.1.tgz#ba44f0b3b6588da2ee9fd8da508ebff50d116ce2" - integrity sha512-OG9kQtmMZBJD/32NEw5IhN5+HnBqVjy03eC+I71I0oQRFA5rOgA4OtPOYG7mz1GkCfCNxn3gKIX8EiHJYuf1cA== - dependencies: - JSONStream "^1.0.4" - is-text-path "^1.0.1" - lodash "^4.17.15" - meow "^8.0.0" - split2 "^3.0.0" - through2 "^4.0.0" - trim-off-newlines "^1.0.0" - -convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: - version "1.7.0" - resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" - integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== - dependencies: - safe-buffer "~5.1.1" - -copy-anything@^2.0.1: - version "2.0.3" - resolved "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.3.tgz#842407ba02466b0df844819bbe3baebbe5d45d87" - integrity sha512-GK6QUtisv4fNS+XcI7shX0Gx9ORg7QqIznyfho79JTnX1XhLiyZHfftvGiziqzRiEi/Bjhgpi+D2o7HxJFPnDQ== - dependencies: - is-what "^3.12.0" - -copy-descriptor@^0.1.0: - version "0.1.1" - resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" - integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= - -core-js-compat@^3.14.0: - version "3.14.0" - resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.14.0.tgz#b574dabf29184681d5b16357bd33d104df3d29a5" - integrity sha512-R4NS2eupxtiJU+VwgkF9WTpnSfZW4pogwKHd8bclWU2sp93Pr5S1uYJI84cMOubJRou7bcfL0vmwtLslWN5p3A== - dependencies: - browserslist "^4.16.6" - semver "7.0.0" - -core-js@^3.12.1: - version "3.14.0" - resolved "https://registry.npmjs.org/core-js/-/core-js-3.14.0.tgz#62322b98c71cc2018b027971a69419e2425c2a6c" - integrity sha512-3s+ed8er9ahK+zJpp9ZtuVcDoFzHNiZsPbNAAE4KXgrRHbjSqqNN6xGSXq6bq7TZIbKj4NLrLb6bJ5i+vSVjHA== - -core-js@^3.16.0: - version "3.16.0" - resolved "https://registry.npmjs.org/core-js/-/core-js-3.16.0.tgz#1d46fb33720bc1fa7f90d20431f36a5540858986" - integrity sha512-5+5VxRFmSf97nM8Jr2wzOwLqRo6zphH2aX+7KsAUONObyzakDNq2G/bgbhinxB4PoV9L3aXQYhiDKyIKWd2c8g== - -core-util-is@~1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= - -cors@^2.8.5: - version "2.8.5" - resolved "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" - integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== - dependencies: - object-assign "^4" - vary "^1" - -corser@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz#8eda252ecaab5840dcd975ceb90d9370c819ff87" - integrity sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c= - -cosmiconfig@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" - integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== - dependencies: - "@types/parse-json" "^4.0.0" - import-fresh "^3.2.1" - parse-json "^5.0.0" - path-type "^4.0.0" - yaml "^1.10.0" - -create-require@^1.1.0: - version "1.1.1" - resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" - integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== - -cross-env@^7.0.3: - version "7.0.3" - resolved "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz#865264b29677dc015ba8418918965dd232fc54cf" - integrity sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw== - dependencies: - cross-spawn "^7.0.1" - -cross-fetch@^3.0.6: - version "3.1.4" - resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz#9723f3a3a247bf8b89039f3a380a9244e8fa2f39" - integrity sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ== - dependencies: - node-fetch "2.6.1" - -cross-spawn@^5.0.1: - version "5.1.0" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" - integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= - dependencies: - lru-cache "^4.0.1" - shebang-command "^1.2.0" - which "^1.2.9" - -cross-spawn@^6.0.0, cross-spawn@^6.0.5: - version "6.0.5" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - dependencies: - nice-try "^1.0.4" - path-key "^2.0.1" - semver "^5.5.0" - shebang-command "^1.2.0" - which "^1.2.9" - -cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -crypto-js@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" - integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== - -crypto-random-string@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" - integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== - -css-select@^4.1.3: - version "4.1.3" - resolved "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz#a70440f70317f2669118ad74ff105e65849c7067" - integrity sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA== - dependencies: - boolbase "^1.0.0" - css-what "^5.0.0" - domhandler "^4.2.0" - domutils "^2.6.0" - nth-check "^2.0.0" - -css-tree@^1.1.2: - version "1.1.3" - resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" - integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== - dependencies: - mdn-data "2.0.14" - source-map "^0.6.1" - -css-what@^5.0.0: - version "5.0.1" - resolved "https://registry.npmjs.org/css-what/-/css-what-5.0.1.tgz#3efa820131f4669a8ac2408f9c32e7c7de9f4cad" - integrity sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg== - -cssesc@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" - integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== - -csso@^4.2.0: - version "4.2.0" - resolved "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" - integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== - dependencies: - css-tree "^1.1.2" - -cssom@^0.4.4: - version "0.4.4" - resolved "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" - integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== - -cssom@~0.3.6: - version "0.3.8" - resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" - integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== - -cssstyle@^2.3.0: - version "2.3.0" - resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" - integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== - dependencies: - cssom "~0.3.6" - -csstype@^2.6.8: - version "2.6.17" - resolved "https://registry.npmjs.org/csstype/-/csstype-2.6.17.tgz#4cf30eb87e1d1a005d8b6510f95292413f6a1c0e" - integrity sha512-u1wmTI1jJGzCJzWndZo8mk4wnPTZd1eOIYTYvuEyOQGfmDl3TrabCCfKnOC86FZwW/9djqTl933UF/cS425i9A== - -currently-unhandled@^0.4.1: - version "0.4.1" - resolved "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" - integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= - dependencies: - array-find-index "^1.0.1" - -cwebp-bin@^5.0.0: - version "5.1.0" - resolved "https://registry.npmjs.org/cwebp-bin/-/cwebp-bin-5.1.0.tgz#d5bea87c127358558e7bf7a90a6d440d42dcb074" - integrity sha512-BsPKStaNr98zfxwejWWLIGELbPERULJoD2v5ijvpeutSAGsegX7gmABgnkRK7MUucCPROXXfaPqkLAwI509JzA== - dependencies: - bin-build "^3.0.0" - bin-wrapper "^4.0.1" - logalot "^2.1.0" - -cz-conventional-changelog@3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/cz-conventional-changelog/-/cz-conventional-changelog-3.2.0.tgz#6aef1f892d64113343d7e455529089ac9f20e477" - integrity sha512-yAYxeGpVi27hqIilG1nh4A9Bnx4J3Ov+eXy4koL3drrR+IO9GaWPsKjik20ht608Asqi8TQPf0mczhEeyAtMzg== - dependencies: - chalk "^2.4.1" - commitizen "^4.0.3" - conventional-commit-types "^3.0.0" - lodash.map "^4.5.1" - longest "^2.0.1" - word-wrap "^1.0.3" - optionalDependencies: - "@commitlint/load" ">6.1.1" - -dargs@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" - integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== - -data-urls@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" - integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== - dependencies: - abab "^2.0.3" - whatwg-mimetype "^2.3.0" - whatwg-url "^8.0.0" - -dateformat@^3.0.0: - version "3.0.3" - resolved "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" - integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== - -debug@2.6.9, debug@^2.2.0, debug@^2.3.3: - version "2.6.9" - resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@4, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: - version "4.3.1" - resolved "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" - integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== - dependencies: - ms "2.1.2" - -debug@^3.1.1, debug@^3.2.6: - version "3.2.7" - resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== - dependencies: - ms "^2.1.1" - -debug@^4.3.2: - version "4.3.2" - resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" - integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== - dependencies: - ms "2.1.2" - -decamelize-keys@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" - integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= - dependencies: - decamelize "^1.1.0" - map-obj "^1.0.0" - -decamelize@^1.1.0, decamelize@^1.1.2, decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= - -decimal.js@^10.2.1: - version "10.2.1" - resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz#238ae7b0f0c793d3e3cea410108b35a2c01426a3" - integrity sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw== - -decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= - -decompress-response@^3.2.0, decompress-response@^3.3.0: - version "3.3.0" - resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" - integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= - dependencies: - mimic-response "^1.0.0" - -decompress-tar@^4.0.0, decompress-tar@^4.1.0, decompress-tar@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz#718cbd3fcb16209716e70a26b84e7ba4592e5af1" - integrity sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ== - dependencies: - file-type "^5.2.0" - is-stream "^1.1.0" - tar-stream "^1.5.2" - -decompress-tarbz2@^4.0.0: - version "4.1.1" - resolved "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz#3082a5b880ea4043816349f378b56c516be1a39b" - integrity sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A== - dependencies: - decompress-tar "^4.1.0" - file-type "^6.1.0" - is-stream "^1.1.0" - seek-bzip "^1.0.5" - unbzip2-stream "^1.0.9" - -decompress-targz@^4.0.0: - version "4.1.1" - resolved "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz#c09bc35c4d11f3de09f2d2da53e9de23e7ce1eee" - integrity sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w== - dependencies: - decompress-tar "^4.1.1" - file-type "^5.2.0" - is-stream "^1.1.0" - -decompress-unzip@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz#deaaccdfd14aeaf85578f733ae8210f9b4848f69" - integrity sha1-3qrM39FK6vhVePczroIQ+bSEj2k= - dependencies: - file-type "^3.8.0" - get-stream "^2.2.0" - pify "^2.3.0" - yauzl "^2.4.2" - -decompress@^4.0.0, decompress@^4.2.0: - version "4.2.1" - resolved "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz#007f55cc6a62c055afa37c07eb6a4ee1b773f118" - integrity sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ== - dependencies: - decompress-tar "^4.0.0" - decompress-tarbz2 "^4.0.0" - decompress-targz "^4.0.0" - decompress-unzip "^4.0.1" - graceful-fs "^4.1.10" - make-dir "^1.0.0" - pify "^2.3.0" - strip-dirs "^2.0.0" - -dedent@0.7.0, dedent@^0.7.0: - version "0.7.0" - resolved "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" - integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= - -deep-is@^0.1.3, deep-is@~0.1.3: - version "0.1.3" - resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" - integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= - -deepmerge@^4.2.2: - version "4.2.2" - resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" - integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== - -defaults@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" - integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= - dependencies: - clone "^1.0.2" - -define-properties@^1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" - integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== - dependencies: - object-keys "^1.0.12" - -define-property@^0.2.5: - version "0.2.5" - resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" - integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= - dependencies: - is-descriptor "^0.1.0" - -define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" - integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= - dependencies: - is-descriptor "^1.0.0" - -define-property@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" - integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== - dependencies: - is-descriptor "^1.0.2" - isobject "^3.0.1" - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= - -detect-file@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" - integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= - -detect-indent@6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-6.0.0.tgz#0abd0f549f69fc6659a254fe96786186b6f528fd" - integrity sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA== - -detect-newline@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" - integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== - -diff-sequences@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.0.6.tgz#3305cb2e55a033924054695cc66019fd7f8e5723" - integrity sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ== - -diff@^4.0.1: - version "4.0.2" - resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" - integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== - -dijkstrajs@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.2.tgz#2e48c0d3b825462afe75ab4ad5e829c8ece36257" - integrity sha512-QV6PMaHTCNmKSeP6QoXhVTw9snc9VD8MulTT0Bd99Pacp4SS1cjcrYPgBPmibqKVtMJJfqC6XvOXgPMEEPH/fg== - -dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - -doctrine@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - -doctypes@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" - integrity sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk= - -dom-align@^1.12.1: - version "1.12.2" - resolved "https://registry.yarnpkg.com/dom-align/-/dom-align-1.12.2.tgz#0f8164ebd0c9c21b0c790310493cd855892acd4b" - integrity sha512-pHuazgqrsTFrGU2WLDdXxCFabkdQDx72ddkraZNih1KsMcN5qsRSTR9O4VJRlwTPCPb5COYg3LOfiMHHcPInHg== - -dom-scroll-into-view@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/dom-scroll-into-view/-/dom-scroll-into-view-2.0.1.tgz#0decc8522801fd8d3f1c6ba355a74d382c5f989b" - integrity sha512-bvVTQe1lfaUr1oFzZX80ce9KLDlZ3iU+XGNE/bz9HnGdklTieqsbmsLHe+rT2XWqopvL0PckkYqN7ksmm5pe3w== - -dom-serializer@0: - version "0.2.2" - resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" - integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== - dependencies: - domelementtype "^2.0.1" - entities "^2.0.0" - -dom-serializer@^1.0.1: - version "1.3.2" - resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz#6206437d32ceefaec7161803230c7a20bc1b4d91" - integrity sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig== - dependencies: - domelementtype "^2.0.1" - domhandler "^4.2.0" - entities "^2.0.0" - -domelementtype@1, domelementtype@^1.3.1: - version "1.3.1" - resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" - integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== - -domelementtype@^2.0.1, domelementtype@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57" - integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== - -domexception@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" - integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== - dependencies: - webidl-conversions "^5.0.0" - -domhandler@^2.3.0: - version "2.4.2" - resolved "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" - integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== - dependencies: - domelementtype "1" - -domhandler@^4.0.0, domhandler@^4.2.0: - version "4.2.0" - resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz#f9768a5f034be60a89a27c2e4d0f74eba0d8b059" - integrity sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA== - dependencies: - domelementtype "^2.2.0" - -domutils@^1.5.1: - version "1.7.0" - resolved "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" - integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== - dependencies: - dom-serializer "0" - domelementtype "1" - -domutils@^2.5.2, domutils@^2.6.0: - version "2.7.0" - resolved "https://registry.npmjs.org/domutils/-/domutils-2.7.0.tgz#8ebaf0c41ebafcf55b0b72ec31c56323712c5442" - integrity sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg== - dependencies: - dom-serializer "^1.0.1" - domelementtype "^2.2.0" - domhandler "^4.2.0" - -dot-case@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" - integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - -dot-prop@^5.1.0: - version "5.3.0" - resolved "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" - integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== - dependencies: - is-obj "^2.0.0" - -dotenv@^10.0.0: - version "10.0.0" - resolved "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" - integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== - -download@^6.2.2: - version "6.2.5" - resolved "https://registry.npmjs.org/download/-/download-6.2.5.tgz#acd6a542e4cd0bb42ca70cfc98c9e43b07039714" - integrity sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA== - dependencies: - caw "^2.0.0" - content-disposition "^0.5.2" - decompress "^4.0.0" - ext-name "^5.0.0" - file-type "5.2.0" - filenamify "^2.0.0" - get-stream "^3.0.0" - got "^7.0.0" - make-dir "^1.0.0" - p-event "^1.0.0" - pify "^3.0.0" - -download@^7.1.0: - version "7.1.0" - resolved "https://registry.npmjs.org/download/-/download-7.1.0.tgz#9059aa9d70b503ee76a132897be6dec8e5587233" - integrity sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ== - dependencies: - archive-type "^4.0.0" - caw "^2.0.1" - content-disposition "^0.5.2" - decompress "^4.2.0" - ext-name "^5.0.0" - file-type "^8.1.0" - filenamify "^2.0.0" - get-stream "^3.0.0" - got "^8.3.1" - make-dir "^1.2.0" - p-event "^2.1.0" - pify "^3.0.0" - -duplexer3@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" - integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= - -echarts@^5.1.2: - version "5.1.2" - resolved "https://registry.npmjs.org/echarts/-/echarts-5.1.2.tgz#aa1ab0cef5b74fa2f7c620261a5f286893d30fd1" - integrity sha512-okUhO4sw22vwZp+rTPNjd/bvTdpug4K4sHNHyrV8NdAncIX9/AarlolFqtJCAYKGFYhUBNjIWu1EznFrSWTFxg== - dependencies: - tslib "2.0.3" - zrender "5.1.1" - -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= - -ejs@^2.6.1: - version "2.7.4" - resolved "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" - integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== - -ejs@^3.1.6: - version "3.1.6" - resolved "https://registry.npmjs.org/ejs/-/ejs-3.1.6.tgz#5bfd0a0689743bb5268b3550cceeebbc1702822a" - integrity sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw== - dependencies: - jake "^10.6.1" - -electron-to-chromium@^1.3.723: - version "1.3.752" - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.752.tgz#0728587f1b9b970ec9ffad932496429aef750d09" - integrity sha512-2Tg+7jSl3oPxgsBsWKh5H83QazTkmWG/cnNwJplmyZc7KcN61+I10oUgaXSVk/NwfvN3BdkKDR4FYuRBQQ2v0A== - -emittery@^0.8.1: - version "0.8.1" - resolved "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860" - integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== - -emmet@^2.3.0: - version "2.3.4" - resolved "https://registry.npmjs.org/emmet/-/emmet-2.3.4.tgz#5ba0d7a5569a68c7697dfa890c772e4f3179d123" - integrity sha512-3IqSwmO+N2ZGeuhDyhV/TIOJFUbkChi53bcasSNRE7Yd+4eorbbYz4e53TpMECt38NtYkZNupQCZRlwdAYA42A== - dependencies: - "@emmetio/abbreviation" "^2.2.2" - "@emmetio/css-abbreviation" "^2.1.4" - -emoji-regex@^7.0.1: - version "7.0.3" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" - integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -emojis-list@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" - integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== - -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= - -end-of-stream@^1.0.0, end-of-stream@^1.1.0: - version "1.4.4" - resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -enquirer@^2.3.5, enquirer@^2.3.6: - version "2.3.6" - resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" - integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== - dependencies: - ansi-colors "^4.1.1" - -entities@^1.1.1: - version "1.1.2" - resolved "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" - integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== - -entities@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" - integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== - -errno@^0.1.1: - version "0.1.8" - resolved "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" - integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== - dependencies: - prr "~1.0.1" - -error-ex@^1.2.0, error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -es-abstract@^1.18.0-next.2: - version "1.18.3" - resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz#25c4c3380a27aa203c44b2b685bba94da31b63e0" - integrity sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw== - dependencies: - call-bind "^1.0.2" - es-to-primitive "^1.2.1" - function-bind "^1.1.1" - get-intrinsic "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.2" - is-callable "^1.2.3" - is-negative-zero "^2.0.1" - is-regex "^1.1.3" - is-string "^1.0.6" - object-inspect "^1.10.3" - object-keys "^1.1.1" - object.assign "^4.1.2" - string.prototype.trimend "^1.0.4" - string.prototype.trimstart "^1.0.4" - unbox-primitive "^1.0.1" - -es-module-lexer@^0.7.1: - version "0.7.1" - resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.7.1.tgz#c2c8e0f46f2df06274cdaf0dd3f3b33e0a0b267d" - integrity sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw== - -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -esbuild-node-loader@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/esbuild-node-loader/-/esbuild-node-loader-0.1.1.tgz#b43937133e70435f9dd1dc058a5ac27ccc7addbe" - integrity sha512-n24xYzMfKmPupUZgs0QYBr52HUSh1M1vDtBfkEVa6pdENqo5+U5WP+zaj4Iw2MinuYk1axLW8+NVutrBCkrdmA== - dependencies: - esbuild "^0.12.6" - -esbuild-plugin-alias@^0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/esbuild-plugin-alias/-/esbuild-plugin-alias-0.1.2.tgz#1232fbde807c0c8ad44c44ec859819eb492e12a8" - integrity sha512-WsX0OJy8IGOsGZV+4oHEU5B6XQUpxOsZN1iSoYf9COTDbY7WXcOwd1oCLYNWUIWCExyGXSghIGq2k7sXBldxwQ== - -esbuild-register@^2.6.0: - version "2.6.0" - resolved "https://registry.npmjs.org/esbuild-register/-/esbuild-register-2.6.0.tgz#9f19a54c82be751dd87673d6a66d7b9e1cdd8498" - integrity sha512-2u4AtnCXP5nivtIxZryiZOUcEQkOzFS7UhAqibUEmaTAThJ48gDLYTBF/Fsz+5r0hbV1jrFE6PQvPDUrKZNt/Q== - dependencies: - esbuild "^0.12.8" - jsonc-parser "^3.0.0" - -esbuild@0.11.3: - version "0.11.3" - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.11.3.tgz#b57165b907be4ffba651f6450538ce8d8c1d5eb0" - integrity sha512-BzVRHcCtFepjS9WcqRjqoIxLqgpK21a8J4Zi4msSGxDxiXVO1IbcqT1KjhdDDnJxKfe7bvzZrvMEX+bVO0Elcw== - -esbuild@^0.11.23: - version "0.11.23" - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.11.23.tgz#c42534f632e165120671d64db67883634333b4b8" - integrity sha512-iaiZZ9vUF5wJV8ob1tl+5aJTrwDczlvGP0JoMmnpC2B0ppiMCu8n8gmy5ZTGl5bcG081XBVn+U+jP+mPFm5T5Q== - -esbuild@^0.12.17: - version "0.12.24" - resolved "https://registry.nlark.com/esbuild/download/esbuild-0.12.24.tgz#21966fad25a80f368ed308101e88102bce0dc68f" - integrity sha1-IZZvrSWoDzaO0wgQHogQK84Nxo8= - -esbuild@^0.12.6, esbuild@^0.12.8: - version "0.12.9" - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.12.9.tgz#bed4e7087c286cd81d975631f77d47feb1660070" - integrity sha512-MWRhAbMOJ9RJygCrt778rz/qNYgA4ZVj6aXnNPxFjs7PmIpb0fuB9Gmg5uWrr6n++XKwwm/RmSz6RR5JL2Ocsw== - -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= - -escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= - -escape-string-regexp@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== - -escape-string-regexp@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" - integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== - -escodegen@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" - integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== - dependencies: - esprima "^4.0.1" - estraverse "^5.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - -eslint-config-prettier@^8.3.0: - version "8.3.0" - resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz#f7471b20b6fe8a9a9254cc684454202886a2dd7a" - integrity sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew== - -eslint-define-config@^1.0.9: - version "1.0.9" - resolved "https://registry.yarnpkg.com/eslint-define-config/-/eslint-define-config-1.0.9.tgz#72e5e2410c576667a6ba1b5bff9801eeda476256" - integrity sha512-LRzNlRo9sv43BAXY+nhZIUCZLRisTMEXXSqlGc2uZ8emAGyJv3FDSew2MIVRMwThexEjVxjNmeqduaexJ/GT3Q== - -eslint-plugin-jest@^24.4.0: - version "24.4.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-24.4.0.tgz#fa4b614dbd46a98b652d830377971f097bda9262" - integrity sha512-8qnt/hgtZ94E9dA6viqfViKBfkJwFHXgJmTWlMGDgunw1XJEGqm3eiPjDsTanM3/u/3Az82nyQM9GX7PM/QGmg== - dependencies: - "@typescript-eslint/experimental-utils" "^4.0.1" - -eslint-plugin-prettier@^3.4.0: - version "3.4.0" - resolved "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.0.tgz#cdbad3bf1dbd2b177e9825737fe63b476a08f0c7" - integrity sha512-UDK6rJT6INSfcOo545jiaOwB701uAIt2/dR7WnFQoGCVl1/EMqdANBmwUaqqQ45aXprsTGzSa39LI1PyuRBxxw== - dependencies: - prettier-linter-helpers "^1.0.0" - -eslint-plugin-vue@^7.16.0: - version "7.16.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.16.0.tgz#7fe9fea039a190b108319c1380adf543ef57707d" - integrity sha512-0E2dVvVC7I2Xm1HXyx+ZwPj9CNX4NJjs4K4r+GVsHWyt5Pew3JLD4fI7A91b2jeL0TXE7LlszrwLSTJU9eqehw== - dependencies: - eslint-utils "^2.1.0" - natural-compare "^1.4.0" - semver "^6.3.0" - vue-eslint-parser "^7.10.0" - -eslint-scope@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" - integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== - dependencies: - esrecurse "^4.3.0" - estraverse "^4.1.1" - -eslint-utils@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" - integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== - dependencies: - eslint-visitor-keys "^1.1.0" - -eslint-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" - integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== - dependencies: - eslint-visitor-keys "^2.0.0" - -eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" - integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== - -eslint-visitor-keys@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" - integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== - -eslint@^7.32.0: - version "7.32.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" - integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA== - dependencies: - "@babel/code-frame" "7.12.11" - "@eslint/eslintrc" "^0.4.3" - "@humanwhocodes/config-array" "^0.5.0" - ajv "^6.10.0" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.0.1" - doctrine "^3.0.0" - enquirer "^2.3.5" - escape-string-regexp "^4.0.0" - eslint-scope "^5.1.1" - eslint-utils "^2.1.0" - eslint-visitor-keys "^2.0.0" - espree "^7.3.1" - esquery "^1.4.0" - esutils "^2.0.2" - fast-deep-equal "^3.1.3" - file-entry-cache "^6.0.1" - functional-red-black-tree "^1.0.1" - glob-parent "^5.1.2" - globals "^13.6.0" - ignore "^4.0.6" - import-fresh "^3.0.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - js-yaml "^3.13.1" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.4.1" - lodash.merge "^4.6.2" - minimatch "^3.0.4" - natural-compare "^1.4.0" - optionator "^0.9.1" - progress "^2.0.0" - regexpp "^3.1.0" - semver "^7.2.1" - strip-ansi "^6.0.0" - strip-json-comments "^3.1.0" - table "^6.0.9" - text-table "^0.2.0" - v8-compile-cache "^2.0.3" - -esno@^0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/esno/-/esno-0.8.0.tgz#33ca366ea2cef6c499010b48c11848a719e9dbb3" - integrity sha512-zbvu/Kmv+/MznS1J3/U9fXBpnpl7N2dVkwihq1YzR4JzYfJMuwFxDQ0WcTSUX+rBXmKxbYlgj9dwbog+mJXo1Q== - dependencies: - cross-spawn "^7.0.3" - esbuild "^0.12.8" - esbuild-node-loader "^0.1.1" - esbuild-register "^2.6.0" - -espree@^6.2.1: - version "6.2.1" - resolved "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a" - integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw== - dependencies: - acorn "^7.1.1" - acorn-jsx "^5.2.0" - eslint-visitor-keys "^1.1.0" - -espree@^7.3.0, espree@^7.3.1: - version "7.3.1" - resolved "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" - integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== - dependencies: - acorn "^7.4.0" - acorn-jsx "^5.3.1" - eslint-visitor-keys "^1.3.0" - -esprima@^4.0.0, esprima@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esquery@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" - integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== - dependencies: - estraverse "^5.1.0" - -esrecurse@^4.3.0: - version "4.3.0" - resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== - dependencies: - estraverse "^5.2.0" - -estraverse@^4.1.1: - version "4.3.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -estraverse@^5.1.0, estraverse@^5.2.0: - version "5.2.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" - integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== - -estree-walker@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" - integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== - -estree-walker@^2.0.1: - version "2.0.2" - resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" - integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -etag@^1.8.1: - version "1.8.1" - resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= - -eventemitter3@^4.0.0: - version "4.0.7" - resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" - integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== - -exec-buffer@^3.0.0: - version "3.2.0" - resolved "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz#b1686dbd904c7cf982e652c1f5a79b1e5573082b" - integrity sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA== - dependencies: - execa "^0.7.0" - p-finally "^1.0.0" - pify "^3.0.0" - rimraf "^2.5.4" - tempfile "^2.0.0" - -execa@^0.7.0: - version "0.7.0" - resolved "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" - integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= - dependencies: - cross-spawn "^5.0.1" - get-stream "^3.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -execa@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" - integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== - dependencies: - cross-spawn "^6.0.0" - get-stream "^4.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -execa@^4.0.0: - version "4.1.0" - resolved "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" - integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== - dependencies: - cross-spawn "^7.0.0" - get-stream "^5.0.0" - human-signals "^1.1.1" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.0" - onetime "^5.1.0" - signal-exit "^3.0.2" - strip-final-newline "^2.0.0" - -execa@^5.0.0: - version "5.1.1" - resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" - integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== - dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.0" - human-signals "^2.1.0" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.1" - onetime "^5.1.2" - signal-exit "^3.0.3" - strip-final-newline "^2.0.0" - -execall@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/execall/-/execall-2.0.0.tgz#16a06b5fe5099df7d00be5d9c06eecded1663b45" - integrity sha512-0FU2hZ5Hh6iQnarpRtQurM/aAvp3RIbfvgLHrcqJYzhXyV2KFruhuChf9NC6waAhiUR7FFtlugkI4p7f2Fqlow== - dependencies: - clone-regexp "^2.1.0" - -executable@^4.1.0: - version "4.1.1" - resolved "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c" - integrity sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg== - dependencies: - pify "^2.2.0" - -exit@^0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= - -expand-brackets@^2.1.4: - version "2.1.4" - resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" - integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= - dependencies: - debug "^2.3.3" - define-property "^0.2.5" - extend-shallow "^2.0.1" - posix-character-classes "^0.1.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -expand-tilde@^2.0.0, expand-tilde@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" - integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI= - dependencies: - homedir-polyfill "^1.0.1" - -expect@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/expect/-/expect-27.0.6.tgz#a4d74fbe27222c718fff68ef49d78e26a8fd4c05" - integrity sha512-psNLt8j2kwg42jGBDSfAlU49CEZxejN1f1PlANWDZqIhBOVU/c2Pm888FcjWJzFewhIsNWfZJeLjUjtKGiPuSw== - dependencies: - "@jest/types" "^27.0.6" - ansi-styles "^5.0.0" - jest-get-type "^27.0.6" - jest-matcher-utils "^27.0.6" - jest-message-util "^27.0.6" - jest-regex-util "^27.0.6" - -ext-list@^2.0.0: - version "2.2.2" - resolved "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz#0b98e64ed82f5acf0f2931babf69212ef52ddd37" - integrity sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA== - dependencies: - mime-db "^1.28.0" - -ext-name@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz#70781981d183ee15d13993c8822045c506c8f0a6" - integrity sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ== - dependencies: - ext-list "^2.0.0" - sort-keys-length "^1.0.0" - -extend-shallow@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" - integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= - dependencies: - is-extendable "^0.1.0" - -extend-shallow@^3.0.0, extend-shallow@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" - integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= - dependencies: - assign-symbols "^1.0.0" - is-extendable "^1.0.1" - -extend@^3.0.0: - version "3.0.2" - resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - -external-editor@^3.0.3: - version "3.1.0" - resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" - integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== - dependencies: - chardet "^0.7.0" - iconv-lite "^0.4.24" - tmp "^0.0.33" - -extglob@^2.0.2: - version "2.0.4" - resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" - integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== - dependencies: - array-unique "^0.3.2" - define-property "^1.0.0" - expand-brackets "^2.1.4" - extend-shallow "^2.0.1" - fragment-cache "^0.2.1" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: - version "3.1.3" - resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-diff@^1.1.2: - version "1.2.0" - resolved "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" - integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== - -fast-glob@^3.0.3, fast-glob@^3.1.1, fast-glob@^3.2.5: - version "3.2.5" - resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz#7939af2a656de79a4f1901903ee8adcaa7cb9661" - integrity sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.0" - merge2 "^1.3.0" - micromatch "^4.0.2" - picomatch "^2.2.1" - -fast-glob@^3.2.7: - version "3.2.7" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" - integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: - version "2.0.6" - resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= - -fast-xml-parser@^3.19.0: - version "3.19.0" - resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz#cb637ec3f3999f51406dd8ff0e6fc4d83e520d01" - integrity sha512-4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg== - -fastest-levenshtein@^1.0.12: - version "1.0.12" - resolved "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz#9990f7d3a88cc5a9ffd1f1745745251700d497e2" - integrity sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow== - -fastq@^1.6.0: - version "1.11.0" - resolved "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz#bb9fb955a07130a918eb63c1f5161cc32a5d0858" - integrity sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g== - dependencies: - reusify "^1.0.4" - -fb-watchman@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" - integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== - dependencies: - bser "2.1.1" - -fd-slicer@~1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" - integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4= - dependencies: - pend "~1.2.0" - -figures@^1.3.5: - version "1.7.0" - resolved "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" - integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= - dependencies: - escape-string-regexp "^1.0.5" - object-assign "^4.1.0" - -figures@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" - integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= - dependencies: - escape-string-regexp "^1.0.5" - -figures@^3.0.0: - version "3.2.0" - resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== - dependencies: - escape-string-regexp "^1.0.5" - -file-entry-cache@^6.0.1: - version "6.0.1" - resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" - integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== - dependencies: - flat-cache "^3.0.4" - -file-type@5.2.0, file-type@^5.2.0: - version "5.2.0" - resolved "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz#2ddbea7c73ffe36368dfae49dc338c058c2b8ad6" - integrity sha1-LdvqfHP/42No365J3DOMBYwritY= - -file-type@^10.4.0, file-type@^10.5.0: - version "10.11.0" - resolved "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz#2961d09e4675b9fb9a3ee6b69e9cd23f43fd1890" - integrity sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw== - -file-type@^12.0.0: - version "12.4.2" - resolved "https://registry.npmjs.org/file-type/-/file-type-12.4.2.tgz#a344ea5664a1d01447ee7fb1b635f72feb6169d9" - integrity sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg== - -file-type@^3.8.0: - version "3.9.0" - resolved "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz#257a078384d1db8087bc449d107d52a52672b9e9" - integrity sha1-JXoHg4TR24CHvESdEH1SpSZyuek= - -file-type@^4.2.0: - version "4.4.0" - resolved "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz#1b600e5fca1fbdc6e80c0a70c71c8dba5f7906c5" - integrity sha1-G2AOX8ofvcboDApwxxyNul95BsU= - -file-type@^6.1.0: - version "6.2.0" - resolved "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz#e50cd75d356ffed4e306dc4f5bcf52a79903a919" - integrity sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg== - -file-type@^8.1.0: - version "8.1.0" - resolved "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz#244f3b7ef641bbe0cca196c7276e4b332399f68c" - integrity sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ== - -filelist@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/filelist/-/filelist-1.0.2.tgz#80202f21462d4d1c2e214119b1807c1bc0380e5b" - integrity sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ== - dependencies: - minimatch "^3.0.4" - -filename-reserved-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz#abf73dfab735d045440abfea2d91f389ebbfa229" - integrity sha1-q/c9+rc10EVECr/qLZHzieu/oik= - -filenamify@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz#88faf495fb1b47abfd612300002a16228c677ee9" - integrity sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA== - dependencies: - filename-reserved-regex "^2.0.0" - strip-outer "^1.0.0" - trim-repeated "^1.0.0" - -fill-range@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" - integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= - dependencies: - extend-shallow "^2.0.1" - is-number "^3.0.0" - repeat-string "^1.6.1" - to-regex-range "^2.1.0" - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -finalhandler@1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" - integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== - dependencies: - debug "2.6.9" - encodeurl "~1.0.2" - escape-html "~1.0.3" - on-finished "~2.3.0" - parseurl "~1.3.3" - statuses "~1.5.0" - unpipe "~1.0.0" - -find-node-modules@^2.1.2: - version "2.1.2" - resolved "https://registry.npmjs.org/find-node-modules/-/find-node-modules-2.1.2.tgz#57565a3455baf671b835bc6b2134a9b938b9c53c" - integrity sha512-x+3P4mbtRPlSiVE1Qco0Z4YLU8WFiFcuWTf3m75OV9Uzcfs2Bg+O9N+r/K0AnmINBW06KpfqKwYJbFlFq4qNug== - dependencies: - findup-sync "^4.0.0" - merge "^2.1.0" - -find-root@1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" - integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== - -find-up@^1.0.0: - version "1.1.2" - resolved "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" - integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= - dependencies: - path-exists "^2.0.0" - pinkie-promise "^2.0.0" - -find-up@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" - integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= - dependencies: - locate-path "^2.0.0" - -find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== - dependencies: - locate-path "^3.0.0" - -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -find-up@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" - integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== - dependencies: - locate-path "^6.0.0" - path-exists "^4.0.0" - -find-versions@^3.0.0: - version "3.2.0" - resolved "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e" - integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww== - dependencies: - semver-regex "^2.0.0" - -findup-sync@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz#956c9cdde804052b881b428512905c4a5f2cdef0" - integrity sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ== - dependencies: - detect-file "^1.0.0" - is-glob "^4.0.0" - micromatch "^4.0.2" - resolve-dir "^1.0.1" - -flat-cache@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" - integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== - dependencies: - flatted "^3.1.0" - rimraf "^3.0.2" - -flatted@^3.1.0: - version "3.1.1" - resolved "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz#c4b489e80096d9df1dfc97c79871aea7c617c469" - integrity sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA== - -follow-redirects@^1.0.0, follow-redirects@^1.10.0: - version "1.14.1" - resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz#d9114ded0a1cfdd334e164e6662ad02bfd91ff43" - integrity sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg== - -for-in@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" - integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= - -form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -fraction.js@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.1.tgz#ac4e520473dae67012d618aab91eda09bcb400ff" - integrity sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg== - -fragment-cache@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" - integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= - dependencies: - map-cache "^0.2.2" - -from2@^2.1.1: - version "2.3.0" - resolved "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" - integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= - dependencies: - inherits "^2.0.1" - readable-stream "^2.0.0" - -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== - -fs-extra@8.1.0: - version "8.1.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" - integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^4.0.0" - universalify "^0.1.0" - -fs-extra@^10.0.0: - version "10.0.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz#9ff61b655dde53fb34a82df84bb214ce802e17c1" - integrity sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-extra@^9.0.1, fs-extra@^9.1.0: - version "9.1.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" - integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== - dependencies: - at-least-node "^1.0.0" - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= - -fsevents@^2.3.2, fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -functional-red-black-tree@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" - integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= - -generic-names@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/generic-names/-/generic-names-2.0.1.tgz#f8a378ead2ccaa7a34f0317b05554832ae41b872" - integrity sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ== - dependencies: - loader-utils "^1.1.0" - -gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-caller-file@^2.0.1, get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" - integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.1" - -get-own-enumerable-property-symbols@^3.0.0: - version "3.0.2" - resolved "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" - integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== - -get-package-type@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" - integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== - -get-pkg-repo@^1.0.0: - version "1.4.0" - resolved "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" - integrity sha1-xztInAbYDMVTbCyFP54FIyBWly0= - dependencies: - hosted-git-info "^2.1.4" - meow "^3.3.0" - normalize-package-data "^2.3.0" - parse-github-repo-url "^1.3.0" - through2 "^2.0.0" - -get-proxy@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz#349f2b4d91d44c4d4d4e9cba2ad90143fac5ef93" - integrity sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw== - dependencies: - npm-conf "^1.1.0" - -get-stdin@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" - integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= - -get-stdin@^8.0.0: - version "8.0.0" - resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" - integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== - -get-stream@3.0.0, get-stream@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" - integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= - -get-stream@^2.2.0: - version "2.3.1" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" - integrity sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4= - dependencies: - object-assign "^4.0.1" - pinkie-promise "^2.0.0" - -get-stream@^4.0.0: - version "4.1.0" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== - dependencies: - pump "^3.0.0" - -get-stream@^5.0.0: - version "5.2.0" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" - integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== - dependencies: - pump "^3.0.0" - -get-stream@^6.0.0: - version "6.0.1" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - -get-value@^2.0.3, get-value@^2.0.6: - version "2.0.6" - resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" - integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= - -gifsicle@^5.0.0: - version "5.2.0" - resolved "https://registry.npmjs.org/gifsicle/-/gifsicle-5.2.0.tgz#b06b25ed7530f033f6ed2c545d6f9b546cc182fb" - integrity sha512-vOIS3j0XoTCxq9pkGj43gEix82RkI5FveNgaFZutjbaui/HH+4fR8Y56dwXDuxYo8hR4xOo6/j2h1WHoQW6XLw== - dependencies: - bin-build "^3.0.0" - bin-wrapper "^4.0.0" - execa "^5.0.0" - logalot "^2.0.0" - -git-raw-commits@^2.0.0, git-raw-commits@^2.0.8: - version "2.0.10" - resolved "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.10.tgz#e2255ed9563b1c9c3ea6bd05806410290297bbc1" - integrity sha512-sHhX5lsbG9SOO6yXdlwgEMQ/ljIn7qMpAbJZCGfXX2fq5T8M5SrDnpYk9/4HswTildcIqatsWa91vty6VhWSaQ== - dependencies: - dargs "^7.0.0" - lodash "^4.17.15" - meow "^8.0.0" - split2 "^3.0.0" - through2 "^4.0.0" - -git-remote-origin-url@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" - integrity sha1-UoJlna4hBxRaERJhEq0yFuxfpl8= - dependencies: - gitconfiglocal "^1.0.0" - pify "^2.3.0" - -git-semver-tags@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-4.1.1.tgz#63191bcd809b0ec3e151ba4751c16c444e5b5780" - integrity sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA== - dependencies: - meow "^8.0.0" - semver "^6.0.0" - -gitconfiglocal@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" - integrity sha1-QdBF84UaXqiPA/JMocYXgRRGS5s= - dependencies: - ini "^1.3.2" - -glob-parent@^5.1.0, glob-parent@^5.1.2, glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob@7.1.4: - version "7.1.4" - resolved "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" - integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: - version "7.1.7" - resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" - integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -global-dirs@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" - integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= - dependencies: - ini "^1.3.4" - -global-modules@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" - integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== - dependencies: - global-prefix "^1.0.1" - is-windows "^1.0.1" - resolve-dir "^1.0.0" - -global-modules@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" - integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== - dependencies: - global-prefix "^3.0.0" - -global-prefix@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" - integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= - dependencies: - expand-tilde "^2.0.2" - homedir-polyfill "^1.0.1" - ini "^1.3.4" - is-windows "^1.0.1" - which "^1.2.14" - -global-prefix@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" - integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== - dependencies: - ini "^1.3.5" - kind-of "^6.0.2" - which "^1.3.1" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globals@^13.6.0, globals@^13.9.0: - version "13.9.0" - resolved "https://registry.npmjs.org/globals/-/globals-13.9.0.tgz#4bf2bf635b334a173fb1daf7c5e6b218ecdc06cb" - integrity sha512-74/FduwI/JaIrr1H8e71UbDE+5x7pIPs1C2rrwC52SszOo043CsWOZEMW7o2Y58xwm9b+0RBKDxY5n2sUpEFxA== - dependencies: - type-fest "^0.20.2" - -globby@^10.0.0: - version "10.0.2" - resolved "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz#277593e745acaa4646c3ab411289ec47a0392543" - integrity sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg== - dependencies: - "@types/glob" "^7.1.1" - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.0.3" - glob "^7.1.3" - ignore "^5.1.1" - merge2 "^1.2.3" - slash "^3.0.0" - -globby@^11.0.3: - version "11.0.4" - resolved "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" - integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== - dependencies: - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.1.1" - ignore "^5.1.4" - merge2 "^1.3.0" - slash "^3.0.0" - -globjoin@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43" - integrity sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM= - -gonzales-pe@^4.3.0: - version "4.3.0" - resolved "https://registry.npmjs.org/gonzales-pe/-/gonzales-pe-4.3.0.tgz#fe9dec5f3c557eead09ff868c65826be54d067b3" - integrity sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ== - dependencies: - minimist "^1.2.5" - -got@^7.0.0: - version "7.1.0" - resolved "https://registry.npmjs.org/got/-/got-7.1.0.tgz#05450fd84094e6bbea56f451a43a9c289166385a" - integrity sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw== - dependencies: - decompress-response "^3.2.0" - duplexer3 "^0.1.4" - get-stream "^3.0.0" - is-plain-obj "^1.1.0" - is-retry-allowed "^1.0.0" - is-stream "^1.0.0" - isurl "^1.0.0-alpha5" - lowercase-keys "^1.0.0" - p-cancelable "^0.3.0" - p-timeout "^1.1.1" - safe-buffer "^5.0.1" - timed-out "^4.0.0" - url-parse-lax "^1.0.0" - url-to-options "^1.0.1" - -got@^8.3.1: - version "8.3.2" - resolved "https://registry.npmjs.org/got/-/got-8.3.2.tgz#1d23f64390e97f776cac52e5b936e5f514d2e937" - integrity sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw== - dependencies: - "@sindresorhus/is" "^0.7.0" - cacheable-request "^2.1.1" - decompress-response "^3.3.0" - duplexer3 "^0.1.4" - get-stream "^3.0.0" - into-stream "^3.1.0" - is-retry-allowed "^1.1.0" - isurl "^1.0.0-alpha5" - lowercase-keys "^1.0.0" - mimic-response "^1.0.0" - p-cancelable "^0.4.0" - p-timeout "^2.0.1" - pify "^3.0.0" - safe-buffer "^5.1.1" - timed-out "^4.0.1" - url-parse-lax "^3.0.0" - url-to-options "^1.0.1" - -graceful-fs@^4.1.10, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4: - version "4.2.6" - resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" - integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== - -handlebars@^4.7.6: - version "4.7.7" - resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" - integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== - dependencies: - minimist "^1.2.5" - neo-async "^2.6.0" - source-map "^0.6.1" - wordwrap "^1.0.0" - optionalDependencies: - uglify-js "^3.1.4" - -hard-rejection@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" - integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== - -has-ansi@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= - dependencies: - ansi-regex "^2.0.0" - -has-bigints@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" - integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== - -has-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" - integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo= - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-symbol-support-x@^1.4.1: - version "1.4.2" - resolved "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455" - integrity sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw== - -has-symbols@^1.0.1, has-symbols@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" - integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== - -has-to-string-tag-x@^1.2.0: - version "1.4.1" - resolved "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz#a045ab383d7b4b2012a00148ab0aa5f290044d4d" - integrity sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw== - dependencies: - has-symbol-support-x "^1.4.1" - -has-value@^0.3.1: - version "0.3.1" - resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" - integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= - dependencies: - get-value "^2.0.3" - has-values "^0.1.4" - isobject "^2.0.0" - -has-value@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" - integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= - dependencies: - get-value "^2.0.6" - has-values "^1.0.0" - isobject "^3.0.0" - -has-values@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" - integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= - -has-values@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" - integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= - dependencies: - is-number "^3.0.0" - kind-of "^4.0.0" - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -hash-sum@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz#81d01bb5de8ea4a214ad5d6ead1b523460b0b45a" - integrity sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg== - -he@^1.1.0, he@^1.1.1, he@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" - integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== - -header-case@^2.0.4: - version "2.0.4" - resolved "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz#5a42e63b55177349cf405beb8d775acabb92c063" - integrity sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q== - dependencies: - capital-case "^1.0.4" - tslib "^2.0.3" - -homedir-polyfill@^1.0.1: - version "1.0.3" - resolved "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" - integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== - dependencies: - parse-passwd "^1.0.0" - -hosted-git-info@^2.1.4: - version "2.8.9" - resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" - integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== - -hosted-git-info@^4.0.1: - version "4.0.2" - resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.0.2.tgz#5e425507eede4fea846b7262f0838456c4209961" - integrity sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg== - dependencies: - lru-cache "^6.0.0" - -html-encoding-sniffer@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" - integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== - dependencies: - whatwg-encoding "^1.0.5" - -html-escaper@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" - integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== - -html-minifier-terser@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054" - integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg== - dependencies: - camel-case "^4.1.1" - clean-css "^4.2.3" - commander "^4.1.1" - he "^1.2.0" - param-case "^3.0.3" - relateurl "^0.2.7" - terser "^4.6.3" - -html-tags@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140" - integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg== - -htmlparser2@^3.10.0, htmlparser2@^3.8.3: - version "3.10.1" - resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" - integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== - dependencies: - domelementtype "^1.3.1" - domhandler "^2.3.0" - domutils "^1.5.1" - entities "^1.1.1" - inherits "^2.0.1" - readable-stream "^3.1.1" - -htmlparser2@^6.1.0: - version "6.1.0" - resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" - integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== - dependencies: - domelementtype "^2.0.1" - domhandler "^4.0.0" - domutils "^2.5.2" - entities "^2.0.0" - -http-cache-semantics@3.8.1: - version "3.8.1" - resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" - integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w== - -http-proxy-agent@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" - integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== - dependencies: - "@tootallnate/once" "1" - agent-base "6" - debug "4" - -http-proxy@^1.18.0: - version "1.18.1" - resolved "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" - integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== - dependencies: - eventemitter3 "^4.0.0" - follow-redirects "^1.0.0" - requires-port "^1.0.0" - -http-server@^13.0.0: - version "13.0.0" - resolved "https://registry.yarnpkg.com/http-server/-/http-server-13.0.0.tgz#27ab5f3bad0e27a29965a4029c26170162f7b98f" - integrity sha512-tqOx2M1CiZ3aVaE7Ue/0lup9kOG+Zqg6wdT1HygvxFnvPpU9doBMPcQ1ffT0/QS3J9ua35gipg0o3Dr8N0K0Tg== - dependencies: - basic-auth "^1.0.3" - colors "^1.4.0" - corser "^2.0.1" - he "^1.1.0" - http-proxy "^1.18.0" - mime "^1.6.0" - minimist "^1.2.5" - opener "^1.5.1" - portfinder "^1.0.25" - secure-compare "3.0.1" - union "~0.5.0" - url-join "^2.0.5" - -https-proxy-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" - integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== - dependencies: - agent-base "6" - debug "4" - -human-signals@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" - integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== - -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== - -husky@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/husky/-/husky-7.0.1.tgz#579f4180b5da4520263e8713cc832942b48e1f1c" - integrity sha512-gceRaITVZ+cJH9sNHqx5tFwbzlLCVxtVZcusME8JYQ8Edy5mpGDOqD8QBCdMhpyo9a+JXddnujQ4rpY2Ff9SJA== - -iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4: - version "0.4.24" - resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -icss-replace-symbols@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" - integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= - -icss-utils@^5.0.0: - version "5.1.0" - resolved "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" - integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== - -ids@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/ids/-/ids-1.0.0.tgz#df67f2d37b81d7c2effc87e03d17ebff95a58c05" - integrity sha512-Zvtq1xUto4LttpstyOlFum8lKx+i1OmRfg+6A9drFS9iSZsDPMHG4Sof/qwNR4kCU7jBeWFPrY2ocHxiz7cCRw== - -ieee754@^1.1.13: - version "1.2.1" - resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -ignore@^4.0.6: - version "4.0.6" - resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" - integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== - -ignore@^5.1.1, ignore@^5.1.4, ignore@^5.1.8: - version "5.1.8" - resolved "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" - integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== - -image-size@^0.5.1, image-size@~0.5.0: - version "0.5.5" - resolved "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz#09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c" - integrity sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w= - -imagemin-gifsicle@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-7.0.0.tgz#1a7ab136a144c4678657ba3b6c412f80805d26b0" - integrity sha512-LaP38xhxAwS3W8PFh4y5iQ6feoTSF+dTAXFRUEYQWYst6Xd+9L/iPk34QGgK/VO/objmIlmq9TStGfVY2IcHIA== - dependencies: - execa "^1.0.0" - gifsicle "^5.0.0" - is-gif "^3.0.0" - -imagemin-jpegtran@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/imagemin-jpegtran/-/imagemin-jpegtran-7.0.0.tgz#7728f84876362d489b9a1656e0cc8e2009406e6f" - integrity sha512-MJoyTCW8YjMJf56NorFE41SR/WkaGA3IYk4JgvMlRwguJEEd3PnP9UxA8Y2UWjquz8d+On3Ds/03ZfiiLS8xTQ== - dependencies: - exec-buffer "^3.0.0" - is-jpg "^2.0.0" - jpegtran-bin "^5.0.0" - -imagemin-mozjpeg@^9.0.0: - version "9.0.0" - resolved "https://registry.npmjs.org/imagemin-mozjpeg/-/imagemin-mozjpeg-9.0.0.tgz#d1af26d0b43d75a41c211051c1910da59d9d2324" - integrity sha512-TwOjTzYqCFRgROTWpVSt5UTT0JeCuzF1jswPLKALDd89+PmrJ2PdMMYeDLYZ1fs9cTovI9GJd68mRSnuVt691w== - dependencies: - execa "^4.0.0" - is-jpg "^2.0.0" - mozjpeg "^7.0.0" - -imagemin-optipng@^8.0.0: - version "8.0.0" - resolved "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz#b88e5cf6da25cc8479e07cdf38c3ae0479df7ef2" - integrity sha512-CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A== - dependencies: - exec-buffer "^3.0.0" - is-png "^2.0.0" - optipng-bin "^7.0.0" - -imagemin-pngquant@^9.0.2: - version "9.0.2" - resolved "https://registry.npmjs.org/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz#38155702b0cc4f60f671ba7c2b086ea3805d9567" - integrity sha512-cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg== - dependencies: - execa "^4.0.0" - is-png "^2.0.0" - is-stream "^2.0.0" - ow "^0.17.0" - pngquant-bin "^6.0.0" - -imagemin-svgo@^9.0.0: - version "9.0.0" - resolved "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-9.0.0.tgz#749370804608917a67d4ff590f07a87756aec006" - integrity sha512-uNgXpKHd99C0WODkrJ8OO/3zW3qjgS4pW7hcuII0RcHN3tnKxDjJWcitdVC/TZyfIqSricU8WfrHn26bdSW62g== - dependencies: - is-svg "^4.2.1" - svgo "^2.1.0" - -imagemin-webp@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/imagemin-webp/-/imagemin-webp-6.0.0.tgz#bb2d77bab818fd6133df9675326497b877e7be4d" - integrity sha512-DmVCkI8H1csyqAExsk93LzC88gj2uKXaLLW5Ly+WYsvNx7xv5cJAlozXWIx9Z0kEQr9w98gphi5aP2b++iDH8g== - dependencies: - cwebp-bin "^5.0.0" - exec-buffer "^3.0.0" - is-cwebp-readable "^3.0.0" - -imagemin@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/imagemin/-/imagemin-7.0.1.tgz#f6441ca647197632e23db7d971fffbd530c87dbf" - integrity sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w== - dependencies: - file-type "^12.0.0" - globby "^10.0.0" - graceful-fs "^4.2.2" - junk "^3.1.0" - make-dir "^3.0.0" - p-pipe "^3.0.0" - replace-ext "^1.0.0" - -import-fresh@^3.0.0, import-fresh@^3.2.1: - version "3.3.0" - resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-lazy@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153" - integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw== - -import-local@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6" - integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= - -indent-string@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" - integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= - dependencies: - repeating "^2.0.0" - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -ini@^1.3.2, ini@^1.3.4, ini@^1.3.5: - version "1.3.8" - resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - -inquirer@6.5.2: - version "6.5.2" - resolved "https://registry.npmjs.org/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" - integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== - dependencies: - ansi-escapes "^3.2.0" - chalk "^2.4.2" - cli-cursor "^2.1.0" - cli-width "^2.0.0" - external-editor "^3.0.3" - figures "^2.0.0" - lodash "^4.17.12" - mute-stream "0.0.7" - run-async "^2.2.0" - rxjs "^6.4.0" - string-width "^2.1.0" - strip-ansi "^5.1.0" - through "^2.3.6" - -inquirer@^8.1.2: - version "8.1.2" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.1.2.tgz#65b204d2cd7fb63400edd925dfe428bafd422e3d" - integrity sha512-DHLKJwLPNgkfwNmsuEUKSejJFbkv0FMO9SMiQbjI3n5NQuCrSIBqP66ggqyz2a6t2qEolKrMjhQ3+W/xXgUQ+Q== - dependencies: - ansi-escapes "^4.2.1" - chalk "^4.1.1" - cli-cursor "^3.1.0" - cli-width "^3.0.0" - external-editor "^3.0.3" - figures "^3.0.0" - lodash "^4.17.21" - mute-stream "0.0.8" - ora "^5.3.0" - run-async "^2.4.0" - rxjs "^7.2.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - through "^2.3.6" - -interpret@^1.0.0: - version "1.4.0" - resolved "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" - integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== - -into-stream@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6" - integrity sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY= - dependencies: - from2 "^2.1.1" - p-is-promise "^1.1.0" - -is-accessor-descriptor@^0.1.6: - version "0.1.6" - resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" - integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= - dependencies: - kind-of "^3.0.2" - -is-accessor-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" - integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== - dependencies: - kind-of "^6.0.0" - -is-alphabetical@^1.0.0: - version "1.0.4" - resolved "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" - integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== - -is-alphanumerical@^1.0.0: - version "1.0.4" - resolved "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" - integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== - dependencies: - is-alphabetical "^1.0.0" - is-decimal "^1.0.0" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= - -is-bigint@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz#ffb381442503235ad245ea89e45b3dbff040ee5a" - integrity sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA== - -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - -is-boolean-object@^1.1.0: - version "1.1.1" - resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz#3c0878f035cb821228d350d2e1e36719716a3de8" - integrity sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng== - dependencies: - call-bind "^1.0.2" - -is-buffer@^1.1.5: - version "1.1.6" - resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-buffer@^2.0.0: - version "2.0.5" - resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" - integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== - -is-callable@^1.1.4, is-callable@^1.2.3: - version "1.2.3" - resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" - integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ== - -is-ci@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/is-ci/-/is-ci-3.0.0.tgz#c7e7be3c9d8eef7d0fa144390bd1e4b88dc4c994" - integrity sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ== - dependencies: - ci-info "^3.1.1" - -is-core-module@^2.2.0: - version "2.4.0" - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz#8e9fc8e15027b011418026e98f0e6f4d86305cc1" - integrity sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A== - dependencies: - has "^1.0.3" - -is-cwebp-readable@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/is-cwebp-readable/-/is-cwebp-readable-3.0.0.tgz#0554aaa400977a2fc4de366d8c0244f13cde58cb" - integrity sha512-bpELc7/Q1/U5MWHn4NdHI44R3jxk0h9ew9ljzabiRl70/UIjL/ZAqRMb52F5+eke/VC8yTiv4Ewryo1fPWidvA== - dependencies: - file-type "^10.5.0" - -is-data-descriptor@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" - integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= - dependencies: - kind-of "^3.0.2" - -is-data-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" - integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== - dependencies: - kind-of "^6.0.0" - -is-date-object@^1.0.1: - version "1.0.4" - resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz#550cfcc03afada05eea3dd30981c7b09551f73e5" - integrity sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A== - -is-decimal@^1.0.0: - version "1.0.4" - resolved "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5" - integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== - -is-descriptor@^0.1.0: - version "0.1.6" - resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" - integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== - dependencies: - is-accessor-descriptor "^0.1.6" - is-data-descriptor "^0.1.4" - kind-of "^5.0.0" - -is-descriptor@^1.0.0, is-descriptor@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" - integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== - dependencies: - is-accessor-descriptor "^1.0.0" - is-data-descriptor "^1.0.0" - kind-of "^6.0.2" - -is-docker@^2.0.0: - version "2.2.1" - resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" - integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== - -is-expression@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz#c33155962abf21d0afd2552514d67d2ec16fd2ab" - integrity sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A== - dependencies: - acorn "^7.1.1" - object-assign "^4.1.1" - -is-extendable@^0.1.0, is-extendable@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= - -is-extendable@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" - integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== - dependencies: - is-plain-object "^2.0.4" - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= - -is-finite@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" - integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-generator-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" - integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== - -is-gif@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz#c4be60b26a301d695bb833b20d9b5d66c6cf83b1" - integrity sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw== - dependencies: - file-type "^10.4.0" - -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" - integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== - dependencies: - is-extglob "^2.1.1" - -is-hexadecimal@^1.0.0: - version "1.0.4" - resolved "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" - integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== - -is-interactive@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" - integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== - -is-jpg@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz#2e1997fa6e9166eaac0242daae443403e4ef1d97" - integrity sha1-LhmX+m6RZuqsAkLarkQ0A+TvHZc= - -is-module@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" - integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= - -is-natural-number@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz#ab9d76e1db4ced51e35de0c72ebecf09f734cde8" - integrity sha1-q5124dtM7VHjXeDHLr7PCfc0zeg= - -is-negative-zero@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" - integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== - -is-number-object@^1.0.4: - version "1.0.5" - resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz#6edfaeed7950cff19afedce9fbfca9ee6dd289eb" - integrity sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw== - -is-number@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" - integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= - dependencies: - kind-of "^3.0.2" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-obj@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" - integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= - -is-obj@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" - integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== - -is-object@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz#a56552e1c665c9e950b4a025461da87e72f86fcf" - integrity sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA== - -is-plain-obj@^1.0.0, is-plain-obj@^1.1, is-plain-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= - -is-plain-obj@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" - integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== - -is-plain-object@3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.1.tgz#662d92d24c0aa4302407b0d45d21f2251c85f85b" - integrity sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g== - -is-plain-object@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" - integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== - -is-plain-object@^2.0.3, is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-png@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-png/-/is-png-2.0.0.tgz#ee8cbc9e9b050425cedeeb4a6fb74a649b0a4a8d" - integrity sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g== - -is-potential-custom-element-name@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" - integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== - -is-promise@^2.0.0: - version "2.2.2" - resolved "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" - integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== - -is-regex@^1.0.3, is-regex@^1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f" - integrity sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ== - dependencies: - call-bind "^1.0.2" - has-symbols "^1.0.2" - -is-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" - integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= - -is-regexp@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/is-regexp/-/is-regexp-2.1.0.tgz#cd734a56864e23b956bf4e7c66c396a4c0b22c2d" - integrity sha512-OZ4IlER3zmRIoB9AqNhEggVxqIH4ofDns5nRrPS6yQxXE1TPCUpFznBfRQmQa8uC+pXqjMnukiJBxCisIxiLGA== - -is-retry-allowed@^1.0.0, is-retry-allowed@^1.1.0: - version "1.2.0" - resolved "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" - integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== - -is-stream@^1.0.0, is-stream@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" - integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= - -is-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" - integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== - -is-string@^1.0.5, is-string@^1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f" - integrity sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w== - -is-svg@^4.2.1: - version "4.3.1" - resolved "https://registry.npmjs.org/is-svg/-/is-svg-4.3.1.tgz#8c63ec8c67c8c7f0a8de0a71c8c7d58eccf4406b" - integrity sha512-h2CGs+yPUyvkgTJQS9cJzo9lYK06WgRiXUqBBHtglSzVKAuH4/oWsqk7LGfbSa1hGk9QcZ0SyQtVggvBA8LZXA== - dependencies: - fast-xml-parser "^3.19.0" - -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== - dependencies: - has-symbols "^1.0.2" - -is-text-path@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" - integrity sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4= - dependencies: - text-extensions "^1.0.0" - -is-typedarray@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= - -is-unicode-supported@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" - integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== - -is-utf8@^0.2.0, is-utf8@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" - integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= - -is-what@^3.12.0: - version "3.14.1" - resolved "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz#e1222f46ddda85dead0fd1c9df131760e77755c1" - integrity sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA== - -is-windows@^1.0.1, is-windows@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== - -is-wsl@^2.1.1: - version "2.2.0" - resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== - dependencies: - is-docker "^2.0.0" - -isarray@1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - -isarray@^2.0.1: - version "2.0.5" - resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" - integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - -isobject@^2.0.0, isobject@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" - integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= - dependencies: - isarray "1.0.0" - -isobject@^3.0.0, isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= - -istanbul-lib-coverage@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" - integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== - -istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: - version "4.0.3" - resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" - integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== - dependencies: - "@babel/core" "^7.7.5" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.0.0" - semver "^6.3.0" - -istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== - dependencies: - istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" - supports-color "^7.1.0" - -istanbul-lib-source-maps@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9" - integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg== - dependencies: - debug "^4.1.1" - istanbul-lib-coverage "^3.0.0" - source-map "^0.6.1" - -istanbul-reports@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b" - integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw== - dependencies: - html-escaper "^2.0.0" - istanbul-lib-report "^3.0.0" - -isurl@^1.0.0-alpha5: - version "1.0.0" - resolved "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67" - integrity sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w== - dependencies: - has-to-string-tag-x "^1.2.0" - is-object "^1.0.1" - -jake@^10.6.1: - version "10.8.2" - resolved "https://registry.npmjs.org/jake/-/jake-10.8.2.tgz#ebc9de8558160a66d82d0eadc6a2e58fbc500a7b" - integrity sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A== - dependencies: - async "0.9.x" - chalk "^2.4.2" - filelist "^1.0.1" - minimatch "^3.0.4" - -jest-changed-files@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.0.6.tgz#bed6183fcdea8a285482e3b50a9a7712d49a7a8b" - integrity sha512-BuL/ZDauaq5dumYh5y20sn4IISnf1P9A0TDswTxUi84ORGtVa86ApuBHqICL0vepqAnZiY6a7xeSPWv2/yy4eA== - dependencies: - "@jest/types" "^27.0.6" - execa "^5.0.0" - throat "^6.0.1" - -jest-circus@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-27.0.6.tgz#dd4df17c4697db6a2c232aaad4e9cec666926668" - integrity sha512-OJlsz6BBeX9qR+7O9lXefWoc2m9ZqcZ5Ohlzz0pTEAG4xMiZUJoacY8f4YDHxgk0oKYxj277AfOk9w6hZYvi1Q== - dependencies: - "@jest/environment" "^27.0.6" - "@jest/test-result" "^27.0.6" - "@jest/types" "^27.0.6" - "@types/node" "*" - chalk "^4.0.0" - co "^4.6.0" - dedent "^0.7.0" - expect "^27.0.6" - is-generator-fn "^2.0.0" - jest-each "^27.0.6" - jest-matcher-utils "^27.0.6" - jest-message-util "^27.0.6" - jest-runtime "^27.0.6" - jest-snapshot "^27.0.6" - jest-util "^27.0.6" - pretty-format "^27.0.6" - slash "^3.0.0" - stack-utils "^2.0.3" - throat "^6.0.1" - -jest-cli@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-27.0.6.tgz#d021e5f4d86d6a212450d4c7b86cb219f1e6864f" - integrity sha512-qUUVlGb9fdKir3RDE+B10ULI+LQrz+MCflEH2UJyoUjoHHCbxDrMxSzjQAPUMsic4SncI62ofYCcAvW6+6rhhg== - dependencies: - "@jest/core" "^27.0.6" - "@jest/test-result" "^27.0.6" - "@jest/types" "^27.0.6" - chalk "^4.0.0" - exit "^0.1.2" - graceful-fs "^4.2.4" - import-local "^3.0.2" - jest-config "^27.0.6" - jest-util "^27.0.6" - jest-validate "^27.0.6" - prompts "^2.0.1" - yargs "^16.0.3" - -jest-config@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-config/-/jest-config-27.0.6.tgz#119fb10f149ba63d9c50621baa4f1f179500277f" - integrity sha512-JZRR3I1Plr2YxPBhgqRspDE2S5zprbga3swYNrvY3HfQGu7p/GjyLOqwrYad97tX3U3mzT53TPHVmozacfP/3w== - dependencies: - "@babel/core" "^7.1.0" - "@jest/test-sequencer" "^27.0.6" - "@jest/types" "^27.0.6" - babel-jest "^27.0.6" - chalk "^4.0.0" - deepmerge "^4.2.2" - glob "^7.1.1" - graceful-fs "^4.2.4" - is-ci "^3.0.0" - jest-circus "^27.0.6" - jest-environment-jsdom "^27.0.6" - jest-environment-node "^27.0.6" - jest-get-type "^27.0.6" - jest-jasmine2 "^27.0.6" - jest-regex-util "^27.0.6" - jest-resolve "^27.0.6" - jest-runner "^27.0.6" - jest-util "^27.0.6" - jest-validate "^27.0.6" - micromatch "^4.0.4" - pretty-format "^27.0.6" - -jest-diff@^27.0.0, jest-diff@^27.0.6: - version "27.0.6" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.0.6.tgz#4a7a19ee6f04ad70e0e3388f35829394a44c7b5e" - integrity sha512-Z1mqgkTCSYaFgwTlP/NUiRzdqgxmmhzHY1Tq17zL94morOHfHu3K4bgSgl+CR4GLhpV8VxkuOYuIWnQ9LnFqmg== - dependencies: - chalk "^4.0.0" - diff-sequences "^27.0.6" - jest-get-type "^27.0.6" - pretty-format "^27.0.6" - -jest-docblock@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.0.6.tgz#cc78266acf7fe693ca462cbbda0ea4e639e4e5f3" - integrity sha512-Fid6dPcjwepTFraz0YxIMCi7dejjJ/KL9FBjPYhBp4Sv1Y9PdhImlKZqYU555BlN4TQKaTc+F2Av1z+anVyGkA== - dependencies: - detect-newline "^3.0.0" - -jest-each@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-each/-/jest-each-27.0.6.tgz#cee117071b04060158dc8d9a66dc50ad40ef453b" - integrity sha512-m6yKcV3bkSWrUIjxkE9OC0mhBZZdhovIW5ergBYirqnkLXkyEn3oUUF/QZgyecA1cF1QFyTE8bRRl8Tfg1pfLA== - dependencies: - "@jest/types" "^27.0.6" - chalk "^4.0.0" - jest-get-type "^27.0.6" - jest-util "^27.0.6" - pretty-format "^27.0.6" - -jest-environment-jsdom@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.0.6.tgz#f66426c4c9950807d0a9f209c590ce544f73291f" - integrity sha512-FvetXg7lnXL9+78H+xUAsra3IeZRTiegA3An01cWeXBspKXUhAwMM9ycIJ4yBaR0L7HkoMPaZsozCLHh4T8fuw== - dependencies: - "@jest/environment" "^27.0.6" - "@jest/fake-timers" "^27.0.6" - "@jest/types" "^27.0.6" - "@types/node" "*" - jest-mock "^27.0.6" - jest-util "^27.0.6" - jsdom "^16.6.0" - -jest-environment-node@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.0.6.tgz#a6699b7ceb52e8d68138b9808b0c404e505f3e07" - integrity sha512-+Vi6yLrPg/qC81jfXx3IBlVnDTI6kmRr08iVa2hFCWmJt4zha0XW7ucQltCAPhSR0FEKEoJ3i+W4E6T0s9is0w== - dependencies: - "@jest/environment" "^27.0.6" - "@jest/fake-timers" "^27.0.6" - "@jest/types" "^27.0.6" - "@types/node" "*" - jest-mock "^27.0.6" - jest-util "^27.0.6" - -jest-get-type@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.0.6.tgz#0eb5c7f755854279ce9b68a9f1a4122f69047cfe" - integrity sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg== - -jest-haste-map@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.0.6.tgz#4683a4e68f6ecaa74231679dca237279562c8dc7" - integrity sha512-4ldjPXX9h8doB2JlRzg9oAZ2p6/GpQUNAeiYXqcpmrKbP0Qev0wdZlxSMOmz8mPOEnt4h6qIzXFLDi8RScX/1w== - dependencies: - "@jest/types" "^27.0.6" - "@types/graceful-fs" "^4.1.2" - "@types/node" "*" - anymatch "^3.0.3" - fb-watchman "^2.0.0" - graceful-fs "^4.2.4" - jest-regex-util "^27.0.6" - jest-serializer "^27.0.6" - jest-util "^27.0.6" - jest-worker "^27.0.6" - micromatch "^4.0.4" - walker "^1.0.7" - optionalDependencies: - fsevents "^2.3.2" - -jest-jasmine2@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.0.6.tgz#fd509a9ed3d92bd6edb68a779f4738b100655b37" - integrity sha512-cjpH2sBy+t6dvCeKBsHpW41mjHzXgsavaFMp+VWRf0eR4EW8xASk1acqmljFtK2DgyIECMv2yCdY41r2l1+4iA== - dependencies: - "@babel/traverse" "^7.1.0" - "@jest/environment" "^27.0.6" - "@jest/source-map" "^27.0.6" - "@jest/test-result" "^27.0.6" - "@jest/types" "^27.0.6" - "@types/node" "*" - chalk "^4.0.0" - co "^4.6.0" - expect "^27.0.6" - is-generator-fn "^2.0.0" - jest-each "^27.0.6" - jest-matcher-utils "^27.0.6" - jest-message-util "^27.0.6" - jest-runtime "^27.0.6" - jest-snapshot "^27.0.6" - jest-util "^27.0.6" - pretty-format "^27.0.6" - throat "^6.0.1" - -jest-leak-detector@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.0.6.tgz#545854275f85450d4ef4b8fe305ca2a26450450f" - integrity sha512-2/d6n2wlH5zEcdctX4zdbgX8oM61tb67PQt4Xh8JFAIy6LRKUnX528HulkaG6nD5qDl5vRV1NXejCe1XRCH5gQ== - dependencies: - jest-get-type "^27.0.6" - pretty-format "^27.0.6" - -jest-matcher-utils@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.0.6.tgz#2a8da1e86c620b39459f4352eaa255f0d43e39a9" - integrity sha512-OFgF2VCQx9vdPSYTHWJ9MzFCehs20TsyFi6bIHbk5V1u52zJOnvF0Y/65z3GLZHKRuTgVPY4Z6LVePNahaQ+tA== - dependencies: - chalk "^4.0.0" - jest-diff "^27.0.6" - jest-get-type "^27.0.6" - pretty-format "^27.0.6" - -jest-message-util@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.0.6.tgz#158bcdf4785706492d164a39abca6a14da5ab8b5" - integrity sha512-rBxIs2XK7rGy+zGxgi+UJKP6WqQ+KrBbD1YMj517HYN3v2BG66t3Xan3FWqYHKZwjdB700KiAJ+iES9a0M+ixw== - dependencies: - "@babel/code-frame" "^7.12.13" - "@jest/types" "^27.0.6" - "@types/stack-utils" "^2.0.0" - chalk "^4.0.0" - graceful-fs "^4.2.4" - micromatch "^4.0.4" - pretty-format "^27.0.6" - slash "^3.0.0" - stack-utils "^2.0.3" - -jest-mock@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-27.0.6.tgz#0efdd40851398307ba16778728f6d34d583e3467" - integrity sha512-lzBETUoK8cSxts2NYXSBWT+EJNzmUVtVVwS1sU9GwE1DLCfGsngg+ZVSIe0yd0ZSm+y791esiuo+WSwpXJQ5Bw== - dependencies: - "@jest/types" "^27.0.6" - "@types/node" "*" - -jest-pnp-resolver@^1.2.2: - version "1.2.2" - resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" - integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== - -jest-regex-util@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.0.6.tgz#02e112082935ae949ce5d13b2675db3d8c87d9c5" - integrity sha512-SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ== - -jest-resolve-dependencies@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.0.6.tgz#3e619e0ef391c3ecfcf6ef4056207a3d2be3269f" - integrity sha512-mg9x9DS3BPAREWKCAoyg3QucCr0n6S8HEEsqRCKSPjPcu9HzRILzhdzY3imsLoZWeosEbJZz6TKasveczzpJZA== - dependencies: - "@jest/types" "^27.0.6" - jest-regex-util "^27.0.6" - jest-snapshot "^27.0.6" - -jest-resolve@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.0.6.tgz#e90f436dd4f8fbf53f58a91c42344864f8e55bff" - integrity sha512-yKmIgw2LgTh7uAJtzv8UFHGF7Dm7XfvOe/LQ3Txv101fLM8cx2h1QVwtSJ51Q/SCxpIiKfVn6G2jYYMDNHZteA== - dependencies: - "@jest/types" "^27.0.6" - chalk "^4.0.0" - escalade "^3.1.1" - graceful-fs "^4.2.4" - jest-pnp-resolver "^1.2.2" - jest-util "^27.0.6" - jest-validate "^27.0.6" - resolve "^1.20.0" - slash "^3.0.0" - -jest-runner@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-27.0.6.tgz#1325f45055539222bbc7256a6976e993ad2f9520" - integrity sha512-W3Bz5qAgaSChuivLn+nKOgjqNxM7O/9JOJoKDCqThPIg2sH/d4A/lzyiaFgnb9V1/w29Le11NpzTJSzga1vyYQ== - dependencies: - "@jest/console" "^27.0.6" - "@jest/environment" "^27.0.6" - "@jest/test-result" "^27.0.6" - "@jest/transform" "^27.0.6" - "@jest/types" "^27.0.6" - "@types/node" "*" - chalk "^4.0.0" - emittery "^0.8.1" - exit "^0.1.2" - graceful-fs "^4.2.4" - jest-docblock "^27.0.6" - jest-environment-jsdom "^27.0.6" - jest-environment-node "^27.0.6" - jest-haste-map "^27.0.6" - jest-leak-detector "^27.0.6" - jest-message-util "^27.0.6" - jest-resolve "^27.0.6" - jest-runtime "^27.0.6" - jest-util "^27.0.6" - jest-worker "^27.0.6" - source-map-support "^0.5.6" - throat "^6.0.1" - -jest-runtime@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.0.6.tgz#45877cfcd386afdd4f317def551fc369794c27c9" - integrity sha512-BhvHLRVfKibYyqqEFkybsznKwhrsu7AWx2F3y9G9L95VSIN3/ZZ9vBpm/XCS2bS+BWz3sSeNGLzI3TVQ0uL85Q== - dependencies: - "@jest/console" "^27.0.6" - "@jest/environment" "^27.0.6" - "@jest/fake-timers" "^27.0.6" - "@jest/globals" "^27.0.6" - "@jest/source-map" "^27.0.6" - "@jest/test-result" "^27.0.6" - "@jest/transform" "^27.0.6" - "@jest/types" "^27.0.6" - "@types/yargs" "^16.0.0" - chalk "^4.0.0" - cjs-module-lexer "^1.0.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.3" - graceful-fs "^4.2.4" - jest-haste-map "^27.0.6" - jest-message-util "^27.0.6" - jest-mock "^27.0.6" - jest-regex-util "^27.0.6" - jest-resolve "^27.0.6" - jest-snapshot "^27.0.6" - jest-util "^27.0.6" - jest-validate "^27.0.6" - slash "^3.0.0" - strip-bom "^4.0.0" - yargs "^16.0.3" - -jest-serializer@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.0.6.tgz#93a6c74e0132b81a2d54623251c46c498bb5bec1" - integrity sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA== - dependencies: - "@types/node" "*" - graceful-fs "^4.2.4" - -jest-snapshot@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.0.6.tgz#f4e6b208bd2e92e888344d78f0f650bcff05a4bf" - integrity sha512-NTHaz8He+ATUagUgE7C/UtFcRoHqR2Gc+KDfhQIyx+VFgwbeEMjeP+ILpUTLosZn/ZtbNdCF5LkVnN/l+V751A== - dependencies: - "@babel/core" "^7.7.2" - "@babel/generator" "^7.7.2" - "@babel/parser" "^7.7.2" - "@babel/plugin-syntax-typescript" "^7.7.2" - "@babel/traverse" "^7.7.2" - "@babel/types" "^7.0.0" - "@jest/transform" "^27.0.6" - "@jest/types" "^27.0.6" - "@types/babel__traverse" "^7.0.4" - "@types/prettier" "^2.1.5" - babel-preset-current-node-syntax "^1.0.0" - chalk "^4.0.0" - expect "^27.0.6" - graceful-fs "^4.2.4" - jest-diff "^27.0.6" - jest-get-type "^27.0.6" - jest-haste-map "^27.0.6" - jest-matcher-utils "^27.0.6" - jest-message-util "^27.0.6" - jest-resolve "^27.0.6" - jest-util "^27.0.6" - natural-compare "^1.4.0" - pretty-format "^27.0.6" - semver "^7.3.2" - -jest-util@^27.0.0: - version "27.0.2" - resolved "https://registry.npmjs.org/jest-util/-/jest-util-27.0.2.tgz#fc2c7ace3c75ae561cf1e5fdb643bf685a5be7c7" - integrity sha512-1d9uH3a00OFGGWSibpNYr+jojZ6AckOMCXV2Z4K3YXDnzpkAaXQyIpY14FOJPiUmil7CD+A6Qs+lnnh6ctRbIA== - dependencies: - "@jest/types" "^27.0.2" - "@types/node" "*" - chalk "^4.0.0" - graceful-fs "^4.2.4" - is-ci "^3.0.0" - picomatch "^2.2.3" - -jest-util@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-util/-/jest-util-27.0.6.tgz#e8e04eec159de2f4d5f57f795df9cdc091e50297" - integrity sha512-1JjlaIh+C65H/F7D11GNkGDDZtDfMEM8EBXsvd+l/cxtgQ6QhxuloOaiayt89DxUvDarbVhqI98HhgrM1yliFQ== - dependencies: - "@jest/types" "^27.0.6" - "@types/node" "*" - chalk "^4.0.0" - graceful-fs "^4.2.4" - is-ci "^3.0.0" - picomatch "^2.2.3" - -jest-validate@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-27.0.6.tgz#930a527c7a951927df269f43b2dc23262457e2a6" - integrity sha512-yhZZOaMH3Zg6DC83n60pLmdU1DQE46DW+KLozPiPbSbPhlXXaiUTDlhHQhHFpaqIFRrInko1FHXjTRpjWRuWfA== - dependencies: - "@jest/types" "^27.0.6" - camelcase "^6.2.0" - chalk "^4.0.0" - jest-get-type "^27.0.6" - leven "^3.1.0" - pretty-format "^27.0.6" - -jest-watcher@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.0.6.tgz#89526f7f9edf1eac4e4be989bcb6dec6b8878d9c" - integrity sha512-/jIoKBhAP00/iMGnTwUBLgvxkn7vsOweDrOTSPzc7X9uOyUtJIDthQBTI1EXz90bdkrxorUZVhJwiB69gcHtYQ== - dependencies: - "@jest/test-result" "^27.0.6" - "@jest/types" "^27.0.6" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - jest-util "^27.0.6" - string-length "^4.0.1" - -jest-worker@^26.2.1: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" - integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^7.0.0" - -jest-worker@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.0.6.tgz#a5fdb1e14ad34eb228cfe162d9f729cdbfa28aed" - integrity sha512-qupxcj/dRuA3xHPMUd40gr2EaAurFbkwzOh7wfPaeE9id7hyjURRQoqNfHifHK3XjJU6YJJUQKILGUnwGPEOCA== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^8.0.0" - -jest@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/jest/-/jest-27.0.6.tgz#10517b2a628f0409087fbf473db44777d7a04505" - integrity sha512-EjV8aETrsD0wHl7CKMibKwQNQc3gIRBXlTikBmmHUeVMKaPFxdcUIBfoDqTSXDoGJIivAYGqCWVlzCSaVjPQsA== - dependencies: - "@jest/core" "^27.0.6" - import-local "^3.0.2" - jest-cli "^27.0.6" - -jiti@^1.11.0: - version "1.11.0" - resolved "https://registry.npmjs.org/jiti/-/jiti-1.11.0.tgz#64120a30d97b9bf37b8b032cf4564dfadc28984c" - integrity sha512-/2c7e61hxxTIN34UeHBB0LCJ5Tq64kgJDV7GR+++e8XRxCKRIKmB8tH6ww1W+Z6Kgd6By+C3RSCu1lXjbPT68A== - -jpegtran-bin@^5.0.0: - version "5.0.2" - resolved "https://registry.npmjs.org/jpegtran-bin/-/jpegtran-bin-5.0.2.tgz#5870fd7e68317bd203a1c94572bd06ae7732cac3" - integrity sha512-4FSmgIcr8d5+V6T1+dHbPZjaFH0ogVyP4UVsE+zri7S9YLO4qAT2our4IN3sW3STVgNTbqPermdIgt2XuAJ4EA== - dependencies: - bin-build "^3.0.0" - bin-wrapper "^4.0.0" - logalot "^2.0.0" - -js-base64@^2.1.9: - version "2.6.4" - resolved "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4" - integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ== - -js-stringify@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db" - integrity sha1-Fzb939lyTyijaCrcYjCufk6Weds= - -"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^3.13.1: - version "3.14.1" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -jsdom@^16.6.0: - version "16.6.0" - resolved "https://registry.npmjs.org/jsdom/-/jsdom-16.6.0.tgz#f79b3786682065492a3da6a60a4695da983805ac" - integrity sha512-Ty1vmF4NHJkolaEmdjtxTfSfkdb8Ywarwf63f+F8/mDD1uLSSWDxDuMiZxiPhwunLrn9LOSVItWj4bLYsLN3Dg== - dependencies: - abab "^2.0.5" - acorn "^8.2.4" - acorn-globals "^6.0.0" - cssom "^0.4.4" - cssstyle "^2.3.0" - data-urls "^2.0.0" - decimal.js "^10.2.1" - domexception "^2.0.1" - escodegen "^2.0.0" - form-data "^3.0.0" - html-encoding-sniffer "^2.0.1" - http-proxy-agent "^4.0.1" - https-proxy-agent "^5.0.0" - is-potential-custom-element-name "^1.0.1" - nwsapi "^2.2.0" - parse5 "6.0.1" - saxes "^5.0.1" - symbol-tree "^3.2.4" - tough-cookie "^4.0.0" - w3c-hr-time "^1.0.2" - w3c-xmlserializer "^2.0.0" - webidl-conversions "^6.1.0" - whatwg-encoding "^1.0.5" - whatwg-mimetype "^2.3.0" - whatwg-url "^8.5.0" - ws "^7.4.5" - xml-name-validator "^3.0.0" - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= - -json-buffer@3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" - integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= - -json-parse-better-errors@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" - integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== - -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema-traverse@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" - integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== - -json-stable-stringify-without-jsonify@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= - -json-stringify-safe@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= - -json5@2.x, json5@^2.1.2: - version "2.2.0" - resolved "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" - integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== - dependencies: - minimist "^1.2.5" - -json5@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== - dependencies: - minimist "^1.2.0" - -jsonc-parser@^2.3.0: - version "2.3.1" - resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.3.1.tgz#59549150b133f2efacca48fe9ce1ec0659af2342" - integrity sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg== - -jsonc-parser@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz#abdd785701c7e7eaca8a9ec8cf070ca51a745a22" - integrity sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA== - -jsonfile@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" - integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= - optionalDependencies: - graceful-fs "^4.1.6" - -jsonfile@^6.0.1: - version "6.1.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" - integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== - dependencies: - universalify "^2.0.0" - optionalDependencies: - graceful-fs "^4.1.6" - -jsonparse@^1.2.0: - version "1.3.1" - resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" - integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= - -jstransformer@1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3" - integrity sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM= - dependencies: - is-promise "^2.0.0" - promise "^7.0.1" - -junk@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz#31499098d902b7e98c5d9b9c80f43457a88abfa1" - integrity sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ== - -keyv@3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz#44923ba39e68b12a7cec7df6c3268c031f2ef373" - integrity sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA== - dependencies: - json-buffer "3.0.0" - -kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: - version "3.2.2" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" - integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= - dependencies: - is-buffer "^1.1.5" - -kind-of@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" - integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= - dependencies: - is-buffer "^1.1.5" - -kind-of@^5.0.0, kind-of@^5.0.2: - version "5.1.0" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" - integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== - -kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3: - version "6.0.3" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - -known-css-properties@^0.21.0: - version "0.21.0" - resolved "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.21.0.tgz#15fbd0bbb83447f3ce09d8af247ed47c68ede80d" - integrity sha512-sZLUnTqimCkvkgRS+kbPlYW5o8q5w1cu+uIisKpEWkj31I8mx8kNG162DwRav8Zirkva6N5uoFsm9kzK4mUXjw== - -less@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/less/-/less-4.1.1.tgz#15bf253a9939791dc690888c3ff424f3e6c7edba" - integrity sha512-w09o8tZFPThBscl5d0Ggp3RcrKIouBoQscnOMgFH3n5V3kN/CXGHNfCkRPtxJk6nKryDXaV9aHLK55RXuH4sAw== - dependencies: - copy-anything "^2.0.1" - parse-node-version "^1.0.1" - tslib "^1.10.0" - optionalDependencies: - errno "^0.1.1" - graceful-fs "^4.1.2" - image-size "~0.5.0" - make-dir "^2.1.0" - mime "^1.4.1" - needle "^2.5.2" - source-map "~0.6.0" - -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - -levn@^0.4.1: - version "0.4.1" - resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" - integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== - dependencies: - prelude-ls "^1.2.1" - type-check "~0.4.0" - -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - -lines-and-columns@^1.1.6: - version "1.1.6" - resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" - integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= - -lint-staged@^11.1.2: - version "11.1.2" - resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-11.1.2.tgz#4dd78782ae43ee6ebf2969cad9af67a46b33cd90" - integrity sha512-6lYpNoA9wGqkL6Hew/4n1H6lRqF3qCsujVT0Oq5Z4hiSAM7S6NksPJ3gnr7A7R52xCtiZMcEUNNQ6d6X5Bvh9w== - dependencies: - chalk "^4.1.1" - cli-truncate "^2.1.0" - commander "^7.2.0" - cosmiconfig "^7.0.0" - debug "^4.3.1" - enquirer "^2.3.6" - execa "^5.0.0" - listr2 "^3.8.2" - log-symbols "^4.1.0" - micromatch "^4.0.4" - normalize-path "^3.0.0" - please-upgrade-node "^3.2.0" - string-argv "0.3.1" - stringify-object "^3.3.0" - -listr2@^3.8.2: - version "3.10.0" - resolved "https://registry.npmjs.org/listr2/-/listr2-3.10.0.tgz#58105a53ed7fa1430d1b738c6055ef7bb006160f" - integrity sha512-eP40ZHihu70sSmqFNbNy2NL1YwImmlMmPh9WO5sLmPDleurMHt3n+SwEWNu2kzKScexZnkyFtc1VI0z/TGlmpw== - dependencies: - cli-truncate "^2.1.0" - colorette "^1.2.2" - log-update "^4.0.0" - p-map "^4.0.0" - rxjs "^6.6.7" - through "^2.3.8" - wrap-ansi "^7.0.0" - -load-json-file@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" - integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= - dependencies: - graceful-fs "^4.1.2" - parse-json "^2.2.0" - pify "^2.0.0" - pinkie-promise "^2.0.0" - strip-bom "^2.0.0" - -load-json-file@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" - integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= - dependencies: - graceful-fs "^4.1.2" - parse-json "^4.0.0" - pify "^3.0.0" - strip-bom "^3.0.0" - -loader-utils@^1.1.0: - version "1.4.0" - resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" - integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^1.0.1" - -locate-path@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" - integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= - dependencies: - p-locate "^2.0.0" - path-exists "^3.0.0" - -locate-path@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== - dependencies: - p-locate "^3.0.0" - path-exists "^3.0.0" - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -locate-path@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" - integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== - dependencies: - p-locate "^5.0.0" - -lodash-es@^4.17.15, lodash-es@^4.17.21: - version "4.17.21" - resolved "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" - integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== - -lodash.camelcase@^4.3.0: - version "4.3.0" - resolved "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" - integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= - -lodash.clonedeep@^4.5.0: - version "4.5.0" - resolved "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" - integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= - -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= - -lodash.ismatch@^4.4.0: - version "4.4.0" - resolved "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" - integrity sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc= - -lodash.map@^4.5.1: - version "4.6.0" - resolved "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" - integrity sha1-dx7Hg540c9nEzeKLGTlMNWL09tM= - -lodash.merge@^4.6.2: - version "4.6.2" - resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" - integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== - -lodash.sortby@^4.7.0: - version "4.7.0" - resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" - integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= - -lodash.truncate@^4.4.2: - version "4.4.2" - resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" - integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= - -lodash@4.x, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.7.0: - version "4.17.21" - resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -log-symbols@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" - integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== - dependencies: - chalk "^4.1.0" - is-unicode-supported "^0.1.0" - -log-update@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" - integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== - dependencies: - ansi-escapes "^4.3.0" - cli-cursor "^3.1.0" - slice-ansi "^4.0.0" - wrap-ansi "^6.2.0" - -logalot@^2.0.0, logalot@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/logalot/-/logalot-2.1.0.tgz#5f8e8c90d304edf12530951a5554abb8c5e3f552" - integrity sha1-X46MkNME7fElMJUaVVSruMXj9VI= - dependencies: - figures "^1.3.5" - squeak "^1.0.0" - -longest-streak@^2.0.0: - version "2.0.4" - resolved "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" - integrity sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg== - -longest@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" - integrity sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc= - -longest@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/longest/-/longest-2.0.1.tgz#781e183296aa94f6d4d916dc335d0d17aefa23f8" - integrity sha1-eB4YMpaqlPbU2RbcM10NF676I/g= - -loose-envify@^1.0.0: - version "1.4.0" - resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - dependencies: - js-tokens "^3.0.0 || ^4.0.0" - -loud-rejection@^1.0.0: - version "1.6.0" - resolved "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" - integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= - dependencies: - currently-unhandled "^0.4.1" - signal-exit "^3.0.0" - -lower-case@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" - integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== - dependencies: - tslib "^2.0.3" - -lowercase-keys@1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" - integrity sha1-TjNms55/VFfjXxMkvfb4jQv8cwY= - -lowercase-keys@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" - integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== - -lpad-align@^1.0.1: - version "1.1.2" - resolved "https://registry.npmjs.org/lpad-align/-/lpad-align-1.1.2.tgz#21f600ac1c3095c3c6e497ee67271ee08481fe9e" - integrity sha1-IfYArBwwlcPG5JfuZyce4ISB/p4= - dependencies: - get-stdin "^4.0.1" - indent-string "^2.1.0" - longest "^1.0.0" - meow "^3.3.0" - -lru-cache@^4.0.1: - version "4.1.5" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" - integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== - dependencies: - pseudomap "^1.0.2" - yallist "^2.1.2" - -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -magic-string@^0.25.0, magic-string@^0.25.7: - version "0.25.7" - resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" - integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== - dependencies: - sourcemap-codec "^1.4.4" - -make-dir@^1.0.0, make-dir@^1.2.0: - version "1.3.0" - resolved "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" - integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== - dependencies: - pify "^3.0.0" - -make-dir@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" - integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== - dependencies: - pify "^4.0.1" - semver "^5.6.0" - -make-dir@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -make-error@1.x, make-error@^1.1.1: - version "1.3.6" - resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -makeerror@1.0.x: - version "1.0.11" - resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" - integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= - dependencies: - tmpl "1.0.x" - -map-cache@^0.2.2: - version "0.2.2" - resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" - integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= - -map-obj@^1.0.0, map-obj@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= - -map-obj@^4.0.0: - version "4.2.1" - resolved "https://registry.npmjs.org/map-obj/-/map-obj-4.2.1.tgz#e4ea399dbc979ae735c83c863dd31bdf364277b7" - integrity sha512-+WA2/1sPmDj1dlvvJmB5G6JKfY9dpn7EVBUL06+y6PoljPkh+6V1QihwxNkbcGxCRjt2b0F9K0taiCuo7MbdFQ== - -map-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" - integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= - dependencies: - object-visit "^1.0.0" - -mathml-tag-names@^2.1.3: - version "2.1.3" - resolved "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz#4ddadd67308e780cf16a47685878ee27b736a0a3" - integrity sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg== - -mdast-util-from-markdown@^0.8.0: - version "0.8.5" - resolved "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz#d1ef2ca42bc377ecb0463a987910dae89bd9a28c" - integrity sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ== - dependencies: - "@types/mdast" "^3.0.0" - mdast-util-to-string "^2.0.0" - micromark "~2.11.0" - parse-entities "^2.0.0" - unist-util-stringify-position "^2.0.0" - -mdast-util-to-markdown@^0.6.0: - version "0.6.5" - resolved "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz#b33f67ca820d69e6cc527a93d4039249b504bebe" - integrity sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ== - dependencies: - "@types/unist" "^2.0.0" - longest-streak "^2.0.0" - mdast-util-to-string "^2.0.0" - parse-entities "^2.0.0" - repeat-string "^1.0.0" - zwitch "^1.0.0" - -mdast-util-to-string@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz#b8cfe6a713e1091cb5b728fc48885a4767f8b97b" - integrity sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w== - -mdn-data@2.0.14: - version "2.0.14" - resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" - integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== - -memorystream@^0.3.1: - version "0.3.1" - resolved "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" - integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= - -meow@^3.3.0: - version "3.7.0" - resolved "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" - integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= - dependencies: - camelcase-keys "^2.0.0" - decamelize "^1.1.2" - loud-rejection "^1.0.0" - map-obj "^1.0.1" - minimist "^1.1.3" - normalize-package-data "^2.3.4" - object-assign "^4.0.1" - read-pkg-up "^1.0.1" - redent "^1.0.0" - trim-newlines "^1.0.0" - -meow@^8.0.0: - version "8.1.2" - resolved "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897" - integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== - dependencies: - "@types/minimist" "^1.2.0" - camelcase-keys "^6.2.2" - decamelize-keys "^1.1.0" - hard-rejection "^2.1.0" - minimist-options "4.1.0" - normalize-package-data "^3.0.0" - read-pkg-up "^7.0.1" - redent "^3.0.0" - trim-newlines "^3.0.0" - type-fest "^0.18.0" - yargs-parser "^20.2.3" - -meow@^9.0.0: - version "9.0.0" - resolved "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz#cd9510bc5cac9dee7d03c73ee1f9ad959f4ea364" - integrity sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ== - dependencies: - "@types/minimist" "^1.2.0" - camelcase-keys "^6.2.2" - decamelize "^1.2.0" - decamelize-keys "^1.1.0" - hard-rejection "^2.1.0" - minimist-options "4.1.0" - normalize-package-data "^3.0.0" - read-pkg-up "^7.0.1" - redent "^3.0.0" - trim-newlines "^3.0.0" - type-fest "^0.18.0" - yargs-parser "^20.2.3" - -merge-options@1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/merge-options/-/merge-options-1.0.1.tgz#2a64b24457becd4e4dc608283247e94ce589aa32" - integrity sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg== - dependencies: - is-plain-obj "^1.1" - -merge-source-map@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646" - integrity sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw== - dependencies: - source-map "^0.6.1" - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -merge2@^1.2.3, merge2@^1.3.0: - version "1.4.1" - resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -merge@^2.1.0: - version "2.1.1" - resolved "https://registry.npmjs.org/merge/-/merge-2.1.1.tgz#59ef4bf7e0b3e879186436e8481c06a6c162ca98" - integrity sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w== - -micromark@~2.11.0: - version "2.11.4" - resolved "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz#d13436138eea826383e822449c9a5c50ee44665a" - integrity sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA== - dependencies: - debug "^4.0.0" - parse-entities "^2.0.0" - -micromatch@3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.0.tgz#5102d4eaf20b6997d6008e3acfe1c44a3fa815e2" - integrity sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - braces "^2.2.2" - define-property "^1.0.0" - extend-shallow "^2.0.1" - extglob "^2.0.2" - fragment-cache "^0.2.1" - kind-of "^5.0.2" - nanomatch "^1.2.1" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -micromatch@^4.0.2, micromatch@^4.0.4: - version "4.0.4" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" - integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== - dependencies: - braces "^3.0.1" - picomatch "^2.2.3" - -mime-db@1.48.0, mime-db@^1.28.0: - version "1.48.0" - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.48.0.tgz#e35b31045dd7eada3aaad537ed88a33afbef2d1d" - integrity sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ== - -mime-types@^2.1.12: - version "2.1.31" - resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.31.tgz#a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b" - integrity sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg== - dependencies: - mime-db "1.48.0" - -mime@^1.4.1, mime@^1.6.0: - version "1.6.0" - resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mimic-fn@^1.0.0: - version "1.2.0" - resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" - integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -mimic-response@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" - integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== - -min-indent@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" - integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== - -minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== - dependencies: - brace-expansion "^1.1.7" - -minimist-options@4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" - integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== - dependencies: - arrify "^1.0.1" - is-plain-obj "^1.1.0" - kind-of "^6.0.3" - -minimist@1.2.5, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: - version "1.2.5" - resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" - integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== - -mixin-deep@^1.2.0: - version "1.3.2" - resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" - integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== - dependencies: - for-in "^1.0.2" - is-extendable "^1.0.1" - -mkdirp@1.x: - version "1.0.4" - resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - -mkdirp@^0.5.5: - version "0.5.5" - resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" - integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== - dependencies: - minimist "^1.2.5" - -mockjs@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/mockjs/-/mockjs-1.1.0.tgz#e6a0c378e91906dbaff20911cc0273b3c7d75b06" - integrity sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ== - dependencies: - commander "*" - -modify-values@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" - integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== - -moment@^2.27.0: - version "2.29.1" - resolved "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" - integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== - -mousetrap@^1.6.5: - version "1.6.5" - resolved "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.5.tgz#8a766d8c272b08393d5f56074e0b5ec183485bf9" - integrity sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA== - -mozjpeg@^7.0.0: - version "7.1.0" - resolved "https://registry.npmjs.org/mozjpeg/-/mozjpeg-7.1.0.tgz#23f202f3e48e98f02ed84f415358d4cbfab66c19" - integrity sha512-A6nVpI33DVi04HxatRx3PZTeVAOP1AC/T/5kXEvP0U8F+J11mmFFDv46BM2j5/cEyzDDtK8ptHeBSphNMrQLqA== - dependencies: - bin-build "^3.0.0" - bin-wrapper "^4.0.0" - logalot "^2.1.0" - -mri@^1.1.5: - version "1.1.6" - resolved "https://registry.npmjs.org/mri/-/mri-1.1.6.tgz#49952e1044db21dbf90f6cd92bc9c9a777d415a6" - integrity sha512-oi1b3MfbyGa7FJMP9GmLTttni5JoICpYBRlq+x5V16fZbLsnL9N3wFqqIm/nIG43FjUFkFh9Epzp/kzUGUnJxQ== - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@^2.1.1: - version "2.1.3" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -multimatch@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/multimatch/-/multimatch-4.0.0.tgz#8c3c0f6e3e8449ada0af3dd29efb491a375191b3" - integrity sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ== - dependencies: - "@types/minimatch" "^3.0.3" - array-differ "^3.0.0" - array-union "^2.1.0" - arrify "^2.0.1" - minimatch "^3.0.4" - -mute-stream@0.0.7: - version "0.0.7" - resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" - integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= - -mute-stream@0.0.8: - version "0.0.8" - resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" - integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== - -nanoid@^3.1.22, nanoid@^3.1.23: - version "3.1.23" - resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz#f744086ce7c2bc47ee0a8472574d5c78e4183a81" - integrity sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw== - -nanomatch@^1.2.1: - version "1.2.13" - resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" - integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - define-property "^2.0.2" - extend-shallow "^3.0.2" - fragment-cache "^0.2.1" - is-windows "^1.0.2" - kind-of "^6.0.2" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -nanopop@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/nanopop/-/nanopop-2.1.0.tgz#23476513cee2405888afd2e8a4b54066b70b9e60" - integrity sha512-jGTwpFRexSH+fxappnGQtN9dspgE2ipa1aOjtR24igG0pv6JCxImIAmrLRHX+zUF5+1wtsFVbKyfP51kIGAVNw== - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= - -needle@^2.5.2: - version "2.6.0" - resolved "https://registry.npmjs.org/needle/-/needle-2.6.0.tgz#24dbb55f2509e2324b4a99d61f413982013ccdbe" - integrity sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg== - dependencies: - debug "^3.2.6" - iconv-lite "^0.4.4" - sax "^1.2.4" - -neo-async@^2.6.0: - version "2.6.2" - resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" - integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== - -nice-try@^1.0.4: - version "1.0.5" - resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== - -no-case@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" - integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== - dependencies: - lower-case "^2.0.2" - tslib "^2.0.3" - -node-fetch@2.6.1: - version "2.6.1" - resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" - integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== - -node-int64@^0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= - -node-modules-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" - integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= - -node-releases@^1.1.71: - version "1.1.73" - resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20" - integrity sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg== - -normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.5.0: - version "2.5.0" - resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-package-data@^3.0.0: - version "3.0.2" - resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.2.tgz#cae5c410ae2434f9a6c1baa65d5bc3b9366c8699" - integrity sha512-6CdZocmfGaKnIHPVFhJJZ3GuR8SsLKvDANFp47Jmy51aKIr8akjAWTSxtpI+MBgBFdSMRyo4hMpDlT6dTffgZg== - dependencies: - hosted-git-info "^4.0.1" - resolve "^1.20.0" - semver "^7.3.4" - validate-npm-package-license "^3.0.1" - -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -normalize-range@^0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" - integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= - -normalize-selector@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/normalize-selector/-/normalize-selector-0.2.0.tgz#d0b145eb691189c63a78d201dc4fdb1293ef0c03" - integrity sha1-0LFF62kRicY6eNIB3E/bEpPvDAM= - -normalize-url@2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz#835a9da1551fa26f70e92329069a23aa6574d7e6" - integrity sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw== - dependencies: - prepend-http "^2.0.0" - query-string "^5.0.1" - sort-keys "^2.0.0" - -npm-conf@^1.1.0: - version "1.1.3" - resolved "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz#256cc47bd0e218c259c4e9550bf413bc2192aff9" - integrity sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw== - dependencies: - config-chain "^1.1.11" - pify "^3.0.0" - -npm-run-all@^4.1.5: - version "4.1.5" - resolved "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" - integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== - dependencies: - ansi-styles "^3.2.1" - chalk "^2.4.1" - cross-spawn "^6.0.5" - memorystream "^0.3.1" - minimatch "^3.0.4" - pidtree "^0.3.0" - read-pkg "^3.0.0" - shell-quote "^1.6.1" - string.prototype.padend "^3.0.0" - -npm-run-path@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" - integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= - dependencies: - path-key "^2.0.0" - -npm-run-path@^4.0.0, npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -nprogress@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz#cb8f34c53213d895723fcbab907e9422adbcafb1" - integrity sha1-y480xTIT2JVyP8urkH6UIq28r7E= - -nswag@^13.10.9: - version "13.13.2" - resolved "https://registry.nlark.com/nswag/download/nswag-13.13.2.tgz#2a192514433aa8dd1bba149eef699d4271a796e1" - integrity sha1-KhklFEM6qN0buhSe72mdQnGnluE= - -nth-check@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125" - integrity sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q== - dependencies: - boolbase "^1.0.0" - -num2fraction@^1.2.2: - version "1.2.2" - resolved "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" - integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= - -nwsapi@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" - integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== - -object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= - -object-copy@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" - integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= - dependencies: - copy-descriptor "^0.1.0" - define-property "^0.2.5" - kind-of "^3.0.3" - -object-inspect@^1.10.3, object-inspect@^1.9.0: - version "1.10.3" - resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369" - integrity sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw== - -object-keys@^1.0.12, object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object-visit@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" - integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= - dependencies: - isobject "^3.0.0" - -object.assign@^4.1.0, object.assign@^4.1.2: - version "4.1.2" - resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" - integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== - dependencies: - call-bind "^1.0.0" - define-properties "^1.1.3" - has-symbols "^1.0.1" - object-keys "^1.1.1" - -object.pick@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" - integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= - dependencies: - isobject "^3.0.1" - -omit.js@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/omit.js/-/omit.js-2.0.2.tgz#dd9b8436fab947a5f3ff214cb2538631e313ec2f" - integrity sha512-hJmu9D+bNB40YpL9jYebQl4lsTW6yEHRTroJzNLqQJYHm7c+NQnJGfZmIWh8S3q3KoaxV1aLhV6B3+0N0/kyJg== - -on-finished@~2.3.0: - version "2.3.0" - resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" - integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= - dependencies: - ee-first "1.1.1" - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= - dependencies: - wrappy "1" - -onetime@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" - integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= - dependencies: - mimic-fn "^1.0.0" - -onetime@^5.1.0, onetime@^5.1.2: - version "5.1.2" - resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -open@^7.4.2: - version "7.4.2" - resolved "https://registry.npmjs.org/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" - integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== - dependencies: - is-docker "^2.0.0" - is-wsl "^2.1.1" - -opener@^1.5.1: - version "1.5.2" - resolved "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" - integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== - -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== - dependencies: - deep-is "^0.1.3" - fast-levenshtein "^2.0.6" - levn "^0.4.1" - prelude-ls "^1.2.1" - type-check "^0.4.0" - word-wrap "^1.2.3" - -optipng-bin@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/optipng-bin/-/optipng-bin-7.0.0.tgz#2dfcc68a5f006e7746e76ad64d317d6fb7c7f9ed" - integrity sha512-mesUAwfedu5p9gRQwlYgD6Svw5IH3VUIWDJj/9cNpP3yFNbbEVqkTMWYhrIEn/cxmbGA3LpZrdoV2Yl8OfmnIA== - dependencies: - bin-build "^3.0.0" - bin-wrapper "^4.0.0" - logalot "^2.0.0" - -ora@^5.3.0: - version "5.4.1" - resolved "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" - integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== - dependencies: - bl "^4.1.0" - chalk "^4.1.0" - cli-cursor "^3.1.0" - cli-spinners "^2.5.0" - is-interactive "^1.0.0" - is-unicode-supported "^0.1.0" - log-symbols "^4.1.0" - strip-ansi "^6.0.0" - wcwidth "^1.0.1" - -os-filter-obj@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz#1c0b62d5f3a2442749a2d139e6dddee6e81d8d16" - integrity sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg== - dependencies: - arch "^2.1.0" - -os-tmpdir@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= - -ow@^0.17.0: - version "0.17.0" - resolved "https://registry.npmjs.org/ow/-/ow-0.17.0.tgz#4f938999fed6264c9048cd6254356e0f1e7f688c" - integrity sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA== - dependencies: - type-fest "^0.11.0" - -p-cancelable@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" - integrity sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw== - -p-cancelable@^0.4.0: - version "0.4.1" - resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0" - integrity sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ== - -p-each-series@^2.1.0: - version "2.2.0" - resolved "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a" - integrity sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA== - -p-event@^1.0.0: - version "1.3.0" - resolved "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz#8e6b4f4f65c72bc5b6fe28b75eda874f96a4a085" - integrity sha1-jmtPT2XHK8W2/ii3XtqHT5akoIU= - dependencies: - p-timeout "^1.1.1" - -p-event@^2.1.0: - version "2.3.1" - resolved "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz#596279ef169ab2c3e0cae88c1cfbb08079993ef6" - integrity sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA== - dependencies: - p-timeout "^2.0.1" - -p-finally@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= - -p-is-promise@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e" - integrity sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4= - -p-limit@^1.1.0: - version "1.3.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" - integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== - dependencies: - p-try "^1.0.0" - -p-limit@^2.0.0, p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-limit@^3.0.2: - version "3.1.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - -p-locate@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" - integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= - dependencies: - p-limit "^1.1.0" - -p-locate@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== - dependencies: - p-limit "^2.0.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-locate@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" - integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== - dependencies: - p-limit "^3.0.2" - -p-map-series@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz#bf98fe575705658a9e1351befb85ae4c1f07bdca" - integrity sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco= - dependencies: - p-reduce "^1.0.0" - -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - -p-pipe@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz#48b57c922aa2e1af6a6404cb7c6bf0eb9cc8e60e" - integrity sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw== - -p-reduce@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa" - integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo= - -p-timeout@^1.1.1: - version "1.2.1" - resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz#5eb3b353b7fce99f101a1038880bb054ebbea386" - integrity sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y= - dependencies: - p-finally "^1.0.0" - -p-timeout@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz#d8dd1979595d2dc0139e1fe46b8b646cb3cdf038" - integrity sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA== - dependencies: - p-finally "^1.0.0" - -p-try@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" - integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -param-case@^3.0.3, param-case@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" - integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== - dependencies: - dot-case "^3.0.4" - tslib "^2.0.3" - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-entities@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8" - integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ== - dependencies: - character-entities "^1.0.0" - character-entities-legacy "^1.0.0" - character-reference-invalid "^1.0.0" - is-alphanumerical "^1.0.0" - is-decimal "^1.0.0" - is-hexadecimal "^1.0.0" - -parse-github-repo-url@^1.3.0: - version "1.4.1" - resolved "https://registry.npmjs.org/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50" - integrity sha1-nn2LslKmy2ukJZUGC3v23z28H1A= - -parse-json@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" - integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= - dependencies: - error-ex "^1.2.0" - -parse-json@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" - integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= - dependencies: - error-ex "^1.3.1" - json-parse-better-errors "^1.0.1" - -parse-json@^5.0.0: - version "5.2.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -parse-node-version@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" - integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== - -parse-passwd@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" - integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= - -parse5@6.0.1: - version "6.0.1" - resolved "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" - integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== - -parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== - -pascal-case@^3.1.2: - version "3.1.2" - resolved "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" - integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - -pascalcase@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" - integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= - -path-case@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz#9168645334eb942658375c56f80b4c0cb5f82c6f" - integrity sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg== - dependencies: - dot-case "^3.0.4" - tslib "^2.0.3" - -path-exists@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" - integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= - dependencies: - pinkie-promise "^2.0.0" - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= - -path-key@^2.0.0, path-key@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.6: - version "1.0.7" - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-to-regexp@^6.2.0: - version "6.2.0" - resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.0.tgz#f7b3803336104c346889adece614669230645f38" - integrity sha512-f66KywYG6+43afgE/8j/GoiNyygk/bnoCbps++3ErRKsIYkGGupyv07R2Ok5m9i67Iqc+T2g1eAUGUPzWhYTyg== - -path-type@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" - integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= - dependencies: - graceful-fs "^4.1.2" - pify "^2.0.0" - pinkie-promise "^2.0.0" - -path-type@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" - integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== - dependencies: - pify "^3.0.0" - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pend@~1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" - integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= - -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.2.3: - version "2.3.0" - resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" - integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== - -pidtree@^0.3.0: - version "0.3.1" - resolved "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" - integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== - -pify@^2.0.0, pify@^2.2.0, pify@^2.3.0: - version "2.3.0" - resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= - -pify@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" - integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= - -pify@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" - integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== - -pinia@2.0.0-rc.4: - version "2.0.0-rc.4" - resolved "https://registry.yarnpkg.com/pinia/-/pinia-2.0.0-rc.4.tgz#43fca89aeb8d397ca9900f001c2125c4d6765dd6" - integrity sha512-I43V1TIFyDWT4UTi1CPLQXQZYXGQHQMKpDPI+oxC2fv0c+ej0fQBoKCn4WbfRWB+Vf5chhWM97GFLI+OWmUQEQ== - dependencies: - "@vue/devtools-api" "^6.0.0-beta.15" - vue-demi latest - -pinkie-promise@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" - integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= - dependencies: - pinkie "^2.0.0" - -pinkie@^2.0.0: - version "2.0.4" - resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" - integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= - -pirates@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" - integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== - dependencies: - node-modules-regexp "^1.0.0" - -pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -please-upgrade-node@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" - integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== - dependencies: - semver-compare "^1.0.0" - -pngjs@^3.3.0: - version "3.4.0" - resolved "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz#99ca7d725965fb655814eaf65f38f12bbdbf555f" - integrity sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w== - -pngquant-bin@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/pngquant-bin/-/pngquant-bin-6.0.0.tgz#aff0d7e61095feb96ced379ad8c7294ad3dd1712" - integrity sha512-oXWAS9MQ9iiDAJRdAZ9KO1mC5UwhzKkJsmetiu0iqIjJuW7JsuLhmc4JdRm7uJkIWRzIAou/Vq2VcjfJwz30Ow== - dependencies: - bin-build "^3.0.0" - bin-wrapper "^4.0.1" - execa "^4.0.0" - logalot "^2.0.0" - -portfinder@^1.0.25: - version "1.0.28" - resolved "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778" - integrity sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA== - dependencies: - async "^2.6.2" - debug "^3.1.1" - mkdirp "^0.5.5" - -posix-character-classes@^0.1.0: - version "0.1.1" - resolved "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" - integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= - -postcss-html@^0.36.0: - version "0.36.0" - resolved "https://registry.npmjs.org/postcss-html/-/postcss-html-0.36.0.tgz#b40913f94eaacc2453fd30a1327ad6ee1f88b204" - integrity sha512-HeiOxGcuwID0AFsNAL0ox3mW6MHH5cstWN1Z3Y+n6H+g12ih7LHdYxWwEA/QmrebctLjo79xz9ouK3MroHwOJw== - dependencies: - htmlparser2 "^3.10.0" - -postcss-less@^3.1.4: - version "3.1.4" - resolved "https://registry.npmjs.org/postcss-less/-/postcss-less-3.1.4.tgz#369f58642b5928ef898ffbc1a6e93c958304c5ad" - integrity sha512-7TvleQWNM2QLcHqvudt3VYjULVB49uiW6XzEUFmvwHzvsOEF5MwBrIXZDJQvJNFGjJQTzSzZnDoCJ8h/ljyGXA== - dependencies: - postcss "^7.0.14" - -postcss-media-query-parser@^0.2.3: - version "0.2.3" - resolved "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" - integrity sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ= - -postcss-modules-extract-imports@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" - integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== - -postcss-modules-local-by-default@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c" - integrity sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== - dependencies: - icss-utils "^5.0.0" - postcss-selector-parser "^6.0.2" - postcss-value-parser "^4.1.0" - -postcss-modules-scope@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" - integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== - dependencies: - postcss-selector-parser "^6.0.4" - -postcss-modules-values@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" - integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== - dependencies: - icss-utils "^5.0.0" - -postcss-modules@^4.0.0: - version "4.1.3" - resolved "https://registry.npmjs.org/postcss-modules/-/postcss-modules-4.1.3.tgz#c4c4c41d98d97d24c70e88dacfc97af5a4b3e21d" - integrity sha512-dBT39hrXe4OAVYJe/2ZuIZ9BzYhOe7t+IhedYeQ2OxKwDpAGlkEN/fR0fGnrbx4BvgbMReRX4hCubYK9cE/pJQ== - dependencies: - generic-names "^2.0.1" - icss-replace-symbols "^1.1.0" - lodash.camelcase "^4.3.0" - postcss-modules-extract-imports "^3.0.0" - postcss-modules-local-by-default "^4.0.0" - postcss-modules-scope "^3.0.0" - postcss-modules-values "^4.0.0" - string-hash "^1.1.1" - -postcss-prefix-selector@^1.6.0: - version "1.10.0" - resolved "https://registry.npmjs.org/postcss-prefix-selector/-/postcss-prefix-selector-1.10.0.tgz#7ed3194d44f6c314ab4bd93a4b7b8a2d89718844" - integrity sha512-VcC/zCXVfFdGyn+Fo9+mxnxBu+hT61uMJJBdfWBbIeDrcE6g8s+26SUPTMpz8kc9wfoLpJGAZZ4QwbVqwxpNRA== - dependencies: - postcss "^8.2.10" - -postcss-resolve-nested-selector@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz#29ccbc7c37dedfac304e9fff0bf1596b3f6a0e4e" - integrity sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4= - -postcss-safe-parser@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz#a6d4e48f0f37d9f7c11b2a581bf00f8ba4870b96" - integrity sha512-Uw6ekxSWNLCPesSv/cmqf2bY/77z11O7jZGPax3ycZMFU/oi2DMH9i89AdHc1tRwFg/arFoEwX0IS3LCUxJh1g== - dependencies: - postcss "^7.0.26" - -postcss-sass@^0.4.4: - version "0.4.4" - resolved "https://registry.npmjs.org/postcss-sass/-/postcss-sass-0.4.4.tgz#91f0f3447b45ce373227a98b61f8d8f0785285a3" - integrity sha512-BYxnVYx4mQooOhr+zer0qWbSPYnarAy8ZT7hAQtbxtgVf8gy+LSLT/hHGe35h14/pZDTw1DsxdbrwxBN++H+fg== - dependencies: - gonzales-pe "^4.3.0" - postcss "^7.0.21" - -postcss-scss@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/postcss-scss/-/postcss-scss-2.1.1.tgz#ec3a75fa29a55e016b90bf3269026c53c1d2b383" - integrity sha512-jQmGnj0hSGLd9RscFw9LyuSVAa5Bl1/KBPqG1NQw9w8ND55nY4ZEsdlVuYJvLPpV+y0nwTV5v/4rHPzZRihQbA== - dependencies: - postcss "^7.0.6" - -postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5: - version "6.0.6" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz#2c5bba8174ac2f6981ab631a42ab0ee54af332ea" - integrity sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg== - dependencies: - cssesc "^3.0.0" - util-deprecate "^1.0.2" - -postcss-sorting@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-5.0.1.tgz#10d5d0059eea8334dacc820c0121864035bc3f11" - integrity sha512-Y9fUFkIhfrm6i0Ta3n+89j56EFqaNRdUKqXyRp6kvTcSXnmgEjaVowCXH+JBe9+YKWqd4nc28r2sgwnzJalccA== - dependencies: - lodash "^4.17.14" - postcss "^7.0.17" - -postcss-syntax@^0.36.2: - version "0.36.2" - resolved "https://registry.npmjs.org/postcss-syntax/-/postcss-syntax-0.36.2.tgz#f08578c7d95834574e5593a82dfbfa8afae3b51c" - integrity sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w== - -postcss-value-parser@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" - integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== - -postcss@^5.2.17: - version "5.2.18" - resolved "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" - integrity sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg== - dependencies: - chalk "^1.1.3" - js-base64 "^2.1.9" - source-map "^0.5.6" - supports-color "^3.2.3" - -postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.31, postcss@^7.0.32, postcss@^7.0.35, postcss@^7.0.6: - version "7.0.36" - resolved "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz#056f8cffa939662a8f5905950c07d5285644dfcb" - integrity sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw== - dependencies: - chalk "^2.4.2" - source-map "^0.6.1" - supports-color "^6.1.0" - -postcss@^8.1.10, postcss@^8.2.10: - version "8.3.5" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.3.5.tgz#982216b113412bc20a86289e91eb994952a5b709" - integrity sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA== - dependencies: - colorette "^1.2.2" - nanoid "^3.1.23" - source-map-js "^0.6.2" - -postcss@^8.3.6: - version "8.3.6" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.3.6.tgz#2730dd76a97969f37f53b9a6096197be311cc4ea" - integrity sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A== - dependencies: - colorette "^1.2.2" - nanoid "^3.1.23" - source-map-js "^0.6.2" - -posthtml-parser@^0.2.0, posthtml-parser@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.2.1.tgz#35d530de386740c2ba24ff2eb2faf39ccdf271dd" - integrity sha1-NdUw3jhnQMK6JP8usvrznM3ycd0= - dependencies: - htmlparser2 "^3.8.3" - isobject "^2.1.0" - -posthtml-rename-id@^1.0: - version "1.0.12" - resolved "https://registry.npmjs.org/posthtml-rename-id/-/posthtml-rename-id-1.0.12.tgz#cf7f6eb37146bf1afac31e68f18c6cc19ae61433" - integrity sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw== - dependencies: - escape-string-regexp "1.0.5" - -posthtml-render@^1.0.5, posthtml-render@^1.0.6: - version "1.4.0" - resolved "https://registry.npmjs.org/posthtml-render/-/posthtml-render-1.4.0.tgz#40114070c45881cacb93347dae3eff53afbcff13" - integrity sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw== - -posthtml-svg-mode@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/posthtml-svg-mode/-/posthtml-svg-mode-1.0.3.tgz#abd554face81223cab0cb367e18e4efd2a4e74b0" - integrity sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ== - dependencies: - merge-options "1.0.1" - posthtml "^0.9.2" - posthtml-parser "^0.2.1" - posthtml-render "^1.0.6" - -posthtml@^0.9.2: - version "0.9.2" - resolved "https://registry.npmjs.org/posthtml/-/posthtml-0.9.2.tgz#f4c06db9f67b61fd17c4e256e7e3d9515bf726fd" - integrity sha1-9MBtufZ7Yf0XxOJW5+PZUVv3Jv0= - dependencies: - posthtml-parser "^0.2.0" - posthtml-render "^1.0.5" - -preact@^10.4.8: - version "10.5.14" - resolved "https://registry.yarnpkg.com/preact/-/preact-10.5.14.tgz#0b14a2eefba3c10a57116b90d1a65f5f00cd2701" - integrity sha512-KojoltCrshZ099ksUZ2OQKfbH66uquFoxHSbnwKbTJHeQNvx42EmC7wQVWNuDt6vC5s3nudRHFtKbpY4ijKlaQ== - -prelude-ls@^1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" - integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= - -prepend-http@^1.0.1: - version "1.0.4" - resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" - integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= - -prepend-http@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" - integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= - -prettier-linter-helpers@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" - integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== - dependencies: - fast-diff "^1.1.2" - -prettier@^2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.2.tgz#ef280a05ec253712e486233db5c6f23441e7342d" - integrity sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ== - -pretty-bytes@^5.3.0, pretty-bytes@^5.6.0: - version "5.6.0" - resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" - integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== - -pretty-format@^27.0.0, pretty-format@^27.0.6: - version "27.0.6" - resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-27.0.6.tgz#ab770c47b2c6f893a21aefc57b75da63ef49a11f" - integrity sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ== - dependencies: - "@jest/types" "^27.0.6" - ansi-regex "^5.0.0" - ansi-styles "^5.0.0" - react-is "^17.0.1" - -pretty-quick@^3.1.1: - version "3.1.1" - resolved "https://registry.npmjs.org/pretty-quick/-/pretty-quick-3.1.1.tgz#93ca4e2dd38cc4e970e3f54a0ead317a25454688" - integrity sha512-ZYLGiMoV2jcaas3vTJrLvKAYsxDoXQBUn8OSTxkl67Fyov9lyXivJTl0+2WVh+y6EovGcw7Lm5ThYpH+Sh3XxQ== - dependencies: - chalk "^3.0.0" - execa "^4.0.0" - find-up "^4.1.0" - ignore "^5.1.4" - mri "^1.1.5" - multimatch "^4.0.0" - -print-js@^1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/print-js/-/print-js-1.6.0.tgz#692b046cf31992b46afa6c6d8a9db1c69d431d1f" - integrity sha512-BfnOIzSKbqGRtO4o0rnj/K3681BSd2QUrsIZy/+WdCIugjIswjmx3lDEZpXB2ruGf9d4b3YNINri81+J0FsBWg== - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -progress@^2.0.0: - version "2.0.3" - resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" - integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== - -promise@^7.0.1: - version "7.3.1" - resolved "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" - integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== - dependencies: - asap "~2.0.3" - -prompts@^2.0.1: - version "2.4.1" - resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.1.tgz#befd3b1195ba052f9fd2fde8a486c4e82ee77f61" - integrity sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ== - dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" - -proto-list@~1.2.1: - version "1.2.4" - resolved "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" - integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk= - -prr@~1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" - integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= - -pseudomap@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= - -psl@^1.1.33: - version "1.8.0" - resolved "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" - integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== - -pug-attrs@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/pug-attrs/-/pug-attrs-3.0.0.tgz#b10451e0348165e31fad1cc23ebddd9dc7347c41" - integrity sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA== - dependencies: - constantinople "^4.0.1" - js-stringify "^1.0.2" - pug-runtime "^3.0.0" - -pug-code-gen@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-3.0.2.tgz#ad190f4943133bf186b60b80de483100e132e2ce" - integrity sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg== - dependencies: - constantinople "^4.0.1" - doctypes "^1.1.0" - js-stringify "^1.0.2" - pug-attrs "^3.0.0" - pug-error "^2.0.0" - pug-runtime "^3.0.0" - void-elements "^3.1.0" - with "^7.0.0" - -pug-error@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/pug-error/-/pug-error-2.0.0.tgz#5c62173cb09c34de2a2ce04f17b8adfec74d8ca5" - integrity sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ== - -pug-filters@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/pug-filters/-/pug-filters-4.0.0.tgz#d3e49af5ba8472e9b7a66d980e707ce9d2cc9b5e" - integrity sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A== - dependencies: - constantinople "^4.0.1" - jstransformer "1.0.0" - pug-error "^2.0.0" - pug-walk "^2.0.0" - resolve "^1.15.1" - -pug-lexer@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz#ae44628c5bef9b190b665683b288ca9024b8b0d5" - integrity sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w== - dependencies: - character-parser "^2.2.0" - is-expression "^4.0.0" - pug-error "^2.0.0" - -pug-linker@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/pug-linker/-/pug-linker-4.0.0.tgz#12cbc0594fc5a3e06b9fc59e6f93c146962a7708" - integrity sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw== - dependencies: - pug-error "^2.0.0" - pug-walk "^2.0.0" - -pug-load@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/pug-load/-/pug-load-3.0.0.tgz#9fd9cda52202b08adb11d25681fb9f34bd41b662" - integrity sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ== - dependencies: - object-assign "^4.1.1" - pug-walk "^2.0.0" - -pug-parser@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/pug-parser/-/pug-parser-6.0.0.tgz#a8fdc035863a95b2c1dc5ebf4ecf80b4e76a1260" - integrity sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw== - dependencies: - pug-error "^2.0.0" - token-stream "1.0.0" - -pug-runtime@^3.0.0, pug-runtime@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/pug-runtime/-/pug-runtime-3.0.1.tgz#f636976204723f35a8c5f6fad6acda2a191b83d7" - integrity sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg== - -pug-strip-comments@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz#f94b07fd6b495523330f490a7f554b4ff876303e" - integrity sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ== - dependencies: - pug-error "^2.0.0" - -pug-walk@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/pug-walk/-/pug-walk-2.0.0.tgz#417aabc29232bb4499b5b5069a2b2d2a24d5f5fe" - integrity sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ== - -pug@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/pug/-/pug-3.0.2.tgz#f35c7107343454e43bc27ae0ff76c731b78ea535" - integrity sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw== - dependencies: - pug-code-gen "^3.0.2" - pug-filters "^4.0.0" - pug-lexer "^5.0.1" - pug-linker "^4.0.0" - pug-load "^3.0.0" - pug-parser "^6.0.0" - pug-runtime "^3.0.1" - pug-strip-comments "^2.0.0" - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -punycode@^2.1.0, punycode@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== - -q@^1.5.1: - version "1.5.1" - resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" - integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= - -qrcode@^1.4.4: - version "1.4.4" - resolved "https://registry.npmjs.org/qrcode/-/qrcode-1.4.4.tgz#f0c43568a7e7510a55efc3b88d9602f71963ea83" - integrity sha512-oLzEC5+NKFou9P0bMj5+v6Z40evexeE29Z9cummZXZ9QXyMr3lphkURzxjXgPJC5azpxcshoDWV1xE46z+/c3Q== - dependencies: - buffer "^5.4.3" - buffer-alloc "^1.2.0" - buffer-from "^1.1.1" - dijkstrajs "^1.0.1" - isarray "^2.0.1" - pngjs "^3.3.0" - yargs "^13.2.4" - -qs@^6.4.0: - version "6.10.1" - resolved "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz#4931482fa8d647a5aab799c5271d2133b981fb6a" - integrity sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg== - dependencies: - side-channel "^1.0.4" - -query-string@^4.3.2: - version "4.3.4" - resolved "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" - integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s= - dependencies: - object-assign "^4.1.0" - strict-uri-encode "^1.0.0" - -query-string@^5.0.1: - version "5.1.1" - resolved "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz#a78c012b71c17e05f2e3fa2319dd330682efb3cb" - integrity sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw== - dependencies: - decode-uri-component "^0.2.0" - object-assign "^4.1.0" - strict-uri-encode "^1.0.0" - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -quick-lru@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" - integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== - -randombytes@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - -react-is@^17.0.1: - version "17.0.2" - resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" - integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== - -read-pkg-up@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" - integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= - dependencies: - find-up "^1.0.0" - read-pkg "^1.0.0" - -read-pkg-up@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" - integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc= - dependencies: - find-up "^2.0.0" - read-pkg "^3.0.0" - -read-pkg-up@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" - integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== - dependencies: - find-up "^4.1.0" - read-pkg "^5.2.0" - type-fest "^0.8.1" - -read-pkg@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" - integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= - dependencies: - load-json-file "^1.0.0" - normalize-package-data "^2.3.2" - path-type "^1.0.0" - -read-pkg@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" - integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= - dependencies: - load-json-file "^4.0.0" - normalize-package-data "^2.3.2" - path-type "^3.0.0" - -read-pkg@^5.2.0: - version "5.2.0" - resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== - dependencies: - "@types/normalize-package-data" "^2.4.0" - normalize-package-data "^2.5.0" - parse-json "^5.0.0" - type-fest "^0.6.0" - -readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.1.1, readable-stream@^3.4.0: - version "3.6.0" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readable-stream@^2.0.0, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@~2.3.6: - version "2.3.7" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - -rechoir@^0.6.2: - version "0.6.2" - resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" - integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= - dependencies: - resolve "^1.1.6" - -redent@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" - integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= - dependencies: - indent-string "^2.1.0" - strip-indent "^1.0.1" - -redent@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" - integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== - dependencies: - indent-string "^4.0.0" - strip-indent "^3.0.0" - -regenerate-unicode-properties@^8.2.0: - version "8.2.0" - resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" - integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== - dependencies: - regenerate "^1.4.0" - -regenerate@^1.4.0: - version "1.4.2" - resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" - integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== - -regenerator-runtime@^0.13.4: - version "0.13.7" - resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" - integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== - -regenerator-runtime@^0.13.9: - version "0.13.9" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" - integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== - -regenerator-transform@^0.14.2: - version "0.14.5" - resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" - integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== - dependencies: - "@babel/runtime" "^7.8.4" - -regex-not@^1.0.0, regex-not@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" - integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== - dependencies: - extend-shallow "^3.0.2" - safe-regex "^1.1.0" - -regexpp@^3.1.0: - version "3.2.0" - resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" - integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== - -regexpu-core@^4.7.1: - version "4.7.1" - resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6" - integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== - dependencies: - regenerate "^1.4.0" - regenerate-unicode-properties "^8.2.0" - regjsgen "^0.5.1" - regjsparser "^0.6.4" - unicode-match-property-ecmascript "^1.0.4" - unicode-match-property-value-ecmascript "^1.2.0" - -regjsgen@^0.5.1: - version "0.5.2" - resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" - integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== - -regjsparser@^0.6.4: - version "0.6.9" - resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6" - integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ== - dependencies: - jsesc "~0.5.0" - -relateurl@^0.2.7: - version "0.2.7" - resolved "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" - integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= - -remark-parse@^9.0.0: - version "9.0.0" - resolved "https://registry.npmjs.org/remark-parse/-/remark-parse-9.0.0.tgz#4d20a299665880e4f4af5d90b7c7b8a935853640" - integrity sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw== - dependencies: - mdast-util-from-markdown "^0.8.0" - -remark-stringify@^9.0.0: - version "9.0.1" - resolved "https://registry.npmjs.org/remark-stringify/-/remark-stringify-9.0.1.tgz#576d06e910548b0a7191a71f27b33f1218862894" - integrity sha512-mWmNg3ZtESvZS8fv5PTvaPckdL4iNlCHTt8/e/8oN08nArHRHjNZMKzA/YW3+p7/lYqIw4nx1XsjCBo/AxNChg== - dependencies: - mdast-util-to-markdown "^0.6.0" - -remark@^13.0.0: - version "13.0.0" - resolved "https://registry.npmjs.org/remark/-/remark-13.0.0.tgz#d15d9bf71a402f40287ebe36067b66d54868e425" - integrity sha512-HDz1+IKGtOyWN+QgBiAT0kn+2s6ovOxHyPAFGKVE81VSzJ+mq7RwHFledEvB5F1p4iJvOah/LOKdFuzvRnNLCA== - dependencies: - remark-parse "^9.0.0" - remark-stringify "^9.0.0" - unified "^9.1.0" - -repeat-element@^1.1.2: - version "1.1.4" - resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" - integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== - -repeat-string@^1.0.0, repeat-string@^1.6.1: - version "1.6.1" - resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= - -repeating@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" - integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= - dependencies: - is-finite "^1.0.0" - -replace-ext@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz#2d6d996d04a15855d967443631dd5f77825b016a" - integrity sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw== - -request-light@^0.5.4: - version "0.5.4" - resolved "https://registry.yarnpkg.com/request-light/-/request-light-0.5.4.tgz#497a98c6d8ae49536417a5e2d7f383b934f3e38c" - integrity sha512-t3566CMweOFlUk7Y1DJMu5OrtpoZEb6aSTsLQVT3wtrIEJ5NhcY9G/Oqxvjllzl4a15zXfFlcr9q40LbLVQJqw== - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= - -require-from-string@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" - integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== - -require-main-filename@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - -requires-port@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= - -resize-observer-polyfill@^1.5.1: - version "1.5.1" - resolved "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" - integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg== - -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-dir@^1.0.0, resolve-dir@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" - integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M= - dependencies: - expand-tilde "^2.0.0" - global-modules "^1.0.0" - -resolve-from@5.0.0, resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-global@1.0.0, resolve-global@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz#a2a79df4af2ca3f49bf77ef9ddacd322dad19255" - integrity sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw== - dependencies: - global-dirs "^0.1.1" - -resolve-url@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" - integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= - -resolve@^1.1.6, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.15.1, resolve@^1.19.0, resolve@^1.20.0: - version "1.20.0" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" - integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== - dependencies: - is-core-module "^2.2.0" - path-parse "^1.0.6" - -responselike@1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" - integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= - dependencies: - lowercase-keys "^1.0.0" - -restore-cursor@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" - integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= - dependencies: - onetime "^2.0.0" - signal-exit "^3.0.2" - -restore-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" - integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== - dependencies: - onetime "^5.1.0" - signal-exit "^3.0.2" - -ret@~0.1.10: - version "0.1.15" - resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" - integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== - -reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== - -rimraf@^2.5.4: - version "2.7.1" - resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== - dependencies: - glob "^7.1.3" - -rimraf@^3.0.0, rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -rollup-plugin-purge-icons@^0.7.0: - version "0.7.0" - resolved "https://registry.npmjs.org/rollup-plugin-purge-icons/-/rollup-plugin-purge-icons-0.7.0.tgz#4419b810d5d75f1bba3af72a238e70b4a675f03c" - integrity sha512-zAff7SrjC2nA7TCm6gaOclh1cZ2IBupX1tnebn+sfvcvrezu+avS7k0BhhAC2pAtfhdOvD6G/2a+kkkm6hvpiw== - dependencies: - "@purge-icons/core" "^0.7.0" - "@purge-icons/generated" "^0.7.0" - -rollup-plugin-terser@^7.0.0: - version "7.0.2" - resolved "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz#e8fbba4869981b2dc35ae7e8a502d5c6c04d324d" - integrity sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== - dependencies: - "@babel/code-frame" "^7.10.4" - jest-worker "^26.2.1" - serialize-javascript "^4.0.0" - terser "^5.0.0" - -rollup-plugin-visualizer@5.5.2: - version "5.5.2" - resolved "https://registry.yarnpkg.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.5.2.tgz#ae2130ee5ae4a2d901e764e492b71357cb95eed7" - integrity sha512-sh+P9KhuWTzeStyRA5yNZpoEFGuj5Ph34JLMa9+muhU8CneFf9L0XE4fmAwAojJLWp//uLUEyytBPSCdZEg5AA== - dependencies: - nanoid "^3.1.22" - open "^7.4.2" - source-map "^0.7.3" - yargs "^16.2.0" - -rollup@^2.38.5, rollup@^2.43.1, rollup@^2.55.1, rollup@^2.56.2: - version "2.56.2" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.56.2.tgz#a045ff3f6af53ee009b5f5016ca3da0329e5470f" - integrity sha512-s8H00ZsRi29M2/lGdm1u8DJpJ9ML8SUOpVVBd33XNeEeL3NVaTiUcSBHzBdF3eAyR0l7VSpsuoVUGrRHq7aPwQ== - optionalDependencies: - fsevents "~2.3.2" - -run-async@^2.2.0, run-async@^2.4.0: - version "2.4.1" - resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" - integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== - -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -rxjs@^6.4.0, rxjs@^6.6.7: - version "6.6.7" - resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" - integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== - dependencies: - tslib "^1.9.0" - -rxjs@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.2.0.tgz#5cd12409639e9514a71c9f5f9192b2c4ae94de31" - integrity sha512-aX8w9OpKrQmiPKfT1bqETtUr9JygIz6GZ+gql8v7CijClsP0laoFUdKzxFAoWuRdSlOdU2+crss+cMf+cqMTnw== - dependencies: - tslib "~2.1.0" - -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-regex@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" - integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= - dependencies: - ret "~0.1.10" - -"safer-buffer@>= 2.1.2 < 3": - version "2.1.2" - resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sax@^1.2.4: - version "1.2.4" - resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== - -saxes@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" - integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== - dependencies: - xmlchars "^2.2.0" - -scroll-into-view-if-needed@^2.2.25: - version "2.2.28" - resolved "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.28.tgz#5a15b2f58a52642c88c8eca584644e01703d645a" - integrity sha512-8LuxJSuFVc92+0AdNv4QOxRL4Abeo1DgLnGNkn1XlaujPH/3cCFz3QI60r2VNu4obJJROzgnIUw5TKQkZvZI1w== - dependencies: - compute-scroll-into-view "^1.0.17" - -secure-compare@3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/secure-compare/-/secure-compare-3.0.1.tgz#f1a0329b308b221fae37b9974f3d578d0ca999e3" - integrity sha1-8aAymzCLIh+uN7mXTz1XjQypmeM= - -seek-bzip@^1.0.5: - version "1.0.6" - resolved "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz#35c4171f55a680916b52a07859ecf3b5857f21c4" - integrity sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ== - dependencies: - commander "^2.8.1" - -semver-compare@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" - integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= - -semver-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338" - integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw== - -semver-truncate@^1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz#57f41de69707a62709a7e0104ba2117109ea47e8" - integrity sha1-V/Qd5pcHpicJp+AQS6IRcQnqR+g= - dependencies: - semver "^5.3.0" - -"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.5.0, semver@^5.6.0: - version "5.7.1" - resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" - integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== - -semver@7.3.5, semver@7.x, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5: - version "7.3.5" - resolved "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" - integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== - dependencies: - lru-cache "^6.0.0" - -semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -sentence-case@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz#3645a7b8c117c787fde8702056225bb62a45131f" - integrity sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - upper-case-first "^2.0.2" - -serialize-javascript@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" - integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== - dependencies: - randombytes "^2.1.0" - -set-blocking@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= - -set-value@^2.0.0, set-value@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" - integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.3" - split-string "^3.0.1" - -shallow-equal@^1.0.0: - version "1.2.1" - resolved "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz#4c16abfa56043aa20d050324efa68940b0da79da" - integrity sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA== - -shebang-command@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= - dependencies: - shebang-regex "^1.0.0" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shell-quote@^1.6.1: - version "1.7.2" - resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" - integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== - -shelljs@^0.8.3: - version "0.8.4" - resolved "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2" - integrity sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ== - dependencies: - glob "^7.0.0" - interpret "^1.0.0" - rechoir "^0.6.2" - -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - -signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: - version "3.0.3" - resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" - integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== - -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -slice-ansi@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" - integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== - dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" - -slice-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" - integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== - dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" - -snake-case@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" - integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== - dependencies: - dot-case "^3.0.4" - tslib "^2.0.3" - -snapdragon-node@^2.0.1: - version "2.1.1" - resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" - integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== - dependencies: - define-property "^1.0.0" - isobject "^3.0.0" - snapdragon-util "^3.0.1" - -snapdragon-util@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" - integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== - dependencies: - kind-of "^3.2.0" - -snapdragon@^0.8.1: - version "0.8.2" - resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" - integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== - dependencies: - base "^0.11.1" - debug "^2.2.0" - define-property "^0.2.5" - extend-shallow "^2.0.1" - map-cache "^0.2.2" - source-map "^0.5.6" - source-map-resolve "^0.5.0" - use "^3.1.0" - -sort-keys-length@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz#9cb6f4f4e9e48155a6aa0671edd336ff1479a188" - integrity sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg= - dependencies: - sort-keys "^1.0.0" - -sort-keys@^1.0.0: - version "1.1.2" - resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" - integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0= - dependencies: - is-plain-obj "^1.0.0" - -sort-keys@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" - integrity sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg= - dependencies: - is-plain-obj "^1.0.0" - -sortablejs@^1.14.0: - version "1.14.0" - resolved "https://registry.npmjs.org/sortablejs/-/sortablejs-1.14.0.tgz#6d2e17ccbdb25f464734df621d4f35d4ab35b3d8" - integrity sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w== - -source-map-js@^0.6.2: - version "0.6.2" - resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz#0bb5de631b41cfbda6cfba8bd05a80efdfd2385e" - integrity sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug== - -source-map-resolve@^0.5.0: - version "0.5.3" - resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" - integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== - dependencies: - atob "^2.1.2" - decode-uri-component "^0.2.0" - resolve-url "^0.2.1" - source-map-url "^0.4.0" - urix "^0.1.0" - -source-map-support@^0.5.6, source-map-support@~0.5.12, source-map-support@~0.5.19: - version "0.5.19" - resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" - integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map-url@^0.4.0: - version "0.4.1" - resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" - integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== - -source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -source-map@^0.5.0, source-map@^0.5.6: - version "0.5.7" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= - -source-map@^0.7.3, source-map@~0.7.2: - version "0.7.3" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" - integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== - -source-map@^0.8.0-beta.0: - version "0.8.0-beta.0" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz#d4c1bb42c3f7ee925f005927ba10709e0d1d1f11" - integrity sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA== - dependencies: - whatwg-url "^7.0.0" - -sourcemap-codec@^1.4.4: - version "1.4.8" - resolved "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" - integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== - -spdx-correct@^3.0.0: - version "3.1.1" - resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" - integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - -spdx-expression-parse@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.9" - resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz#8a595135def9592bda69709474f1cbeea7c2467f" - integrity sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ== - -specificity@^0.4.1: - version "0.4.1" - resolved "https://registry.npmjs.org/specificity/-/specificity-0.4.1.tgz#aab5e645012db08ba182e151165738d00887b019" - integrity sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg== - -split-string@^3.0.1, split-string@^3.0.2: - version "3.1.0" - resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" - integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== - dependencies: - extend-shallow "^3.0.0" - -split2@^3.0.0: - version "3.2.2" - resolved "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" - integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== - dependencies: - readable-stream "^3.0.0" - -split@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" - integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== - dependencies: - through "2" - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= - -squeak@^1.0.0: - version "1.3.0" - resolved "https://registry.npmjs.org/squeak/-/squeak-1.3.0.tgz#33045037b64388b567674b84322a6521073916c3" - integrity sha1-MwRQN7ZDiLVnZ0uEMiplIQc5FsM= - dependencies: - chalk "^1.0.0" - console-stream "^0.1.1" - lpad-align "^1.0.1" - -stable@^0.1.8: - version "0.1.8" - resolved "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" - integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== - -stack-utils@^2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz#cd5f030126ff116b78ccb3c027fe302713b61277" - integrity sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw== - dependencies: - escape-string-regexp "^2.0.0" - -static-extend@^0.1.1: - version "0.1.2" - resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" - integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= - dependencies: - define-property "^0.2.5" - object-copy "^0.1.0" - -statuses@~1.5.0: - version "1.5.0" - resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" - integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= - -strict-uri-encode@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" - integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= - -string-argv@0.3.1: - version "0.3.1" - resolved "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" - integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== - -string-hash@^1.1.1: - version "1.1.3" - resolved "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" - integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs= - -string-length@^4.0.1: - version "4.0.2" - resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" - integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== - dependencies: - char-regex "^1.0.2" - strip-ansi "^6.0.0" - -string-width@^2.1.0: - version "2.1.1" - resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== - dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^4.0.0" - -string-width@^3.0.0, string-width@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" - integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== - dependencies: - emoji-regex "^7.0.1" - is-fullwidth-code-point "^2.0.0" - strip-ansi "^5.1.0" - -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2: - version "4.2.2" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" - integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.0" - -string.prototype.padend@^3.0.0: - version "3.1.2" - resolved "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz#6858ca4f35c5268ebd5e8615e1327d55f59ee311" - integrity sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.18.0-next.2" - -string.prototype.trimend@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" - integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - -string.prototype.trimstart@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" - integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -stringify-object@^3.3.0: - version "3.3.0" - resolved "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" - integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== - dependencies: - get-own-enumerable-property-symbols "^3.0.0" - is-obj "^1.0.1" - is-regexp "^1.0.0" - -strip-ansi@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= - dependencies: - ansi-regex "^2.0.0" - -strip-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" - integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= - dependencies: - ansi-regex "^3.0.0" - -strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: - version "5.2.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== - dependencies: - ansi-regex "^4.1.0" - -strip-ansi@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" - integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== - dependencies: - ansi-regex "^5.0.0" - -strip-bom@4.0.0, strip-bom@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" - integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== - -strip-bom@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" - integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= - dependencies: - is-utf8 "^0.2.0" - -strip-bom@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= - -strip-comments@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz#4ad11c3fbcac177a67a40ac224ca339ca1c1ba9b" - integrity sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw== - -strip-dirs@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz#4987736264fc344cf20f6c34aca9d13d1d4ed6c5" - integrity sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g== - dependencies: - is-natural-number "^4.0.1" - -strip-eof@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" - integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-indent@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" - integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= - dependencies: - get-stdin "^4.0.1" - -strip-indent@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" - integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== - dependencies: - min-indent "^1.0.0" - -strip-json-comments@3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7" - integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw== - -strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: - version "3.1.1" - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" - integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== - -strip-outer@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz#b2fd2abf6604b9d1e6013057195df836b8a9d631" - integrity sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg== - dependencies: - escape-string-regexp "^1.0.2" - -style-search@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902" - integrity sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI= - -stylelint-config-prettier@^8.0.2: - version "8.0.2" - resolved "https://registry.npmjs.org/stylelint-config-prettier/-/stylelint-config-prettier-8.0.2.tgz#da9de33da4c56893cbe7e26df239a7374045e14e" - integrity sha512-TN1l93iVTXpF9NJstlvP7nOu9zY2k+mN0NSFQ/VEGz15ZIP9ohdDZTtCWHs5LjctAhSAzaILULGbgiM0ItId3A== - -stylelint-config-recommended@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-5.0.0.tgz#fb5653f495a60b4938f2ad3e77712d9e1039ae78" - integrity sha512-c8aubuARSu5A3vEHLBeOSJt1udOdS+1iue7BmJDTSXoCBmfEQmmWX+59vYIj3NQdJBY6a/QRv1ozVFpaB9jaqA== - -stylelint-config-standard@^22.0.0: - version "22.0.0" - resolved "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-22.0.0.tgz#c860be9a13ebbc1b084456fa10527bf13a44addf" - integrity sha512-uQVNi87SHjqTm8+4NIP5NMAyY/arXrBgimaaT7skvRfE9u3JKXRK9KBkbr4pVmeciuCcs64kAdjlxfq6Rur7Hw== - dependencies: - stylelint-config-recommended "^5.0.0" - -stylelint-order@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/stylelint-order/-/stylelint-order-4.1.0.tgz#692d05b7d0c235ac66fcf5ea1d9e5f08a76747f6" - integrity sha512-sVTikaDvMqg2aJjh4r48jsdfmqLT+nqB1MOsaBnvM3OwLx4S+WXcsxsgk5w18h/OZoxZCxuyXMh61iBHcj9Qiw== - dependencies: - lodash "^4.17.15" - postcss "^7.0.31" - postcss-sorting "^5.0.1" - -stylelint@^13.13.1: - version "13.13.1" - resolved "https://registry.npmjs.org/stylelint/-/stylelint-13.13.1.tgz#fca9c9f5de7990ab26a00f167b8978f083a18f3c" - integrity sha512-Mv+BQr5XTUrKqAXmpqm6Ddli6Ief+AiPZkRsIrAoUKFuq/ElkUh9ZMYxXD0iQNZ5ADghZKLOWz1h7hTClB7zgQ== - dependencies: - "@stylelint/postcss-css-in-js" "^0.37.2" - "@stylelint/postcss-markdown" "^0.36.2" - autoprefixer "^9.8.6" - balanced-match "^2.0.0" - chalk "^4.1.1" - cosmiconfig "^7.0.0" - debug "^4.3.1" - execall "^2.0.0" - fast-glob "^3.2.5" - fastest-levenshtein "^1.0.12" - file-entry-cache "^6.0.1" - get-stdin "^8.0.0" - global-modules "^2.0.0" - globby "^11.0.3" - globjoin "^0.1.4" - html-tags "^3.1.0" - ignore "^5.1.8" - import-lazy "^4.0.0" - imurmurhash "^0.1.4" - known-css-properties "^0.21.0" - lodash "^4.17.21" - log-symbols "^4.1.0" - mathml-tag-names "^2.1.3" - meow "^9.0.0" - micromatch "^4.0.4" - normalize-selector "^0.2.0" - postcss "^7.0.35" - postcss-html "^0.36.0" - postcss-less "^3.1.4" - postcss-media-query-parser "^0.2.3" - postcss-resolve-nested-selector "^0.1.1" - postcss-safe-parser "^4.0.2" - postcss-sass "^0.4.4" - postcss-scss "^2.1.1" - postcss-selector-parser "^6.0.5" - postcss-syntax "^0.36.2" - postcss-value-parser "^4.1.0" - resolve-from "^5.0.0" - slash "^3.0.0" - specificity "^0.4.1" - string-width "^4.2.2" - strip-ansi "^6.0.0" - style-search "^0.1.0" - sugarss "^2.0.0" - svg-tags "^1.0.0" - table "^6.6.0" - v8-compile-cache "^2.3.0" - write-file-atomic "^3.0.3" - -sugarss@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/sugarss/-/sugarss-2.0.0.tgz#ddd76e0124b297d40bf3cca31c8b22ecb43bc61d" - integrity sha512-WfxjozUk0UVA4jm+U1d736AUpzSrNsQcIbyOkoE364GrtWmIrFdk5lksEupgWMD4VaT/0kVx1dobpiDumSgmJQ== - dependencies: - postcss "^7.0.2" - -supports-color@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= - -supports-color@^3.2.3: - version "3.2.3" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" - integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY= - dependencies: - has-flag "^1.0.0" - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^6.1.0: - version "6.1.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" - integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.0.0, supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-color@^8.0.0: - version "8.1.1" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - -supports-hyperlinks@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" - integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== - dependencies: - has-flag "^4.0.0" - supports-color "^7.0.0" - -svg-baker@1.7.0: - version "1.7.0" - resolved "https://registry.npmjs.org/svg-baker/-/svg-baker-1.7.0.tgz#8367f78d875550c52fe4756f7303d5c5d7c2e9a7" - integrity sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg== - dependencies: - bluebird "^3.5.0" - clone "^2.1.1" - he "^1.1.1" - image-size "^0.5.1" - loader-utils "^1.1.0" - merge-options "1.0.1" - micromatch "3.1.0" - postcss "^5.2.17" - postcss-prefix-selector "^1.6.0" - posthtml-rename-id "^1.0" - posthtml-svg-mode "^1.0.3" - query-string "^4.3.2" - traverse "^0.6.6" - -svg-tags@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" - integrity sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q= - -svgo@^2.1.0, svgo@^2.3.1: - version "2.3.1" - resolved "https://registry.npmjs.org/svgo/-/svgo-2.3.1.tgz#603a69ce50311c0e36791528f549644ec1b3f4bc" - integrity sha512-riDDIQgXpEnn0BEl9Gvhh1LNLIyiusSpt64IR8upJu7MwxnzetmF/Y57pXQD2NMX2lVyMRzXt5f2M5rO4wG7Dw== - dependencies: - "@trysound/sax" "0.1.1" - chalk "^4.1.0" - commander "^7.1.0" - css-select "^4.1.3" - css-tree "^1.1.2" - csso "^4.2.0" - stable "^0.1.8" - -symbol-tree@^3.2.4: - version "3.2.4" - resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" - integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== - -systemjs@^6.10.2: - version "6.10.2" - resolved "https://registry.yarnpkg.com/systemjs/-/systemjs-6.10.2.tgz#c9870217bddf9cfd25d12d4fcd1989541ef1207c" - integrity sha512-PwaC0Z6Y1E6gFekY2u38EC5+5w2M65jYVrD1aAcOptpHVhCwPIwPFJvYJyryQKUyeuQ5bKKI3PBHWNjdE9aizg== - -table@^6.0.9, table@^6.6.0: - version "6.7.1" - resolved "https://registry.npmjs.org/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2" - integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg== - dependencies: - ajv "^8.0.1" - lodash.clonedeep "^4.5.0" - lodash.truncate "^4.4.2" - slice-ansi "^4.0.0" - string-width "^4.2.0" - strip-ansi "^6.0.0" - -tar-stream@^1.5.2: - version "1.6.2" - resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" - integrity sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A== - dependencies: - bl "^1.0.0" - buffer-alloc "^1.2.0" - end-of-stream "^1.0.0" - fs-constants "^1.0.0" - readable-stream "^2.3.0" - to-buffer "^1.1.1" - xtend "^4.0.0" - -temp-dir@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" - integrity sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0= - -temp-dir@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e" - integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== - -tempfile@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz#6b0446856a9b1114d1856ffcbe509cccb0977265" - integrity sha1-awRGhWqbERTRhW/8vlCczLCXcmU= - dependencies: - temp-dir "^1.0.0" - uuid "^3.0.1" - -tempfile@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/tempfile/-/tempfile-3.0.0.tgz#5376a3492de7c54150d0cc0612c3f00e2cdaf76c" - integrity sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw== - dependencies: - temp-dir "^2.0.0" - uuid "^3.3.2" - -tempy@^0.6.0: - version "0.6.0" - resolved "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz#65e2c35abc06f1124a97f387b08303442bde59f3" - integrity sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw== - dependencies: - is-stream "^2.0.0" - temp-dir "^2.0.0" - type-fest "^0.16.0" - unique-string "^2.0.0" - -terminal-link@^2.0.0: - version "2.1.1" - resolved "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" - integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== - dependencies: - ansi-escapes "^4.2.1" - supports-hyperlinks "^2.0.0" - -terser@^4.6.3: - version "4.8.0" - resolved "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" - integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== - dependencies: - commander "^2.20.0" - source-map "~0.6.1" - source-map-support "~0.5.12" - -terser@^5.0.0: - version "5.7.0" - resolved "https://registry.npmjs.org/terser/-/terser-5.7.0.tgz#a761eeec206bc87b605ab13029876ead938ae693" - integrity sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g== - dependencies: - commander "^2.20.0" - source-map "~0.7.2" - source-map-support "~0.5.19" - -test-exclude@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" - integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== - dependencies: - "@istanbuljs/schema" "^0.1.2" - glob "^7.1.4" - minimatch "^3.0.4" - -text-extensions@^1.0.0: - version "1.9.0" - resolved "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" - integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== - -text-table@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= - -throat@^6.0.1: - version "6.0.1" - resolved "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" - integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== - -through2@^2.0.0: - version "2.0.5" - resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - -through2@^4.0.0: - version "4.0.2" - resolved "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" - integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== - dependencies: - readable-stream "3" - -through@2, "through@>=2.2.7 <3", through@^2.3.6, through@^2.3.8: - version "2.3.8" - resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= - -timed-out@^4.0.0, timed-out@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" - integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= - -tinycolor2@^1.4.2: - version "1.4.2" - resolved "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803" - integrity sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA== - -tmp@^0.0.33: - version "0.0.33" - resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== - dependencies: - os-tmpdir "~1.0.2" - -tmpl@1.0.x: - version "1.0.4" - resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" - integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= - -to-buffer@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" - integrity sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg== - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= - -to-object-path@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" - integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= - dependencies: - kind-of "^3.0.2" - -to-regex-range@^2.1.0: - version "2.1.1" - resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" - integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= - dependencies: - is-number "^3.0.0" - repeat-string "^1.6.1" - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -to-regex@^3.0.1: - version "3.0.2" - resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" - integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== - dependencies: - define-property "^2.0.2" - extend-shallow "^3.0.2" - regex-not "^1.0.2" - safe-regex "^1.1.0" - -token-stream@1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/token-stream/-/token-stream-1.0.0.tgz#cc200eab2613f4166d27ff9afc7ca56d49df6eb4" - integrity sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ= - -tough-cookie@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" - integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== - dependencies: - psl "^1.1.33" - punycode "^2.1.1" - universalify "^0.1.2" - -tr46@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" - integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= - dependencies: - punycode "^2.1.0" - -tr46@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" - integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== - dependencies: - punycode "^2.1.1" - -traverse@^0.6.6: - version "0.6.6" - resolved "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" - integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc= - -trim-newlines@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" - integrity sha1-WIeWa7WCpFA6QetST301ARgVphM= - -trim-newlines@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" - integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== - -trim-off-newlines@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" - integrity sha1-n5up2e+odkw4dpi8v+sshI8RrbM= - -trim-repeated@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz#e3646a2ea4e891312bf7eace6cfb05380bc01c21" - integrity sha1-42RqLqTokTEr9+rObPsFOAvAHCE= - dependencies: - escape-string-regexp "^1.0.2" - -trough@^1.0.0: - version "1.0.5" - resolved "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" - integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== - -ts-jest@^27.0.4: - version "27.0.4" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-27.0.4.tgz#df49683535831560ccb58f94c023d831b1b80df0" - integrity sha512-c4E1ECy9Xz2WGfTMyHbSaArlIva7Wi2p43QOMmCqjSSjHP06KXv+aT+eSY+yZMuqsMi3k7pyGsGj2q5oSl5WfQ== - dependencies: - bs-logger "0.x" - buffer-from "1.x" - fast-json-stable-stringify "2.x" - jest-util "^27.0.0" - json5 "2.x" - lodash "4.x" - make-error "1.x" - mkdirp "1.x" - semver "7.x" - yargs-parser "20.x" - -ts-node@^10.2.0: - version "10.2.0" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.2.0.tgz#f1e88249a00e26aa95e9a93c50f70241a8a1c4bb" - integrity sha512-FstYHtQz6isj8rBtYMN4bZdnXN1vq4HCbqn9vdNQcInRqtB86PePJQIxE6es0PhxKWhj2PHuwbG40H+bxkZPmg== - dependencies: - "@cspotcode/source-map-support" "0.6.1" - "@tsconfig/node10" "^1.0.7" - "@tsconfig/node12" "^1.0.7" - "@tsconfig/node14" "^1.0.0" - "@tsconfig/node16" "^1.0.2" - acorn "^8.4.1" - acorn-walk "^8.1.1" - arg "^4.1.0" - create-require "^1.1.0" - diff "^4.0.1" - make-error "^1.1.1" - yn "3.1.1" - -tslib@2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz#8e0741ac45fc0c226e58a17bfc3e64b9bc6ca61c" - integrity sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ== - -tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0: - version "1.14.1" - resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.0.3: - version "2.3.0" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e" - integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg== - -tslib@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a" - integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== - -tsutils@^3.21.0: - version "3.21.0" - resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" - integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== - dependencies: - tslib "^1.8.1" - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= - dependencies: - safe-buffer "^5.0.1" - -type-check@^0.4.0, type-check@~0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" - integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - dependencies: - prelude-ls "^1.2.1" - -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= - dependencies: - prelude-ls "~1.1.2" - -type-detect@4.0.8: - version "4.0.8" - resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.11.0: - version "0.11.0" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" - integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== - -type-fest@^0.16.0: - version "0.16.0" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz#3240b891a78b0deae910dbeb86553e552a148860" - integrity sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg== - -type-fest@^0.18.0: - version "0.18.1" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" - integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== - -type-fest@^0.20.2: - version "0.20.2" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" - integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== - -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - -type-fest@^0.6.0: - version "0.6.0" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== - -type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== - -typedarray-to-buffer@^3.1.5: - version "3.1.5" - resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" - integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== - dependencies: - is-typedarray "^1.0.0" - -typescript@4.3.5: - version "4.3.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4" - integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA== - -uglify-js@^3.1.4: - version "3.13.9" - resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.9.tgz#4d8d21dcd497f29cfd8e9378b9df123ad025999b" - integrity sha512-wZbyTQ1w6Y7fHdt8sJnHfSIuWeDgk6B5rCb4E/AM6QNNPbOMIZph21PW5dRB3h7Df0GszN+t7RuUH6sWK5bF0g== - -unbox-primitive@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" - integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== - dependencies: - function-bind "^1.1.1" - has-bigints "^1.0.1" - has-symbols "^1.0.2" - which-boxed-primitive "^1.0.2" - -unbzip2-stream@^1.0.9: - version "1.4.3" - resolved "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7" - integrity sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg== - dependencies: - buffer "^5.2.1" - through "^2.3.8" - -unicode-canonical-property-names-ecmascript@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" - integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== - -unicode-match-property-ecmascript@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" - integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== - dependencies: - unicode-canonical-property-names-ecmascript "^1.0.4" - unicode-property-aliases-ecmascript "^1.0.4" - -unicode-match-property-value-ecmascript@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" - integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== - -unicode-property-aliases-ecmascript@^1.0.4: - version "1.1.0" - resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" - integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== - -unified@^9.1.0: - version "9.2.1" - resolved "https://registry.npmjs.org/unified/-/unified-9.2.1.tgz#ae18d5674c114021bfdbdf73865ca60f410215a3" - integrity sha512-juWjuI8Z4xFg8pJbnEZ41b5xjGUWGHqXALmBZ3FC3WX0PIx1CZBIIJ6mXbYMcf6Yw4Fi0rFUTA1cdz/BglbOhA== - dependencies: - bail "^1.0.0" - extend "^3.0.0" - is-buffer "^2.0.0" - is-plain-obj "^2.0.0" - trough "^1.0.0" - vfile "^4.0.0" - -union-value@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" - integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== - dependencies: - arr-union "^3.1.0" - get-value "^2.0.6" - is-extendable "^0.1.1" - set-value "^2.0.1" - -union@~0.5.0: - version "0.5.0" - resolved "https://registry.npmjs.org/union/-/union-0.5.0.tgz#b2c11be84f60538537b846edb9ba266ba0090075" - integrity sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA== - dependencies: - qs "^6.4.0" - -unique-string@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" - integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== - dependencies: - crypto-random-string "^2.0.0" - -unist-util-find-all-after@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/unist-util-find-all-after/-/unist-util-find-all-after-3.0.2.tgz#fdfecd14c5b7aea5e9ef38d5e0d5f774eeb561f6" - integrity sha512-xaTC/AGZ0rIM2gM28YVRAFPIZpzbpDtU3dRmp7EXlNVA8ziQc4hY3H7BHXM1J49nEmiqc3svnqMReW+PGqbZKQ== - dependencies: - unist-util-is "^4.0.0" - -unist-util-is@^4.0.0: - version "4.1.0" - resolved "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797" - integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== - -unist-util-stringify-position@^2.0.0: - version "2.0.3" - resolved "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da" - integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g== - dependencies: - "@types/unist" "^2.0.2" - -universalify@^0.1.0, universalify@^0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== - -universalify@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" - integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== - -unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= - -unset-value@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" - integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= - dependencies: - has-value "^0.3.1" - isobject "^3.0.0" - -upath@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" - integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== - -upath@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" - integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== - -upper-case-first@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz#992c3273f882abd19d1e02894cc147117f844324" - integrity sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg== - dependencies: - tslib "^2.0.3" - -upper-case@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz#d89810823faab1df1549b7d97a76f8662bae6f7a" - integrity sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg== - dependencies: - tslib "^2.0.3" - -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -urix@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" - integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= - -url-join@^2.0.5: - version "2.0.5" - resolved "https://registry.npmjs.org/url-join/-/url-join-2.0.5.tgz#5af22f18c052a000a48d7b82c5e9c2e2feeda728" - integrity sha1-WvIvGMBSoACkjXuCxenC4v7tpyg= - -url-parse-lax@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" - integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= - dependencies: - prepend-http "^1.0.1" - -url-parse-lax@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" - integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= - dependencies: - prepend-http "^2.0.0" - -url-to-options@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9" - integrity sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k= - -use@^3.1.0: - version "3.1.1" - resolved "https://registry.npmjs.org/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" - integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== - -util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= - -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= - -uuid@^3.0.1, uuid@^3.3.2: - version "3.4.0" - resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" - integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== - -v8-compile-cache@^2.0.3, v8-compile-cache@^2.3.0: - version "2.3.0" - resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" - integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== - -v8-to-istanbul@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.0.0.tgz#4229f2a99e367f3f018fa1d5c2b8ec684667c69c" - integrity sha512-LkmXi8UUNxnCC+JlH7/fsfsKr5AU110l+SYGJimWNkWhxbN5EyeOtm1MJ0hhvqMMOhGwBj1Fp70Yv9i+hX0QAg== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" - source-map "^0.7.3" - -validate-npm-package-license@^3.0.1: - version "3.0.4" - resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" - -vary@^1: - version "1.1.2" - resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= - -vfile-message@^2.0.0: - version "2.0.4" - resolved "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz#5b43b88171d409eae58477d13f23dd41d52c371a" - integrity sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ== - dependencies: - "@types/unist" "^2.0.0" - unist-util-stringify-position "^2.0.0" - -vfile@^4.0.0: - version "4.2.1" - resolved "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz#03f1dce28fc625c625bc6514350fbdb00fa9e624" - integrity sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA== - dependencies: - "@types/unist" "^2.0.0" - is-buffer "^2.0.0" - unist-util-stringify-position "^2.0.0" - vfile-message "^2.0.0" - -vite-plugin-compression@^0.3.3: - version "0.3.3" - resolved "https://registry.npmjs.org/vite-plugin-compression/-/vite-plugin-compression-0.3.3.tgz#0ce6a0a793b79cfbf3a17b4390973c7ab6e41ace" - integrity sha512-BuI4jKk/D7snlRYNz/RhKXLWXseT5cB1aK7zhNRcXm/Tjf2P6wwll1JzPsUWuCvzvI6msAQ2wMRPdGb3QWGXSw== - dependencies: - chalk "^4.1.2" - debug "^4.3.2" - fs-extra "^10.0.0" - -vite-plugin-html@^2.0.7: - version "2.0.7" - resolved "https://registry.npmjs.org/vite-plugin-html/-/vite-plugin-html-2.0.7.tgz#55139ff8a843ba3b3d5cd48610ca6f6afdf7c23d" - integrity sha512-c2fFBxRqP+jbJX/uMZ6pTXcOWZHEtjcki+u609+KIOIjhR+nDY6zBbRvCy29n9Sc0X+CBhFcj2pPLLAtS5ERJQ== - dependencies: - ejs "^3.1.6" - fs-extra "^9.1.0" - html-minifier-terser "^5.1.1" - -vite-plugin-imagemin@^0.4.3: - version "0.4.3" - resolved "https://registry.npmjs.org/vite-plugin-imagemin/-/vite-plugin-imagemin-0.4.3.tgz#9eab0b50137b10f105ab803be8a19eca4208f212" - integrity sha512-NIMFOiRT1t8Hc4o8KnilJSloUsPDQz77jITUU/eF9qEFjm3JvEes4NSW4egO54IOgKcj9jyXQsX5C2cKTbIE0A== - dependencies: - "@types/imagemin" "^7.0.1" - "@types/imagemin-gifsicle" "^7.0.1" - "@types/imagemin-jpegtran" "^5.0.1" - "@types/imagemin-mozjpeg" "^8.0.1" - "@types/imagemin-optipng" "^5.2.1" - "@types/imagemin-svgo" "^9.0.1" - "@types/imagemin-webp" "^5.1.2" - "@types/svgo" "^2.3.1" - chalk "^4.1.2" - debug "^4.3.2" - esbuild "^0.11.23" - fs-extra "^10.0.0" - imagemin "^7.0.1" - imagemin-gifsicle "^7.0.0" - imagemin-jpegtran "^7.0.0" - imagemin-mozjpeg "^9.0.0" - imagemin-optipng "^8.0.0" - imagemin-pngquant "^9.0.2" - imagemin-svgo "^9.0.0" - imagemin-webp "^6.0.0" - -vite-plugin-mock@^2.9.4: - version "2.9.4" - resolved "https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.9.4.tgz#0d739fc1b2ff3f383f23abe2b906daca2895909d" - integrity sha512-42HzQBv0QNjNzOeN0WZ4bnPF8hZkbWPOZLy4kNe8g5sTpY8QurHi3Evsccv8rW9N48kHT10zQVyNA3EipZjCQg== - dependencies: - "@rollup/plugin-node-resolve" "^13.0.2" - "@types/mockjs" "^1.0.4" - chalk "^4.1.1" - chokidar "^3.5.2" - connect "^3.7.0" - debug "^4.3.2" - esbuild "0.11.3" - fast-glob "^3.2.7" - path-to-regexp "^6.2.0" - -vite-plugin-purge-icons@^0.7.0: - version "0.7.0" - resolved "https://registry.npmjs.org/vite-plugin-purge-icons/-/vite-plugin-purge-icons-0.7.0.tgz#c460037438fd71372153360ccb9e7d97b030fb58" - integrity sha512-oGZUKFAL4waIZIeiCPT5KZvGbBA500AO/03oxW+ODTKUMq+0jbh9s+T8NPzfJQFC1jtE7eUb2ium82IP/gxZjA== - dependencies: - "@purge-icons/core" "^0.7.0" - "@purge-icons/generated" "^0.7.0" - rollup-plugin-purge-icons "^0.7.0" - -vite-plugin-pwa@^0.10.0: - version "0.10.0" - resolved "https://registry.yarnpkg.com/vite-plugin-pwa/-/vite-plugin-pwa-0.10.0.tgz#56ea6c19b696c8901736aac97f9f316d3090a7c3" - integrity sha512-QTI2OshRFR46JFS3KLVXXdIyhy+eO5pO3ezbeIXRAMNlUPJuB/r5sXhpRUGRZIkbrIq+UwSULNsCaNo8Ux5ZqA== - dependencies: - debug "^4.3.2" - fast-glob "^3.2.7" - pretty-bytes "^5.6.0" - rollup "^2.55.1" - workbox-build "^6.1.5" - workbox-window "^6.1.5" - -vite-plugin-style-import@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-1.1.1.tgz#7ccebb042bce94eeb2f695c7339354a2dac48c25" - integrity sha512-29NnvfAwCqS5zSg+bComXSmCgx3MmKJ/dPxWC/wa/yjG1gm7i/BDKrshiaGRXpIbMSyQco5KGRKhrUIW3Tr+nw== - dependencies: - "@rollup/pluginutils" "^4.1.1" - change-case "^4.1.2" - debug "^4.3.2" - es-module-lexer "^0.7.1" - magic-string "^0.25.7" - -vite-plugin-svg-icons@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/vite-plugin-svg-icons/-/vite-plugin-svg-icons-1.0.4.tgz#9f20feff4b3bfbdcf5401d3efa75d4813f27dc22" - integrity sha512-sRneOwVRA6F2zfNKtmwTQl4WwtrdzFq8REO5elX9rd9vC5gNxJ5v4TNlm8cHWGCwvLuxCu5lrnhEU2rcg8izgg== - dependencies: - "@types/svgo" "^2.3.1" - cors "^2.8.5" - debug "^4.3.2" - etag "^1.8.1" - fs-extra "^10.0.0" - svg-baker "1.7.0" - svgo "^2.3.1" - -vite-plugin-theme@^0.8.1: - version "0.8.1" - resolved "https://registry.npmjs.org/vite-plugin-theme/-/vite-plugin-theme-0.8.1.tgz#9008256a58a57dca81004ffa1de63ce9f60bf9eb" - integrity sha512-kyfcMW9YOBuNWHvORWJoq2tJ53Eaq3O7rFntENHtqp6hbblqdGhGlCzxXDbepVthFCxlyIel8S6EFIsCT6CVfg== - dependencies: - "@types/node" "^14.17.1" - "@types/tinycolor2" "^1.4.2" - chalk "^4.1.1" - clean-css "^5.1.2" - debug "^4.3.2" - esbuild "^0.11.23" - esbuild-plugin-alias "^0.1.2" - tinycolor2 "^1.4.2" - -vite-plugin-windicss@^1.2.7: - version "1.2.7" - resolved "https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-1.2.7.tgz#92671ec795ab1a8a4e520aff8117ac14c04d312f" - integrity sha512-JgIGsH5HPaz3ghDRhhLeF8VZQMUE+R0jD9u8sbne5KdBBa208r0IuTcx73V7CPcmsu7KABG6rfLgST9ffVoiDA== - dependencies: - "@windicss/plugin-utils" "1.2.7" - chalk "^4.1.1" - debug "^4.3.2" - windicss "^3.1.6" - -vite@2.5.0: - version "2.5.0" - resolved "https://registry.nlark.com/vite/download/vite-2.5.0.tgz#111ba3679432d426e44566acf480005a7914cbd6" - integrity sha1-ERujZ5Qy1CbkRWas9IAAWnkUy9Y= - dependencies: - esbuild "^0.12.17" - postcss "^8.3.6" - resolve "^1.20.0" - rollup "^2.38.5" - optionalDependencies: - fsevents "~2.3.2" - -void-elements@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09" - integrity sha1-YU9/v42AHwu18GYfWy9XhXUOTwk= - -vscode-css-languageservice@^5.1.4: - version "5.1.4" - resolved "https://registry.yarnpkg.com/vscode-css-languageservice/-/vscode-css-languageservice-5.1.4.tgz#07e4c63f1c3bb06e6f3f329c32b490d20a601bab" - integrity sha512-fIJZJMXbaBsK0ifBb2RmSiLtzwn6NrZnKn7O+0ziIjwAY+rPvSK9St2qqQXFU3reZVRAt/I4GBp40dC/THcUDA== - dependencies: - vscode-languageserver-textdocument "^1.0.1" - vscode-languageserver-types "^3.16.0" - vscode-nls "^5.0.0" - vscode-uri "^3.0.2" - -vscode-html-languageservice@^4.0.7: - version "4.0.7" - resolved "https://registry.yarnpkg.com/vscode-html-languageservice/-/vscode-html-languageservice-4.0.7.tgz#94f2ed22c821965f828222d13b5aa541b358d992" - integrity sha512-P5TQMYpgxAdLs+PwpC7Lm+0lXCyQAC6kZ41YuPYNHVooC4XO7Y2+ncHBcQJVK4C9LU2cTOAl0lzq4WAxuwRHYw== - dependencies: - vscode-languageserver-textdocument "^1.0.1" - vscode-languageserver-types "^3.16.0" - vscode-nls "^5.0.0" - vscode-uri "^3.0.2" - -vscode-json-languageservice@^4.1.5: - version "4.1.6" - resolved "https://registry.yarnpkg.com/vscode-json-languageservice/-/vscode-json-languageservice-4.1.6.tgz#4275e8daf1cba80273c318f33fbf7a2ede307053" - integrity sha512-DIKb3tcfRtb3tIE6g9SLOl5E9tNSt6kljH08Wa5RwFlVshtXGrDDzttchze4CYy9pJpE9mBtCbRHmLvY1Z1ZXA== - dependencies: - jsonc-parser "^3.0.0" - vscode-languageserver-textdocument "^1.0.1" - vscode-languageserver-types "^3.16.0" - vscode-nls "^5.0.0" - vscode-uri "^3.0.2" - -vscode-jsonrpc@8.0.0-next.1, vscode-jsonrpc@^8.0.0-next.1: - version "8.0.0-next.1" - resolved "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-8.0.0-next.1.tgz#1964688a9851f86900c55e298939a157b2e224ad" - integrity sha512-NoSPIqVWpztdC91oUaiN9PmjAupRAEF8vdXRDLWw2lX2k760dn0gO4CCXkT6GdLSBcF/xKq0zWVTsfd3lpje7g== - -vscode-languageserver-protocol@3.17.0-next.7: - version "3.17.0-next.7" - resolved "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.7.tgz#2150edb86b6a51c325003b437a522f0dcfc604b4" - integrity sha512-naG6LWmcF+cneRx6ia16rg+ukSWaZNESFRv+rKE5sIp69IFbuehXcRwkyeS1jZa2SRCF/TnN/H+y9gBbvFqsaQ== - dependencies: - vscode-jsonrpc "8.0.0-next.1" - vscode-languageserver-types "3.17.0-next.3" - -vscode-languageserver-textdocument@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.1.tgz#178168e87efad6171b372add1dea34f53e5d330f" - integrity sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA== - -vscode-languageserver-types@3.17.0-next.3: - version "3.17.0-next.3" - resolved "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.3.tgz#e1f4311e08ea3193e81126154b6a342fc1c3dba3" - integrity sha512-VQcXnhKYxUW6OiRMhG++SzmZYMJwusXknJGd+FfdOnS1yHAo734OHyR0e2eEHDlv0/oWc8RZPgx/VKSKyondVg== - -vscode-languageserver-types@^3.15.1, vscode-languageserver-types@^3.16.0: - version "3.16.0" - resolved "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz#ecf393fc121ec6974b2da3efb3155644c514e247" - integrity sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA== - -vscode-languageserver@^8.0.0-next.1: - version "8.0.0-next.1" - resolved "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-8.0.0-next.1.tgz#b5844585acf862a7bdaab22d28c9da0f1527d790" - integrity sha512-Sjmjcl5OMvE64eblJMqj8p7JDtJKf3CVkZXOqWwLINoSRCH9tkZdBss37bVOmpTy89sKX9fKwuBbEE8jNb8Isw== - dependencies: - vscode-languageserver-protocol "3.17.0-next.7" - -vscode-nls@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.0.0.tgz#99f0da0bd9ea7cda44e565a74c54b1f2bc257840" - integrity sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA== - -vscode-pug-languageservice@^0.27.1: - version "0.27.1" - resolved "https://registry.yarnpkg.com/vscode-pug-languageservice/-/vscode-pug-languageservice-0.27.1.tgz#5570b935e0cf13bca80fba7aa32ac98ed9604dc2" - integrity sha512-zUrcrcizqxxP7UIplzkdpdhU6bS458Vf9MS+fFaaR1WI/rVJOsXh5ETMrVeHTD0FHqAIstikuNoKEpuaaHkEXA== - dependencies: - "@volar/code-gen" "^0.27.1" - "@volar/shared" "^0.27.1" - "@volar/source-map" "^0.27.1" - "@volar/transforms" "^0.27.1" - pug-lexer "^5.0.1" - pug-parser "^6.0.0" - vscode-languageserver "^8.0.0-next.1" - -vscode-typescript-languageservice@^0.27.1: - version "0.27.1" - resolved "https://registry.yarnpkg.com/vscode-typescript-languageservice/-/vscode-typescript-languageservice-0.27.1.tgz#373db91da714bba0983b85daa46f12362afbaa6e" - integrity sha512-lIXLyYpcO4+9mzFrgTkRgrWYDLlV+kv+3/vmipEvF4QbiKHWcA0l5AOSJcPR/IUeZz6mu9eoawpOjPsbp9HKqw== - dependencies: - "@volar/shared" "^0.27.1" - upath "^2.0.1" - vscode-languageserver "^8.0.0-next.1" - vscode-languageserver-textdocument "^1.0.1" - -vscode-uri@^2.1.2: - version "2.1.2" - resolved "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz#c8d40de93eb57af31f3c715dd650e2ca2c096f1c" - integrity sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A== - -vscode-uri@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.2.tgz#ecfd1d066cb8ef4c3a208decdbab9a8c23d055d0" - integrity sha512-jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA== - -vscode-vue-languageservice@^0.27.0: - version "0.27.1" - resolved "https://registry.yarnpkg.com/vscode-vue-languageservice/-/vscode-vue-languageservice-0.27.1.tgz#1be63445437a12cd75bfcc956b5624eee3dfc51c" - integrity sha512-32I6OCEvgxQpRW/Txod2+5xNKpae1BS+EFXjXpxK0TMFT3NYrJYXo0xVaddlV9+IZcVmH5KdoBia7J3CO4H74Q== - dependencies: - "@volar/code-gen" "^0.27.1" - "@volar/html2pug" "^0.27.1" - "@volar/shared" "^0.27.1" - "@volar/source-map" "^0.27.1" - "@volar/transforms" "^0.27.1" - "@vscode/emmet-helper" "^2.7.0" - "@vue/compiler-dom" "^3.2.2" - "@vue/compiler-sfc" "^3.2.2" - "@vue/reactivity" "^3.2.2" - "@vue/shared" "^3.2.2" - request-light "^0.5.4" - upath "^2.0.1" - vscode-css-languageservice "^5.1.4" - vscode-html-languageservice "^4.0.7" - vscode-json-languageservice "^4.1.5" - vscode-languageserver "^8.0.0-next.1" - vscode-languageserver-textdocument "^1.0.1" - vscode-pug-languageservice "^0.27.1" - vscode-typescript-languageservice "^0.27.1" - -vue-demi@*: - version "0.9.1" - resolved "https://registry.npmjs.org/vue-demi/-/vue-demi-0.9.1.tgz#25d6e1ebd4d4010757ff3571e2bf6a1d7bf3de82" - integrity sha512-7s1lufRD2l369eFWPjgLvhqCRk0XzGWJsQc7K4q+0mZtixyGIvsK1Cg88P4NcaRIEiBuuN4q1NN4SZKFKwQswA== - -vue-demi@latest: - version "0.11.2" - resolved "https://registry.yarnpkg.com/vue-demi/-/vue-demi-0.11.2.tgz#faa06da53887c493a695b997f4fcb4784a667990" - integrity sha512-J+X8Au6BhQdcej6LY4O986634hZLu55L0ewU2j8my7WIKlu8cK0dqmdUxqVHHMd/cMrKKZ9SywB/id6aLhwCtA== - -vue-eslint-parser@^7.10.0: - version "7.10.0" - resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.10.0.tgz#ea4e4b10fd10aa35c8a79ac783488d8abcd29be8" - integrity sha512-7tc/ewS9Vq9Bn741pvpg8op2fWJPH3k32aL+jcIcWGCTzh/zXSdh7pZ5FV3W2aJancP9+ftPAv292zY5T5IPCg== - dependencies: - debug "^4.1.1" - eslint-scope "^5.1.1" - eslint-visitor-keys "^1.1.0" - espree "^6.2.1" - esquery "^1.4.0" - lodash "^4.17.21" - semver "^6.3.0" - -vue-i18n@9.1.7: - version "9.1.7" - resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.1.7.tgz#6f28dd2135197066508e2e65ab204a019750d773" - integrity sha512-ujuuDanoHqtEd4GejWrbG/fXE9nrP51ElsEGxp0WBHfv+/ki0/wyUqkO+4fLikki2obGtXdviTPH0VNpas5K6g== - dependencies: - "@intlify/core-base" "9.1.7" - "@intlify/shared" "9.1.7" - "@intlify/vue-devtools" "9.1.7" - "@vue/devtools-api" "^6.0.0-beta.7" - -vue-router@^4.0.11: - version "4.0.11" - resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.0.11.tgz#cd649a0941c635281763a20965b599643ddc68ed" - integrity sha512-sha6I8fx9HWtvTrFZfxZkiQQBpqSeT+UCwauYjkdOQYRvwsGwimlQQE2ayqUwuuXGzquFpCPoXzYKWlzL4OuXg== - dependencies: - "@vue/devtools-api" "^6.0.0-beta.14" - -vue-tsc@^0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-0.2.3.tgz#12bf48e3c9b1e553d31aad0c641722d5d15841d8" - integrity sha512-0ahxAnQolmv6EOnv5zxeMi4vCpM4PkhjU70i/EI44OzMWq4OErjLZhEh8EXOLtMx6FBRuuqS5fiBXcuqLpoL7Q== - dependencies: - vscode-vue-languageservice "^0.27.0" - -vue-types@^3.0.0: - version "3.0.2" - resolved "https://registry.npmjs.org/vue-types/-/vue-types-3.0.2.tgz#ec16e05d412c038262fc1efa4ceb9647e7fb601d" - integrity sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw== - dependencies: - is-plain-object "3.0.1" - -vue-types@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/vue-types/-/vue-types-4.0.3.tgz#0e0a3b88dd426b39bf161442c573b44ed34e2bb2" - integrity sha512-Yn/TNUaYhkC9ezET5aYJuvxDzPTfEWPIvvRWVjgVAv9vuJG3VTLoTsgJvF4KmdyliBzMum6yoD6uUYVG6245yg== - dependencies: - is-plain-object "5.0.0" - -vue@3.2.2: - version "3.2.2" - resolved "https://registry.yarnpkg.com/vue/-/vue-3.2.2.tgz#11715cb71a02baefd0f6e6552dc623680eb1bf32" - integrity sha512-D/LuzAV30CgNJYGyNheE/VUs5N4toL2IgmS6c9qeOxvyh0xyn4exyRqizpXIrsvfx34zG9x5gCI2tdRHCGvF9w== - dependencies: - "@vue/compiler-dom" "3.2.2" - "@vue/runtime-dom" "3.2.2" - "@vue/shared" "3.2.2" - -w3c-hr-time@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" - integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== - dependencies: - browser-process-hrtime "^1.0.0" - -w3c-xmlserializer@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" - integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== - dependencies: - xml-name-validator "^3.0.0" - -walker@^1.0.7: - version "1.0.7" - resolved "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" - integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= - dependencies: - makeerror "1.0.x" - -warning@^4.0.0: - version "4.0.3" - resolved "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" - integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== - dependencies: - loose-envify "^1.0.0" - -wcwidth@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" - integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= - dependencies: - defaults "^1.0.3" - -webidl-conversions@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" - integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== - -webidl-conversions@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" - integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== - -webidl-conversions@^6.1.0: - version "6.1.0" - resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" - integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== - -whatwg-encoding@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" - integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== - dependencies: - iconv-lite "0.4.24" - -whatwg-mimetype@^2.3.0: - version "2.3.0" - resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" - integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== - -whatwg-url@^7.0.0: - version "7.1.0" - resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" - integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== - dependencies: - lodash.sortby "^4.7.0" - tr46 "^1.0.1" - webidl-conversions "^4.0.2" - -whatwg-url@^8.0.0, whatwg-url@^8.5.0: - version "8.6.0" - resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.6.0.tgz#27c0205a4902084b872aecb97cf0f2a7a3011f4c" - integrity sha512-os0KkeeqUOl7ccdDT1qqUcS4KH4tcBTSKK5Nl5WKb2lyxInIZ/CpjkqKa1Ss12mjfdcRX9mHmPPs7/SxG1Hbdw== - dependencies: - lodash "^4.7.0" - tr46 "^2.1.0" - webidl-conversions "^6.1.0" - -which-boxed-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== - dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3" - -which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= - -which@^1.2.14, which@^1.2.9, which@^1.3.1: - version "1.3.1" - resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - -which@^2.0.1: - version "2.0.2" - resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -windicss@^3.1.6: - version "3.1.6" - resolved "https://registry.npmjs.org/windicss/-/windicss-3.1.6.tgz#237f24be8b38f90f451eedda166c46c25227c608" - integrity sha512-9/ShTPRs2pg/AJo4PtbgDv9p7BUgR52WqL7Gpr8VSO6LH8z4I/oKamUAlSXqyLsWD6yKS+xtxF3FRiHVJwYcuQ== - -with@^7.0.0: - version "7.0.2" - resolved "https://registry.npmjs.org/with/-/with-7.0.2.tgz#ccee3ad542d25538a7a7a80aad212b9828495bac" - integrity sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w== - dependencies: - "@babel/parser" "^7.9.6" - "@babel/types" "^7.9.6" - assert-never "^1.2.1" - babel-walk "3.0.0-canary-5" - -word-wrap@^1.0.3, word-wrap@^1.2.3, word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -wordwrap@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= - -workbox-background-sync@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.1.5.tgz#83904fc6487722db98ed9b19eaa39ab5f826c33e" - integrity sha512-VbUmPLsdz+sLzuNxHvMylzyRTiM4q+q7rwLBk3p2mtRL5NZozI8j/KgoGbno96vs84jx4b9zCZMEOIKEUTPf6w== - dependencies: - workbox-core "^6.1.5" - -workbox-broadcast-update@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.1.5.tgz#49a2a4cc50c7b1cfe86bed6d8f15edf1891d1e79" - integrity sha512-zGrTTs+n4wHpYtqYMqBg6kl/x5j1UrczGCQnODSHTxIDV8GXLb/GtA1BCZdysNxpMmdVSeLmTcgIYAAqWFamrA== - dependencies: - workbox-core "^6.1.5" - -workbox-build@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-build/-/workbox-build-6.1.5.tgz#31c3034a38527f1f7697335c15af9c5593168841" - integrity sha512-P+fakR5QFVqJN9l9xHVXtmafga72gh9I+jM3A9HiB/6UNRmOAejXnDgD+RMegOHgQHPwnB44TalMToFaXKWIyA== - dependencies: - "@babel/core" "^7.11.1" - "@babel/preset-env" "^7.11.0" - "@babel/runtime" "^7.11.2" - "@hapi/joi" "^16.1.8" - "@rollup/plugin-babel" "^5.2.0" - "@rollup/plugin-node-resolve" "^11.2.1" - "@rollup/plugin-replace" "^2.4.1" - "@surma/rollup-plugin-off-main-thread" "^1.4.1" - common-tags "^1.8.0" - fast-json-stable-stringify "^2.1.0" - fs-extra "^9.0.1" - glob "^7.1.6" - lodash "^4.17.20" - pretty-bytes "^5.3.0" - rollup "^2.43.1" - rollup-plugin-terser "^7.0.0" - source-map "^0.8.0-beta.0" - source-map-url "^0.4.0" - stringify-object "^3.3.0" - strip-comments "^2.0.1" - tempy "^0.6.0" - upath "^1.2.0" - workbox-background-sync "^6.1.5" - workbox-broadcast-update "^6.1.5" - workbox-cacheable-response "^6.1.5" - workbox-core "^6.1.5" - workbox-expiration "^6.1.5" - workbox-google-analytics "^6.1.5" - workbox-navigation-preload "^6.1.5" - workbox-precaching "^6.1.5" - workbox-range-requests "^6.1.5" - workbox-recipes "^6.1.5" - workbox-routing "^6.1.5" - workbox-strategies "^6.1.5" - workbox-streams "^6.1.5" - workbox-sw "^6.1.5" - workbox-window "^6.1.5" - -workbox-cacheable-response@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.1.5.tgz#2772e09a333cba47b0923ed91fd022416b69e75c" - integrity sha512-x8DC71lO/JCgiaJ194l9le8wc8lFPLgUpDkLhp2si7mXV6S/wZO+8Osvw1LLgYa8YYTWGbhbFhFTXIkEMknIIA== - dependencies: - workbox-core "^6.1.5" - -workbox-core@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-core/-/workbox-core-6.1.5.tgz#424ff600e2c5448b14ebd58b2f5ac8ed91b73fb9" - integrity sha512-9SOEle7YcJzg3njC0xMSmrPIiFjfsFm9WjwGd5enXmI8Lwk8wLdy63B0nzu5LXoibEmS9k+aWF8EzaKtOWjNSA== - -workbox-expiration@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.1.5.tgz#a62a4ac953bb654aa969ede13507ca5bd154adc2" - integrity sha512-6cN+FVbh8fNq56LFKPMchGNKCJeyboHsDuGBqmhDUPvD4uDjsegQpDQzn52VaE0cpywbSIsDF/BSq9E9Yjh5oQ== - dependencies: - workbox-core "^6.1.5" - -workbox-google-analytics@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.1.5.tgz#895fcc50e4976c176b5982e1a8fd08776f18d639" - integrity sha512-LYsJ/VxTkYVLxM1uJKXZLz4cJdemidY7kPyAYtKVZ6EiDG89noASqis75/5lhqM1m3HwQfp2DtoPrelKSpSDBA== - dependencies: - workbox-background-sync "^6.1.5" - workbox-core "^6.1.5" - workbox-routing "^6.1.5" - workbox-strategies "^6.1.5" - -workbox-navigation-preload@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.1.5.tgz#47a0d3a6d2e74bd3a52b58b72ca337cb5b654310" - integrity sha512-hDbNcWlffv0uvS21jCAC/mYk7NzaGRSWOQXv1p7bj2aONAX5l699D2ZK4D27G8TO0BaLHUmW/1A5CZcsvweQdg== - dependencies: - workbox-core "^6.1.5" - -workbox-precaching@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.1.5.tgz#9e0fecb5c567192f46783323fccea10bffc9f79e" - integrity sha512-yhm1kb6wgi141JeM5X7z42XJxCry53tbMLB3NgrxktrZbwbrJF8JILzYy+RFKC9tHC6u2bPmL789GPLT2NCDzw== - dependencies: - workbox-core "^6.1.5" - workbox-routing "^6.1.5" - workbox-strategies "^6.1.5" - -workbox-range-requests@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.1.5.tgz#047ccd12838bebe51a720256a4ca0cfa7197dfd3" - integrity sha512-iACChSapzB0yuIum3ascP/+cfBNuZi5DRrE+u4u5mCHigPlwfSWtlaY+y8p+a8EwcDTVTZVtnrGrRnF31SiLqQ== - dependencies: - workbox-core "^6.1.5" - -workbox-recipes@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.1.5.tgz#bb1f8976bcdb202618d967596e9f248e6077e69a" - integrity sha512-MD1yabHca6O/oj1hrRdfj9cRwhKA5zqIE53rWOAg/dKMMzWQsf9nyRbXRgzK3a13iQvYKuQzURU4Cx58tdnR+Q== - dependencies: - workbox-cacheable-response "^6.1.5" - workbox-core "^6.1.5" - workbox-expiration "^6.1.5" - workbox-precaching "^6.1.5" - workbox-routing "^6.1.5" - workbox-strategies "^6.1.5" - -workbox-routing@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.1.5.tgz#15884d6152dba03faef83f0b23331846d8b6ef8e" - integrity sha512-uC/Ctz+4GXGL42h1WxUNKxqKRik/38uS0NZ6VY/EHqL2F1ObLFqMHUZ4ZYvyQsKdyI82cxusvhJZHOrY0a2fIQ== - dependencies: - workbox-core "^6.1.5" - -workbox-strategies@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.1.5.tgz#2549a3e78f0eda371b760c4db21feb0d26143573" - integrity sha512-QhiOn9KT9YGBdbfWOmJT6pXZOIAxaVrs6J6AMYzRpkUegBTEcv36+ZhE/cfHoT0u2fxVtthHnskOQ/snEzaXQw== - dependencies: - workbox-core "^6.1.5" - -workbox-streams@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.1.5.tgz#bb7678677275fc23c9627565a1f238e4ca350290" - integrity sha512-OI1kLvRHGFXV+soDvs6aEwfBwdAkvPB0mRryqdh3/K17qUj/1gRXc8QtpgU+83xqx/I/ar2bTCIj0KPzI/ChCQ== - dependencies: - workbox-core "^6.1.5" - workbox-routing "^6.1.5" - -workbox-sw@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.1.5.tgz#06eb0c91f22e207422175b3f815cd2181c7074a0" - integrity sha512-IMDiqxYbKzPorZLGMUMacLB6r76iVQbdTzYthIZoPfy+uFURJFUtqiWQJKg1L+RMyuYXwKXTahCIGkgFs4jBeg== - -workbox-window@^6.1.5: - version "6.1.5" - resolved "https://registry.npmjs.org/workbox-window/-/workbox-window-6.1.5.tgz#017b22342e10c6df6b9672326b575ec950b6cd80" - integrity sha512-akL0X6mAegai2yypnq78RgfazeqvKbsllRtEI4dnbhPcRINEY1NmecFmsQk8SD+zWLK1gw5OdwAOX+zHSRVmeA== - dependencies: - workbox-core "^6.1.5" - -wrap-ansi@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" - integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== - dependencies: - ansi-styles "^3.2.0" - string-width "^3.0.0" - strip-ansi "^5.0.0" - -wrap-ansi@^6.2.0: - version "6.2.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" - integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrappy@1: - version "1.0.2" - resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= - -write-file-atomic@^3.0.0, write-file-atomic@^3.0.3: - version "3.0.3" - resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" - integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== - dependencies: - imurmurhash "^0.1.4" - is-typedarray "^1.0.0" - signal-exit "^3.0.2" - typedarray-to-buffer "^3.1.5" - -ws@^7.4.5: - version "7.5.0" - resolved "https://registry.npmjs.org/ws/-/ws-7.5.0.tgz#0033bafea031fb9df041b2026fc72a571ca44691" - integrity sha512-6ezXvzOZupqKj4jUqbQ9tXuJNo+BR2gU8fFRk3XCP3e0G6WT414u5ELe6Y0vtp7kmSJ3F7YWObSNr1ESsgi4vw== - -xml-name-validator@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" - integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== - -xmlchars@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" - integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== - -xtend@^4.0.0, xtend@~4.0.1: - version "4.0.2" - resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - -y18n@^4.0.0: - version "4.0.3" - resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" - integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^2.1.2: - version "2.1.2" - resolved "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= - -yallist@^3.0.2: - version "3.1.1" - resolved "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yaml@^1.10.0: - version "1.10.2" - resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" - integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== - -yargs-parser@20.x, yargs-parser@^20.2.2, yargs-parser@^20.2.3: - version "20.2.7" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a" - integrity sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw== - -yargs-parser@^13.1.2: - version "13.1.2" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" - integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs@^13.2.4: - version "13.3.2" - resolved "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" - integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== - dependencies: - cliui "^5.0.0" - find-up "^3.0.0" - get-caller-file "^2.0.1" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^3.0.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^13.1.2" - -yargs@^16.0.3, yargs@^16.2.0: - version "16.2.0" - resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" - integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.0" - y18n "^5.0.5" - yargs-parser "^20.2.2" - -yargs@^17.0.0: - version "17.0.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.0.1.tgz#6a1ced4ed5ee0b388010ba9fd67af83b9362e0bb" - integrity sha512-xBBulfCc8Y6gLFcrPvtqKz9hz8SO0l1Ni8GgDekvBX2ro0HRQImDGnikfc33cgzcYUSncapnNcZDjVFIH3f6KQ== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.0" - y18n "^5.0.5" - yargs-parser "^20.2.2" - -yauzl@^2.4.2: - version "2.10.0" - resolved "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" - integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk= - dependencies: - buffer-crc32 "~0.2.3" - fd-slicer "~1.1.0" - -yn@3.1.1: - version "3.1.1" - resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" - integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== - -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== - -zrender@5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/zrender/-/zrender-5.1.1.tgz#0515f4f8cc0f4742f02a6b8819550a6d13d64c5c" - integrity sha512-oeWlmUZPQdS9f5hK4pV21tHPqA3wgQ7CkKkw7l0CCBgWlJ/FP+lRgLFtUBW6yam4JX8y9CdHJo1o587VVrbcoQ== - dependencies: - tslib "2.0.3" - -zwitch@^1.0.0: - version "1.0.5" - resolved "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz#d11d7381ffed16b742f6af7b3f223d5cd9fe9920" - integrity sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==