From e409a69a541a33abd366282290a5cdcb94c98a25 Mon Sep 17 00:00:00 2001 From: Fedorov Vladimir Date: Mon, 19 May 2025 03:18:22 +0700 Subject: [PATCH] updates --- api/main.proto | 4 +- api/requests.http | 2 +- internal/models/action.go | 7 +- internal/models/application.go | 1 + internal/services/mappers.go | 33 ++- internal/services/repository.go | 55 +++- internal/services/services.go | 39 ++- internal/services/story_service/service.go | 27 +- proto/main.pb.go | 238 ++++++++++-------- proto/main.swagger.json | 7 + ...View-BiO2tasp.js => AboutView-BGED82nn.js} | 2 +- static/admin/assets/index-B3pctyTM.js | 26 ++ static/admin/assets/index-DAw4mc7B.css | 1 - static/admin/assets/index-Dqpk-ELy.css | 1 + static/admin/assets/index-waNsD4Su.js | 26 -- static/admin/index.html | 6 +- ...View-CB75s-VL.js => AboutView-DL__Ztc9.js} | 2 +- static/user/assets/index-BBSUJSX-.css | 1 - static/user/assets/index-CL3C2fgq.js | 26 ++ static/user/assets/index-CoZ5hrCd.js | 26 -- static/user/assets/index-wdin4iCu.css | 1 + static/user/index.html | 4 +- store.db | Bin 16384 -> 20480 bytes 23 files changed, 336 insertions(+), 199 deletions(-) rename static/admin/assets/{AboutView-BiO2tasp.js => AboutView-BGED82nn.js} (72%) create mode 100644 static/admin/assets/index-B3pctyTM.js delete mode 100644 static/admin/assets/index-DAw4mc7B.css create mode 100644 static/admin/assets/index-Dqpk-ELy.css delete mode 100644 static/admin/assets/index-waNsD4Su.js rename static/user/assets/{AboutView-CB75s-VL.js => AboutView-DL__Ztc9.js} (72%) delete mode 100644 static/user/assets/index-BBSUJSX-.css create mode 100644 static/user/assets/index-CL3C2fgq.js delete mode 100644 static/user/assets/index-CoZ5hrCd.js create mode 100644 static/user/assets/index-wdin4iCu.css diff --git a/api/main.proto b/api/main.proto index 5f38feb..17a8740 100644 --- a/api/main.proto +++ b/api/main.proto @@ -115,7 +115,9 @@ message TeamAdvanced { } message Application { - string name = 1; + int64 id = 1; + string name = 2; + string state = 3; } message GetTeamReq {} diff --git a/api/requests.http b/api/requests.http index eba85a7..057427d 100644 --- a/api/requests.http +++ b/api/requests.http @@ -20,7 +20,7 @@ POST http://localhost:8090/teams ### Получение команды GET http://localhost:8090/team -X-Id: 1 +X-Id: name X-Password: pass diff --git a/internal/models/action.go b/internal/models/action.go index d1f0739..f8021fa 100644 --- a/internal/models/action.go +++ b/internal/models/action.go @@ -1,7 +1,8 @@ package models type Action struct { - ID int64 - Place string - TeamID int64 + ID int64 + Place string + TeamID int64 + Applications []*Application } diff --git a/internal/models/application.go b/internal/models/application.go index 2ab9acb..cd1c4ff 100644 --- a/internal/models/application.go +++ b/internal/models/application.go @@ -1,6 +1,7 @@ package models type Application struct { + ID int64 TeamID int64 Name string State string diff --git a/internal/services/mappers.go b/internal/services/mappers.go index b058f2f..d74721c 100644 --- a/internal/services/mappers.go +++ b/internal/services/mappers.go @@ -34,8 +34,39 @@ func mapActionToProtoAction(action *models.Action) *proto.Action { } } -func mapApplicationToProtoApplication(application *story_service.Application) *proto.Application { +func mapStoryApplicationToProtoApplication(application *story_service.Application) *proto.Application { return &proto.Application{ Name: application.Name, } } + +func mapStoryApplicationsToApplications(applications []*story_service.Application) []*models.Application { + res := make([]*models.Application, 0, len(applications)) + for _, application := range applications { + res = append(res, mapStoryApplicationToApplication(application)) + } + return res +} + +func mapStoryApplicationToApplication(application *story_service.Application) *models.Application { + return &models.Application{ + Name: application.Name, + State: "NEW", + } +} + +func mapApplicationsToProtoApplications(applications []*models.Application) []*proto.Application { + res := make([]*proto.Application, 0, len(applications)) + for _, application := range applications { + res = append(res, mapApplicationToProtoApplication(application)) + } + return res +} + +func mapApplicationToProtoApplication(application *models.Application) *proto.Application { + return &proto.Application{ + Id: application.ID, + Name: application.Name, + State: application.State, + } +} diff --git a/internal/services/repository.go b/internal/services/repository.go index 0236d8a..5b0469e 100644 --- a/internal/services/repository.go +++ b/internal/services/repository.go @@ -26,6 +26,10 @@ func NewRepository() (*Repository, error) { if err != nil { return nil, err } + _, err = db.Exec("CREATE TABLE IF NOT EXISTS applications (id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT, teamId INTEGER, state TEXT);") + if err != nil { + return nil, err + } // for tests // _, err = db.Exec("insert into teams (id, name, password) values (1, \"name\", \"pass\");") // if err != nil { @@ -43,12 +47,12 @@ func (r *Repository) GetTeams(ctx context.Context) ([]*models.Team, error) { teams := []*models.Team{} for rows.Next() { - team := &models.Team{} - err := rows.Scan(&team.ID, &team.Name, &team.Password) + item := &models.Team{} + err := rows.Scan(&item.ID, &item.Name, &item.Password) if err != nil { return nil, err } - teams = append(teams, team) + teams = append(teams, item) } return teams, nil } @@ -76,12 +80,12 @@ func (r *Repository) GetActions(ctx context.Context, teamId int64) ([]*models.Ac actions := []*models.Action{} for rows.Next() { - team := &models.Action{} - err := rows.Scan(&team.ID, &team.Place) + item := &models.Action{} + err := rows.Scan(&item.ID, &item.Place) if err != nil { return nil, err } - actions = append(actions, team) + actions = append(actions, item) } return actions, nil } @@ -97,7 +101,7 @@ func (r *Repository) AddActions(ctx context.Context, actions []*models.Action) e } func (r *Repository) GetTeam(ctx context.Context, teamId any, password any) (*models.Team, error) { - rows, err := r.db.Query("select id, name from teams where id = $1 and password = $2", teamId, password) + rows, err := r.db.Query("select id, name from teams where LOWER(name) = LOWER($1) and password = $2", teamId, password) if err != nil { return nil, err } @@ -105,15 +109,46 @@ func (r *Repository) GetTeam(ctx context.Context, teamId any, password any) (*mo teams := []*models.Team{} for rows.Next() { - team := &models.Team{} - err := rows.Scan(&team.ID, &team.Name) + item := &models.Team{} + err := rows.Scan(&item.ID, &item.Name) if err != nil { return nil, err } - teams = append(teams, team) + teams = append(teams, item) } if len(teams) != 1 { return nil, errors.New("bad result") } return teams[0], nil } + +func (r *Repository) AddApplications(ctx context.Context, actions []*models.Action) error { + for _, action := range actions { + for _, application := range action.Applications { + _, err := r.db.Exec("insert into applications (name, teamId, state) values ($1, $2, $3)", application.Name, action.TeamID, application.State) + if err != nil { + return err + } + } + } + return nil +} + +func (r *Repository) GetApplications(ctx context.Context, teamId int64, state string) ([]*models.Application, error) { + rows, err := r.db.Query("select id, name from applications where teamId = $1 and state = $2", teamId, state) + if err != nil { + panic(err) + } + defer rows.Close() + applications := []*models.Application{} + + for rows.Next() { + item := &models.Application{} + err := rows.Scan(&item.ID, &item.Name) + if err != nil { + return nil, err + } + applications = append(applications, item) + } + return applications, nil +} diff --git a/internal/services/services.go b/internal/services/services.go index 123eae7..a0a6e3b 100644 --- a/internal/services/services.go +++ b/internal/services/services.go @@ -2,11 +2,12 @@ package services import ( "context" + "encoding/json" "evening_detective/internal/models" "evening_detective/internal/modules/password" "evening_detective/internal/services/story_service" "evening_detective/proto" - "strconv" + "fmt" "google.golang.org/grpc/codes" "google.golang.org/grpc/metadata" @@ -51,13 +52,18 @@ func (s *Services) AddAction(ctx context.Context, req *proto.AddActionReq) (*pro } actions := []*models.Action{ { - Place: place.Code, - TeamID: team.ID, + Place: place.Code, + TeamID: team.ID, + Applications: mapStoryApplicationsToApplications(place.Applications), }, } if err := s.repository.AddActions(ctx, actions); err != nil { return nil, status.Errorf(codes.Internal, err.Error()) } + if err := s.repository.AddApplications(ctx, actions); err != nil { + return nil, status.Errorf(codes.Internal, err.Error()) + } + log(team, "add action", actions) return &proto.AddActionRsp{}, nil } @@ -86,7 +92,7 @@ func (s *Services) GetTeam(ctx context.Context, req *proto.GetTeamReq) (*proto.G newAction.Name = place.Name newAction.Applications = make([]*proto.Application, 0, len(place.Applications)) for _, application := range place.Applications { - newAction.Applications = append(newAction.Applications, mapApplicationToProtoApplication(application)) + newAction.Applications = append(newAction.Applications, mapStoryApplicationToProtoApplication(application)) } res = append(res, newAction) } @@ -104,7 +110,18 @@ func (s *Services) GetTeams(ctx context.Context, _ *proto.GetTeamsReq) (*proto.G } res := make([]*proto.TeamAdvanced, 0, len(teams)) for _, team := range teams { - res = append(res, mapTeamsToTeamAdvanced(team)) + newTeam := mapTeamsToTeamAdvanced(team) + actions, err := s.repository.GetActions(ctx, team.ID) + if err != nil { + return nil, err + } + newTeam.SpendTime = int64(20 * len(actions)) + applications, err := s.repository.GetApplications(ctx, team.ID, "NEW") + if err != nil { + return nil, err + } + newTeam.Applications = mapApplicationsToProtoApplications(applications) + res = append(res, newTeam) } return &proto.GetTeamsRsp{Teams: res}, err } @@ -137,10 +154,7 @@ func (s *Services) getTeam(ctx context.Context) (*models.Team, error) { if !ok { return nil, status.Errorf(codes.Unauthenticated, "error creds") } - teamId, err := strconv.Atoi(teamIdArr[0]) - if err != nil { - return nil, status.Errorf(codes.Unauthenticated, "error creds") - } + teamId := teamIdArr[0] passwordArr, ok := md["password"] if !ok { @@ -154,3 +168,10 @@ func (s *Services) getTeam(ctx context.Context) (*models.Team, error) { } return team, nil } + +func log(team *models.Team, action string, v any) { + vJson, err := json.Marshal(v) + if err == nil { + fmt.Printf("Team %s: %s %s\n", team.Name, action, string(vJson)) + } +} diff --git a/internal/services/story_service/service.go b/internal/services/story_service/service.go index 5c0cf6a..991fad5 100644 --- a/internal/services/story_service/service.go +++ b/internal/services/story_service/service.go @@ -2,12 +2,29 @@ package story_service import ( "encoding/json" - "errors" "fmt" "os" "strings" ) +var ( + replaceMap = map[string]string{ + "a": "а", + "e": "е", + "o": "о", + "c": "с", + "p": "р", + "x": "х", + "y": "у", + "k": "к", + "m": "м", + "t": "т", + "h": "н", + "b": "в", + "u": "и", + } +) + type Story struct { Places []*Place `json:"places"` } @@ -46,10 +63,14 @@ func (s *StoryService) GetPlace(code string) (*Place, error) { return place, nil } } - return nil, errors.New(fmt.Sprintf("place not found: %s", code)) + return nil, fmt.Errorf("place not found: %s", code) } func clearCode(code string) string { code = strings.ToLower(code) - return strings.ReplaceAll(code, "-", "") + code = strings.ReplaceAll(code, "-", "") + for latin, cyrillic := range replaceMap { + code = strings.ReplaceAll(code, latin, cyrillic) + } + return code } diff --git a/proto/main.pb.go b/proto/main.pb.go index 9f967bc..2e90535 100644 --- a/proto/main.pb.go +++ b/proto/main.pb.go @@ -547,7 +547,9 @@ type Application struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + State string `protobuf:"bytes,3,opt,name=state,proto3" json:"state,omitempty"` } func (x *Application) Reset() { @@ -582,6 +584,13 @@ func (*Application) Descriptor() ([]byte, []int) { return file_main_proto_rawDescGZIP(), []int{11} } +func (x *Application) GetId() int64 { + if x != nil { + return x.Id + } + return 0 +} + func (x *Application) GetName() string { if x != nil { return x.Name @@ -589,6 +598,13 @@ func (x *Application) GetName() string { return "" } +func (x *Application) GetState() string { + if x != nil { + return x.State + } + return "" +} + type GetTeamReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1210,119 +1226,121 @@ var file_main_proto_rawDesc = []byte{ 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, - 0x0c, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x21, 0x0a, - 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, - 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, - 0x22, 0x0c, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x22, 0x47, - 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x73, 0x70, 0x12, 0x39, 0x0a, 0x07, - 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, - 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, - 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x07, - 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x10, 0x0a, 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, - 0x65, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x22, 0x10, 0x0a, 0x0e, 0x44, 0x65, 0x6c, - 0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, 0x73, 0x70, 0x22, 0x24, 0x0a, 0x0c, 0x41, - 0x64, 0x64, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x70, - 0x6c, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x6c, 0x61, 0x63, - 0x65, 0x22, 0x0e, 0x0a, 0x0c, 0x41, 0x64, 0x64, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x73, - 0x70, 0x22, 0xa0, 0x01, 0x0a, 0x06, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, - 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, - 0x70, 0x6c, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x6c, 0x61, - 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x04, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x48, 0x0a, 0x0c, 0x61, 0x70, - 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x24, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, - 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, - 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x0e, 0x0a, 0x0c, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x72, - 0x74, 0x52, 0x65, 0x71, 0x22, 0x0e, 0x0a, 0x0c, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x72, - 0x74, 0x52, 0x73, 0x70, 0x22, 0x2f, 0x0a, 0x0b, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, 0x6f, 0x70, - 0x52, 0x65, 0x71, 0x12, 0x20, 0x0a, 0x0b, 0x74, 0x69, 0x6d, 0x65, 0x53, 0x65, 0x63, 0x6f, 0x6e, - 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x74, 0x69, 0x6d, 0x65, 0x53, 0x65, - 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22, 0x0d, 0x0a, 0x0b, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, 0x6f, - 0x70, 0x52, 0x73, 0x70, 0x22, 0x77, 0x0a, 0x13, 0x47, 0x69, 0x76, 0x65, 0x41, 0x70, 0x70, 0x6c, - 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x74, - 0x65, 0x61, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x74, 0x65, 0x61, - 0x6d, 0x49, 0x64, 0x12, 0x48, 0x0a, 0x0c, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x63, 0x72, 0x61, 0x62, - 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, - 0x69, 0x76, 0x65, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, - 0x0c, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x15, 0x0a, - 0x13, 0x47, 0x69, 0x76, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x52, 0x73, 0x70, 0x32, 0xf5, 0x08, 0x0a, 0x10, 0x45, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, - 0x44, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12, 0x59, 0x0a, 0x04, 0x50, 0x69, 0x6e, - 0x67, 0x12, 0x20, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, - 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x50, 0x69, 0x6e, 0x67, - 0x52, 0x65, 0x71, 0x1a, 0x20, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, - 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x50, 0x69, - 0x6e, 0x67, 0x52, 0x73, 0x70, 0x22, 0x0d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x07, 0x12, 0x05, 0x2f, - 0x70, 0x69, 0x6e, 0x67, 0x12, 0x69, 0x0a, 0x08, 0x41, 0x64, 0x64, 0x54, 0x65, 0x61, 0x6d, 0x73, - 0x12, 0x24, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, - 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x41, 0x64, 0x64, 0x54, 0x65, - 0x61, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x24, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, + 0x0c, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x47, 0x0a, + 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, + 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, + 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0c, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, + 0x6d, 0x52, 0x65, 0x71, 0x22, 0x47, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x52, + 0x73, 0x70, 0x12, 0x39, 0x0a, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, + 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, + 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x10, 0x0a, + 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x22, + 0x10, 0x0a, 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, 0x73, + 0x70, 0x22, 0x24, 0x0a, 0x0c, 0x41, 0x64, 0x64, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, + 0x71, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x05, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x22, 0x0e, 0x0a, 0x0c, 0x41, 0x64, 0x64, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x73, 0x70, 0x22, 0xa0, 0x01, 0x0a, 0x06, 0x41, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, + 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x05, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, + 0x74, 0x65, 0x78, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, + 0x12, 0x48, 0x0a, 0x0c, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, + 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, - 0x2e, 0x41, 0x64, 0x64, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, 0x73, 0x70, 0x22, 0x11, 0x82, 0xd3, - 0xe4, 0x93, 0x02, 0x0b, 0x3a, 0x01, 0x2a, 0x22, 0x06, 0x2f, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x12, - 0x66, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x24, 0x2e, 0x63, 0x72, - 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, - 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, 0x65, - 0x71, 0x1a, 0x24, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, - 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x54, - 0x65, 0x61, 0x6d, 0x73, 0x52, 0x73, 0x70, 0x22, 0x0e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x08, 0x12, - 0x06, 0x2f, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x6d, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x54, 0x65, - 0x61, 0x6d, 0x73, 0x43, 0x53, 0x56, 0x12, 0x27, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, - 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, - 0x2e, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x43, 0x53, 0x56, 0x52, 0x65, 0x71, 0x1a, - 0x27, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, - 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, - 0x6d, 0x73, 0x43, 0x53, 0x56, 0x52, 0x73, 0x70, 0x22, 0x0c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x06, - 0x12, 0x04, 0x2f, 0x63, 0x73, 0x76, 0x12, 0x62, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, - 0x6d, 0x12, 0x23, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, - 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x54, - 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x1a, 0x23, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, - 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, - 0x2e, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x73, 0x70, 0x22, 0x0d, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x07, 0x12, 0x05, 0x2f, 0x74, 0x65, 0x61, 0x6d, 0x12, 0x6f, 0x0a, 0x0b, 0x44, 0x65, - 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x27, 0x2e, 0x63, 0x72, 0x61, 0x62, - 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, - 0x69, 0x76, 0x65, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, - 0x65, 0x71, 0x1a, 0x27, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, - 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x44, 0x65, 0x6c, - 0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, 0x73, 0x70, 0x22, 0x0e, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x08, 0x2a, 0x06, 0x2f, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x73, 0x0a, 0x09, 0x41, - 0x64, 0x64, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, - 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, - 0x76, 0x65, 0x2e, 0x41, 0x64, 0x64, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, - 0x25, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, - 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x41, 0x64, 0x64, 0x41, 0x63, 0x74, - 0x69, 0x6f, 0x6e, 0x52, 0x73, 0x70, 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x3a, 0x01, - 0x2a, 0x22, 0x0d, 0x2f, 0x74, 0x65, 0x61, 0x6d, 0x2f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x12, 0x71, 0x0a, 0x09, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12, 0x25, 0x2e, - 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, - 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x72, - 0x74, 0x52, 0x65, 0x71, 0x1a, 0x25, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, - 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, - 0x61, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x73, 0x70, 0x22, 0x16, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x10, 0x3a, 0x01, 0x2a, 0x22, 0x0b, 0x2f, 0x67, 0x61, 0x6d, 0x65, 0x2f, 0x73, 0x74, - 0x61, 0x72, 0x74, 0x12, 0x6d, 0x0a, 0x08, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, 0x6f, 0x70, 0x12, + 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x61, 0x70, + 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x0e, 0x0a, 0x0c, 0x47, 0x61, + 0x6d, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x71, 0x22, 0x0e, 0x0a, 0x0c, 0x47, 0x61, + 0x6d, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x73, 0x70, 0x22, 0x2f, 0x0a, 0x0b, 0x47, 0x61, + 0x6d, 0x65, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x12, 0x20, 0x0a, 0x0b, 0x74, 0x69, 0x6d, + 0x65, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, + 0x74, 0x69, 0x6d, 0x65, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22, 0x0d, 0x0a, 0x0b, 0x47, + 0x61, 0x6d, 0x65, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x73, 0x70, 0x22, 0x77, 0x0a, 0x13, 0x47, 0x69, + 0x76, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, + 0x71, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x61, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x03, 0x52, 0x06, 0x74, 0x65, 0x61, 0x6d, 0x49, 0x64, 0x12, 0x48, 0x0a, 0x0c, 0x61, 0x70, 0x70, + 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, - 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, - 0x6f, 0x70, 0x52, 0x65, 0x71, 0x1a, 0x24, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, - 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, - 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x73, 0x70, 0x22, 0x15, 0x82, 0xd3, 0xe4, - 0x93, 0x02, 0x0f, 0x3a, 0x01, 0x2a, 0x22, 0x0a, 0x2f, 0x67, 0x61, 0x6d, 0x65, 0x2f, 0x73, 0x74, - 0x6f, 0x70, 0x12, 0x97, 0x01, 0x0a, 0x10, 0x47, 0x69, 0x76, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, - 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2c, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, + 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x73, 0x22, 0x15, 0x0a, 0x13, 0x47, 0x69, 0x76, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, + 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x73, 0x70, 0x32, 0xf5, 0x08, 0x0a, 0x10, 0x45, + 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x44, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12, + 0x59, 0x0a, 0x04, 0x50, 0x69, 0x6e, 0x67, 0x12, 0x20, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, - 0x65, 0x2e, 0x47, 0x69, 0x76, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x2c, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, + 0x65, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x20, 0x2e, 0x63, 0x72, 0x61, 0x62, + 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, + 0x69, 0x76, 0x65, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x73, 0x70, 0x22, 0x0d, 0x82, 0xd3, 0xe4, + 0x93, 0x02, 0x07, 0x12, 0x05, 0x2f, 0x70, 0x69, 0x6e, 0x67, 0x12, 0x69, 0x0a, 0x08, 0x41, 0x64, + 0x64, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x24, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, + 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, + 0x2e, 0x41, 0x64, 0x64, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x24, 0x2e, 0x63, + 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, + 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x41, 0x64, 0x64, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, + 0x73, 0x70, 0x22, 0x11, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0b, 0x3a, 0x01, 0x2a, 0x22, 0x06, 0x2f, + 0x74, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x66, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, + 0x73, 0x12, 0x24, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, + 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x54, + 0x65, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x24, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, + 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, + 0x65, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, 0x73, 0x70, 0x22, 0x0e, 0x82, + 0xd3, 0xe4, 0x93, 0x02, 0x08, 0x12, 0x06, 0x2f, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x6d, 0x0a, + 0x0b, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x43, 0x53, 0x56, 0x12, 0x27, 0x2e, 0x63, + 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, + 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x43, + 0x53, 0x56, 0x52, 0x65, 0x71, 0x1a, 0x27, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, - 0x47, 0x69, 0x76, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x52, 0x73, 0x70, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x3a, 0x01, 0x2a, 0x22, 0x1c, - 0x2f, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x2f, 0x7b, 0x74, 0x65, 0x61, 0x6d, 0x49, 0x64, 0x7d, 0x2f, - 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x0b, 0x5a, 0x09, - 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x33, + 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x43, 0x53, 0x56, 0x52, 0x73, 0x70, 0x22, 0x0c, + 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x06, 0x12, 0x04, 0x2f, 0x63, 0x73, 0x76, 0x12, 0x62, 0x0a, 0x07, + 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x12, 0x23, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, + 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, + 0x65, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x1a, 0x23, 0x2e, 0x63, + 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, + 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x73, + 0x70, 0x22, 0x0d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x07, 0x12, 0x05, 0x2f, 0x74, 0x65, 0x61, 0x6d, + 0x12, 0x6f, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x12, + 0x27, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, + 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, + 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x27, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, + 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, + 0x76, 0x65, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, 0x73, + 0x70, 0x22, 0x0e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x08, 0x2a, 0x06, 0x2f, 0x74, 0x65, 0x61, 0x6d, + 0x73, 0x12, 0x73, 0x0a, 0x09, 0x41, 0x64, 0x64, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x25, + 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, + 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x41, 0x64, 0x64, 0x41, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x25, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, + 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, + 0x41, 0x64, 0x64, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x73, 0x70, 0x22, 0x18, 0x82, 0xd3, + 0xe4, 0x93, 0x02, 0x12, 0x3a, 0x01, 0x2a, 0x22, 0x0d, 0x2f, 0x74, 0x65, 0x61, 0x6d, 0x2f, 0x61, + 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x71, 0x0a, 0x09, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, + 0x61, 0x72, 0x74, 0x12, 0x25, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, + 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x61, + 0x6d, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x25, 0x2e, 0x63, 0x72, 0x61, + 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, + 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x73, + 0x70, 0x22, 0x16, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x10, 0x3a, 0x01, 0x2a, 0x22, 0x0b, 0x2f, 0x67, + 0x61, 0x6d, 0x65, 0x2f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x12, 0x6d, 0x0a, 0x08, 0x47, 0x61, 0x6d, + 0x65, 0x53, 0x74, 0x6f, 0x70, 0x12, 0x24, 0x2e, 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, + 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, + 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x1a, 0x24, 0x2e, 0x63, 0x72, + 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, + 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x73, + 0x70, 0x22, 0x15, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0f, 0x3a, 0x01, 0x2a, 0x22, 0x0a, 0x2f, 0x67, + 0x61, 0x6d, 0x65, 0x2f, 0x73, 0x74, 0x6f, 0x70, 0x12, 0x97, 0x01, 0x0a, 0x10, 0x47, 0x69, 0x76, + 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2c, 0x2e, + 0x63, 0x72, 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, + 0x74, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x69, 0x76, 0x65, 0x41, 0x70, 0x70, 0x6c, + 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x2c, 0x2e, 0x63, 0x72, + 0x61, 0x62, 0x73, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x65, + 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x47, 0x69, 0x76, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x73, 0x70, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, + 0x21, 0x3a, 0x01, 0x2a, 0x22, 0x1c, 0x2f, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x2f, 0x7b, 0x74, 0x65, + 0x61, 0x6d, 0x49, 0x64, 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x73, 0x42, 0x0b, 0x5a, 0x09, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, + 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/proto/main.swagger.json b/proto/main.swagger.json index cf104ee..a1003bf 100644 --- a/proto/main.swagger.json +++ b/proto/main.swagger.json @@ -346,8 +346,15 @@ "evening_detectiveApplication": { "type": "object", "properties": { + "id": { + "type": "string", + "format": "int64" + }, "name": { "type": "string" + }, + "state": { + "type": "string" } } }, diff --git a/static/admin/assets/AboutView-BiO2tasp.js b/static/admin/assets/AboutView-BGED82nn.js similarity index 72% rename from static/admin/assets/AboutView-BiO2tasp.js rename to static/admin/assets/AboutView-BGED82nn.js index 53523ce..6d5e331 100644 --- a/static/admin/assets/AboutView-BiO2tasp.js +++ b/static/admin/assets/AboutView-BGED82nn.js @@ -1 +1 @@ -import{_ as o,c as s,a as t,o as a}from"./index-waNsD4Su.js";const n={},c={class:"about"};function r(_,e){return a(),s("div",c,e[0]||(e[0]=[t("h1",null,"This is an about page",-1)]))}const l=o(n,[["render",r]]);export{l as default}; +import{_ as o,c as s,a as t,o as a}from"./index-B3pctyTM.js";const n={},c={class:"about"};function r(_,e){return a(),s("div",c,e[0]||(e[0]=[t("h1",null,"This is an about page",-1)]))}const l=o(n,[["render",r]]);export{l as default}; diff --git a/static/admin/assets/index-B3pctyTM.js b/static/admin/assets/index-B3pctyTM.js new file mode 100644 index 0000000..cc75133 --- /dev/null +++ b/static/admin/assets/index-B3pctyTM.js @@ -0,0 +1,26 @@ +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/AboutView-BGED82nn.js","assets/AboutView-CSIvawM9.css"])))=>i.map(i=>d[i]); +(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))s(r);new MutationObserver(r=>{for(const i of r)if(i.type==="childList")for(const o of i.addedNodes)o.tagName==="LINK"&&o.rel==="modulepreload"&&s(o)}).observe(document,{childList:!0,subtree:!0});function n(r){const i={};return r.integrity&&(i.integrity=r.integrity),r.referrerPolicy&&(i.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?i.credentials="include":r.crossOrigin==="anonymous"?i.credentials="omit":i.credentials="same-origin",i}function s(r){if(r.ep)return;r.ep=!0;const i=n(r);fetch(r.href,i)}})();/** +* @vue/shared v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**//*! #__NO_SIDE_EFFECTS__ */function ns(e){const t=Object.create(null);for(const n of e.split(","))t[n]=1;return n=>n in t}const X={},vt=[],He=()=>{},Ki=()=>!1,mn=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),ss=e=>e.startsWith("onUpdate:"),le=Object.assign,rs=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},ki=Object.prototype.hasOwnProperty,W=(e,t)=>ki.call(e,t),j=Array.isArray,bt=e=>_n(e)==="[object Map]",yr=e=>_n(e)==="[object Set]",D=e=>typeof e=="function",te=e=>typeof e=="string",nt=e=>typeof e=="symbol",Z=e=>e!==null&&typeof e=="object",vr=e=>(Z(e)||D(e))&&D(e.then)&&D(e.catch),br=Object.prototype.toString,_n=e=>br.call(e),Wi=e=>_n(e).slice(8,-1),xr=e=>_n(e)==="[object Object]",is=e=>te(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Ft=ns(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),yn=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},qi=/-(\w)/g,tt=yn(e=>e.replace(qi,(t,n)=>n?n.toUpperCase():"")),Gi=/\B([A-Z])/g,ht=yn(e=>e.replace(Gi,"-$1").toLowerCase()),Er=yn(e=>e.charAt(0).toUpperCase()+e.slice(1)),Cn=yn(e=>e?`on${Er(e)}`:""),et=(e,t)=>!Object.is(e,t),An=(e,...t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:s,value:n})},zi=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let Ps;const vn=()=>Ps||(Ps=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function os(e){if(j(e)){const t={};for(let n=0;n{if(n){const s=n.split(Yi);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function ls(e){let t="";if(te(e))t=e;else if(j(e))for(let n=0;n!!(e&&e.__v_isRef===!0),sn=e=>te(e)?e:e==null?"":j(e)||Z(e)&&(e.toString===br||!D(e.toString))?Rr(e)?sn(e.value):JSON.stringify(e,Pr,2):String(e),Pr=(e,t)=>Rr(t)?Pr(e,t.value):bt(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r],i)=>(n[On(s,i)+" =>"]=r,n),{})}:yr(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>On(n))}:nt(t)?On(t):Z(t)&&!j(t)&&!xr(t)?String(t):t,On=(e,t="")=>{var n;return nt(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** +* @vue/reactivity v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let _e;class Cr{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.parent=_e,!t&&_e&&(this.index=(_e.scopes||(_e.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t0)return;if($t){let t=$t;for($t=void 0;t;){const n=t.next;t.next=void 0,t.flags&=-9,t=n}}let e;for(;Lt;){let t=Lt;for(Lt=void 0;t;){const n=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(s){e||(e=s)}t=n}}if(e)throw e}function Ir(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function Mr(e){let t,n=e.depsTail,s=n;for(;s;){const r=s.prevDep;s.version===-1?(s===n&&(n=r),us(s),so(s)):t=s,s.dep.activeLink=s.prevActiveLink,s.prevActiveLink=void 0,s=r}e.deps=t,e.depsTail=n}function Vn(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(Fr(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function Fr(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===Vt))return;e.globalVersion=Vt;const t=e.dep;if(e.flags|=2,t.version>0&&!e.isSSR&&e.deps&&!Vn(e)){e.flags&=-3;return}const n=J,s=Se;J=e,Se=!0;try{Ir(e);const r=e.fn(e._value);(t.version===0||et(r,e._value))&&(e._value=r,t.version++)}catch(r){throw t.version++,r}finally{J=n,Se=s,Mr(e),e.flags&=-3}}function us(e,t=!1){const{dep:n,prevSub:s,nextSub:r}=e;if(s&&(s.nextSub=r,e.prevSub=void 0),r&&(r.prevSub=s,e.nextSub=void 0),n.subs===e&&(n.subs=s,!s&&n.computed)){n.computed.flags&=-5;for(let i=n.computed.deps;i;i=i.nextDep)us(i,!0)}!t&&!--n.sc&&n.map&&n.map.delete(n.key)}function so(e){const{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}let Se=!0;const Lr=[];function st(){Lr.push(Se),Se=!1}function rt(){const e=Lr.pop();Se=e===void 0?!0:e}function Cs(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const n=J;J=void 0;try{t()}finally{J=n}}}let Vt=0;class ro{constructor(t,n){this.sub=t,this.dep=n,this.version=n.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class as{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0}track(t){if(!J||!Se||J===this.computed)return;let n=this.activeLink;if(n===void 0||n.sub!==J)n=this.activeLink=new ro(J,this),J.deps?(n.prevDep=J.depsTail,J.depsTail.nextDep=n,J.depsTail=n):J.deps=J.depsTail=n,$r(n);else if(n.version===-1&&(n.version=this.version,n.nextDep)){const s=n.nextDep;s.prevDep=n.prevDep,n.prevDep&&(n.prevDep.nextDep=s),n.prevDep=J.depsTail,n.nextDep=void 0,J.depsTail.nextDep=n,J.depsTail=n,J.deps===n&&(J.deps=s)}return n}trigger(t){this.version++,Vt++,this.notify(t)}notify(t){cs();try{for(let n=this.subs;n;n=n.prevSub)n.sub.notify()&&n.sub.dep.notify()}finally{fs()}}}function $r(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let s=t.deps;s;s=s.nextDep)$r(s)}const n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),e.dep.subs=e}}const Kn=new WeakMap,ft=Symbol(""),kn=Symbol(""),Kt=Symbol("");function re(e,t,n){if(Se&&J){let s=Kn.get(e);s||Kn.set(e,s=new Map);let r=s.get(n);r||(s.set(n,r=new as),r.map=s,r.key=n),r.track()}}function Ke(e,t,n,s,r,i){const o=Kn.get(e);if(!o){Vt++;return}const l=c=>{c&&c.trigger()};if(cs(),t==="clear")o.forEach(l);else{const c=j(e),h=c&&is(n);if(c&&n==="length"){const a=Number(s);o.forEach((d,g)=>{(g==="length"||g===Kt||!nt(g)&&g>=a)&&l(d)})}else switch((n!==void 0||o.has(void 0))&&l(o.get(n)),h&&l(o.get(Kt)),t){case"add":c?h&&l(o.get("length")):(l(o.get(ft)),bt(e)&&l(o.get(kn)));break;case"delete":c||(l(o.get(ft)),bt(e)&&l(o.get(kn)));break;case"set":bt(e)&&l(o.get(ft));break}}fs()}function mt(e){const t=k(e);return t===e?t:(re(t,"iterate",Kt),xe(e)?t:t.map(ie))}function bn(e){return re(e=k(e),"iterate",Kt),e}const io={__proto__:null,[Symbol.iterator](){return In(this,Symbol.iterator,ie)},concat(...e){return mt(this).concat(...e.map(t=>j(t)?mt(t):t))},entries(){return In(this,"entries",e=>(e[1]=ie(e[1]),e))},every(e,t){return Be(this,"every",e,t,void 0,arguments)},filter(e,t){return Be(this,"filter",e,t,n=>n.map(ie),arguments)},find(e,t){return Be(this,"find",e,t,ie,arguments)},findIndex(e,t){return Be(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return Be(this,"findLast",e,t,ie,arguments)},findLastIndex(e,t){return Be(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return Be(this,"forEach",e,t,void 0,arguments)},includes(...e){return Mn(this,"includes",e)},indexOf(...e){return Mn(this,"indexOf",e)},join(e){return mt(this).join(e)},lastIndexOf(...e){return Mn(this,"lastIndexOf",e)},map(e,t){return Be(this,"map",e,t,void 0,arguments)},pop(){return Ot(this,"pop")},push(...e){return Ot(this,"push",e)},reduce(e,...t){return As(this,"reduce",e,t)},reduceRight(e,...t){return As(this,"reduceRight",e,t)},shift(){return Ot(this,"shift")},some(e,t){return Be(this,"some",e,t,void 0,arguments)},splice(...e){return Ot(this,"splice",e)},toReversed(){return mt(this).toReversed()},toSorted(e){return mt(this).toSorted(e)},toSpliced(...e){return mt(this).toSpliced(...e)},unshift(...e){return Ot(this,"unshift",e)},values(){return In(this,"values",ie)}};function In(e,t,n){const s=bn(e),r=s[t]();return s!==e&&!xe(e)&&(r._next=r.next,r.next=()=>{const i=r._next();return i.value&&(i.value=n(i.value)),i}),r}const oo=Array.prototype;function Be(e,t,n,s,r,i){const o=bn(e),l=o!==e&&!xe(e),c=o[t];if(c!==oo[t]){const d=c.apply(e,i);return l?ie(d):d}let h=n;o!==e&&(l?h=function(d,g){return n.call(this,ie(d),g,e)}:n.length>2&&(h=function(d,g){return n.call(this,d,g,e)}));const a=c.call(o,h,s);return l&&r?r(a):a}function As(e,t,n,s){const r=bn(e);let i=n;return r!==e&&(xe(e)?n.length>3&&(i=function(o,l,c){return n.call(this,o,l,c,e)}):i=function(o,l,c){return n.call(this,o,ie(l),c,e)}),r[t](i,...s)}function Mn(e,t,n){const s=k(e);re(s,"iterate",Kt);const r=s[t](...n);return(r===-1||r===!1)&&ps(n[0])?(n[0]=k(n[0]),s[t](...n)):r}function Ot(e,t,n=[]){st(),cs();const s=k(e)[t].apply(e,n);return fs(),rt(),s}const lo=ns("__proto__,__v_isRef,__isVue"),Nr=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(nt));function co(e){nt(e)||(e=String(e));const t=k(this);return re(t,"has",e),t.hasOwnProperty(e)}class Hr{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,s){if(n==="__v_skip")return t.__v_skip;const r=this._isReadonly,i=this._isShallow;if(n==="__v_isReactive")return!r;if(n==="__v_isReadonly")return r;if(n==="__v_isShallow")return i;if(n==="__v_raw")return s===(r?i?vo:Ur:i?Br:Dr).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const o=j(t);if(!r){let c;if(o&&(c=io[n]))return c;if(n==="hasOwnProperty")return co}const l=Reflect.get(t,n,oe(t)?t:s);return(nt(n)?Nr.has(n):lo(n))||(r||re(t,"get",n),i)?l:oe(l)?o&&is(n)?l:l.value:Z(l)?r?Kr(l):xn(l):l}}class jr extends Hr{constructor(t=!1){super(!1,t)}set(t,n,s,r){let i=t[n];if(!this._isShallow){const c=at(i);if(!xe(s)&&!at(s)&&(i=k(i),s=k(s)),!j(t)&&oe(i)&&!oe(s))return c?!1:(i.value=s,!0)}const o=j(t)&&is(n)?Number(n)e,en=e=>Reflect.getPrototypeOf(e);function po(e,t,n){return function(...s){const r=this.__v_raw,i=k(r),o=bt(i),l=e==="entries"||e===Symbol.iterator&&o,c=e==="keys"&&o,h=r[e](...s),a=n?Wn:t?qn:ie;return!t&&re(i,"iterate",c?kn:ft),{next(){const{value:d,done:g}=h.next();return g?{value:d,done:g}:{value:l?[a(d[0]),a(d[1])]:a(d),done:g}},[Symbol.iterator](){return this}}}}function tn(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function go(e,t){const n={get(r){const i=this.__v_raw,o=k(i),l=k(r);e||(et(r,l)&&re(o,"get",r),re(o,"get",l));const{has:c}=en(o),h=t?Wn:e?qn:ie;if(c.call(o,r))return h(i.get(r));if(c.call(o,l))return h(i.get(l));i!==o&&i.get(r)},get size(){const r=this.__v_raw;return!e&&re(k(r),"iterate",ft),Reflect.get(r,"size",r)},has(r){const i=this.__v_raw,o=k(i),l=k(r);return e||(et(r,l)&&re(o,"has",r),re(o,"has",l)),r===l?i.has(r):i.has(r)||i.has(l)},forEach(r,i){const o=this,l=o.__v_raw,c=k(l),h=t?Wn:e?qn:ie;return!e&&re(c,"iterate",ft),l.forEach((a,d)=>r.call(i,h(a),h(d),o))}};return le(n,e?{add:tn("add"),set:tn("set"),delete:tn("delete"),clear:tn("clear")}:{add(r){!t&&!xe(r)&&!at(r)&&(r=k(r));const i=k(this);return en(i).has.call(i,r)||(i.add(r),Ke(i,"add",r,r)),this},set(r,i){!t&&!xe(i)&&!at(i)&&(i=k(i));const o=k(this),{has:l,get:c}=en(o);let h=l.call(o,r);h||(r=k(r),h=l.call(o,r));const a=c.call(o,r);return o.set(r,i),h?et(i,a)&&Ke(o,"set",r,i):Ke(o,"add",r,i),this},delete(r){const i=k(this),{has:o,get:l}=en(i);let c=o.call(i,r);c||(r=k(r),c=o.call(i,r)),l&&l.call(i,r);const h=i.delete(r);return c&&Ke(i,"delete",r,void 0),h},clear(){const r=k(this),i=r.size!==0,o=r.clear();return i&&Ke(r,"clear",void 0,void 0),o}}),["keys","values","entries",Symbol.iterator].forEach(r=>{n[r]=po(r,e,t)}),n}function hs(e,t){const n=go(e,t);return(s,r,i)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(W(n,r)&&r in s?n:s,r,i)}const mo={get:hs(!1,!1)},_o={get:hs(!1,!0)},yo={get:hs(!0,!1)};const Dr=new WeakMap,Br=new WeakMap,Ur=new WeakMap,vo=new WeakMap;function bo(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function xo(e){return e.__v_skip||!Object.isExtensible(e)?0:bo(Wi(e))}function xn(e){return at(e)?e:ds(e,!1,uo,mo,Dr)}function Vr(e){return ds(e,!1,ho,_o,Br)}function Kr(e){return ds(e,!0,ao,yo,Ur)}function ds(e,t,n,s,r){if(!Z(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const i=r.get(e);if(i)return i;const o=xo(e);if(o===0)return e;const l=new Proxy(e,o===2?s:n);return r.set(e,l),l}function xt(e){return at(e)?xt(e.__v_raw):!!(e&&e.__v_isReactive)}function at(e){return!!(e&&e.__v_isReadonly)}function xe(e){return!!(e&&e.__v_isShallow)}function ps(e){return e?!!e.__v_raw:!1}function k(e){const t=e&&e.__v_raw;return t?k(t):e}function kr(e){return!W(e,"__v_skip")&&Object.isExtensible(e)&&wr(e,"__v_skip",!0),e}const ie=e=>Z(e)?xn(e):e,qn=e=>Z(e)?Kr(e):e;function oe(e){return e?e.__v_isRef===!0:!1}function gs(e){return Wr(e,!1)}function Eo(e){return Wr(e,!0)}function Wr(e,t){return oe(e)?e:new wo(e,t)}class wo{constructor(t,n){this.dep=new as,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=n?t:k(t),this._value=n?t:ie(t),this.__v_isShallow=n}get value(){return this.dep.track(),this._value}set value(t){const n=this._rawValue,s=this.__v_isShallow||xe(t)||at(t);t=s?t:k(t),et(t,n)&&(this._rawValue=t,this._value=s?t:ie(t),this.dep.trigger())}}function ut(e){return oe(e)?e.value:e}const So={get:(e,t,n)=>t==="__v_raw"?e:ut(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return oe(r)&&!oe(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function qr(e){return xt(e)?e:new Proxy(e,So)}class Ro{constructor(t,n,s){this.fn=t,this.setter=n,this._value=void 0,this.dep=new as(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=Vt-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!n,this.isSSR=s}notify(){if(this.flags|=16,!(this.flags&8)&&J!==this)return Tr(this,!0),!0}get value(){const t=this.dep.track();return Fr(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function Po(e,t,n=!1){let s,r;return D(e)?s=e:(s=e.get,r=e.set),new Ro(s,r,n)}const nn={},fn=new WeakMap;let ct;function Co(e,t=!1,n=ct){if(n){let s=fn.get(n);s||fn.set(n,s=[]),s.push(e)}}function Ao(e,t,n=X){const{immediate:s,deep:r,once:i,scheduler:o,augmentJob:l,call:c}=n,h=T=>r?T:xe(T)||r===!1||r===0?Ze(T,1):Ze(T);let a,d,g,m,A=!1,O=!1;if(oe(e)?(d=()=>e.value,A=xe(e)):xt(e)?(d=()=>h(e),A=!0):j(e)?(O=!0,A=e.some(T=>xt(T)||xe(T)),d=()=>e.map(T=>{if(oe(T))return T.value;if(xt(T))return h(T);if(D(T))return c?c(T,2):T()})):D(e)?t?d=c?()=>c(e,2):e:d=()=>{if(g){st();try{g()}finally{rt()}}const T=ct;ct=a;try{return c?c(e,3,[m]):e(m)}finally{ct=T}}:d=He,t&&r){const T=d,z=r===!0?1/0:r;d=()=>Ze(T(),z)}const B=no(),L=()=>{a.stop(),B&&B.active&&rs(B.effects,a)};if(i&&t){const T=t;t=(...z)=>{T(...z),L()}}let M=O?new Array(e.length).fill(nn):nn;const $=T=>{if(!(!(a.flags&1)||!a.dirty&&!T))if(t){const z=a.run();if(r||A||(O?z.some((se,ee)=>et(se,M[ee])):et(z,M))){g&&g();const se=ct;ct=a;try{const ee=[z,M===nn?void 0:O&&M[0]===nn?[]:M,m];c?c(t,3,ee):t(...ee),M=z}finally{ct=se}}}else a.run()};return l&&l($),a=new Ar(d),a.scheduler=o?()=>o($,!1):$,m=T=>Co(T,!1,a),g=a.onStop=()=>{const T=fn.get(a);if(T){if(c)c(T,4);else for(const z of T)z();fn.delete(a)}},t?s?$(!0):M=a.run():o?o($.bind(null,!0),!0):a.run(),L.pause=a.pause.bind(a),L.resume=a.resume.bind(a),L.stop=L,L}function Ze(e,t=1/0,n){if(t<=0||!Z(e)||e.__v_skip||(n=n||new Set,n.has(e)))return e;if(n.add(e),t--,oe(e))Ze(e.value,t,n);else if(j(e))for(let s=0;s{Ze(s,t,n)});else if(xr(e)){for(const s in e)Ze(e[s],t,n);for(const s of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,s)&&Ze(e[s],t,n)}return e}/** +* @vue/runtime-core v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function Yt(e,t,n,s){try{return s?e(...s):e()}catch(r){En(r,t,n)}}function je(e,t,n,s){if(D(e)){const r=Yt(e,t,n,s);return r&&vr(r)&&r.catch(i=>{En(i,t,n)}),r}if(j(e)){const r=[];for(let i=0;i>>1,r=fe[s],i=kt(r);i=kt(n)?fe.push(e):fe.splice(To(t),0,e),e.flags|=1,Qr()}}function Qr(){un||(un=Gr.then(Jr))}function Io(e){j(e)?Et.push(...e):Ye&&e.id===-1?Ye.splice(_t+1,0,e):e.flags&1||(Et.push(e),e.flags|=1),Qr()}function Os(e,t,n=Le+1){for(;nkt(n)-kt(s));if(Et.length=0,Ye){Ye.push(...t);return}for(Ye=t,_t=0;_te.id==null?e.flags&2?-1:1/0:e.id;function Jr(e){try{for(Le=0;Le{s._d&&js(-1);const i=an(t);let o;try{o=e(...r)}finally{an(i),s._d&&js(1)}return o};return s._n=!0,s._c=!0,s._d=!0,s}function ot(e,t,n,s){const r=e.dirs,i=t&&t.dirs;for(let o=0;oe.__isTeleport;function _s(e,t){e.shapeFlag&6&&e.component?(e.transition=t,_s(e.component.subTree,t)):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}/*! #__NO_SIDE_EFFECTS__ */function Jt(e,t){return D(e)?le({name:e.name},t,{setup:e}):e}function Zr(e){e.ids=[e.ids[0]+e.ids[2]+++"-",0,0]}function hn(e,t,n,s,r=!1){if(j(e)){e.forEach((A,O)=>hn(A,t&&(j(t)?t[O]:t),n,s,r));return}if(Nt(s)&&!r){s.shapeFlag&512&&s.type.__asyncResolved&&s.component.subTree.component&&hn(e,t,n,s.component.subTree);return}const i=s.shapeFlag&4?bs(s.component):s.el,o=r?null:i,{i:l,r:c}=e,h=t&&t.r,a=l.refs===X?l.refs={}:l.refs,d=l.setupState,g=k(d),m=d===X?()=>!1:A=>W(g,A);if(h!=null&&h!==c&&(te(h)?(a[h]=null,m(h)&&(d[h]=null)):oe(h)&&(h.value=null)),D(c))Yt(c,l,12,[o,a]);else{const A=te(c),O=oe(c);if(A||O){const B=()=>{if(e.f){const L=A?m(c)?d[c]:a[c]:c.value;r?j(L)&&rs(L,i):j(L)?L.includes(i)||L.push(i):A?(a[c]=[i],m(c)&&(d[c]=a[c])):(c.value=[i],e.k&&(a[e.k]=c.value))}else A?(a[c]=o,m(c)&&(d[c]=o)):O&&(c.value=o,e.k&&(a[e.k]=o))};o?(B.id=-1,ge(B,n)):B()}}}vn().requestIdleCallback;vn().cancelIdleCallback;const Nt=e=>!!e.type.__asyncLoader,ei=e=>e.type.__isKeepAlive;function $o(e,t){ti(e,"a",t)}function No(e,t){ti(e,"da",t)}function ti(e,t,n=ue){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(wn(t,s,n),n){let r=n.parent;for(;r&&r.parent;)ei(r.parent.vnode)&&Ho(s,t,n,r),r=r.parent}}function Ho(e,t,n,s){const r=wn(t,e,s,!0);ni(()=>{rs(s[t],r)},n)}function wn(e,t,n=ue,s=!1){if(n){const r=n[e]||(n[e]=[]),i=t.__weh||(t.__weh=(...o)=>{st();const l=Xt(n),c=je(t,n,e,o);return l(),rt(),c});return s?r.unshift(i):r.push(i),i}}const We=e=>(t,n=ue)=>{(!Gt||e==="sp")&&wn(e,(...s)=>t(...s),n)},jo=We("bm"),Do=We("m"),Bo=We("bu"),Uo=We("u"),Vo=We("bum"),ni=We("um"),Ko=We("sp"),ko=We("rtg"),Wo=We("rtc");function qo(e,t=ue){wn("ec",e,t)}const Go=Symbol.for("v-ndc");function zo(e,t,n,s){let r;const i=n,o=j(e);if(o||te(e)){const l=o&&xt(e);let c=!1;l&&(c=!xe(e),e=bn(e)),r=new Array(e.length);for(let h=0,a=e.length;ht(l,c,void 0,i));else{const l=Object.keys(e);r=new Array(l.length);for(let c=0,h=l.length;ce?Si(e)?bs(e):Gn(e.parent):null,Ht=le(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Gn(e.parent),$root:e=>Gn(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>ri(e),$forceUpdate:e=>e.f||(e.f=()=>{ms(e.update)}),$nextTick:e=>e.n||(e.n=zr.bind(e.proxy)),$watch:e=>gl.bind(e)}),Fn=(e,t)=>e!==X&&!e.__isScriptSetup&&W(e,t),Qo={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:s,data:r,props:i,accessCache:o,type:l,appContext:c}=e;let h;if(t[0]!=="$"){const m=o[t];if(m!==void 0)switch(m){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return i[t]}else{if(Fn(s,t))return o[t]=1,s[t];if(r!==X&&W(r,t))return o[t]=2,r[t];if((h=e.propsOptions[0])&&W(h,t))return o[t]=3,i[t];if(n!==X&&W(n,t))return o[t]=4,n[t];zn&&(o[t]=0)}}const a=Ht[t];let d,g;if(a)return t==="$attrs"&&re(e.attrs,"get",""),a(e);if((d=l.__cssModules)&&(d=d[t]))return d;if(n!==X&&W(n,t))return o[t]=4,n[t];if(g=c.config.globalProperties,W(g,t))return g[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:i}=e;return Fn(r,t)?(r[t]=n,!0):s!==X&&W(s,t)?(s[t]=n,!0):W(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(i[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:i}},o){let l;return!!n[o]||e!==X&&W(e,o)||Fn(t,o)||(l=i[0])&&W(l,o)||W(s,o)||W(Ht,o)||W(r.config.globalProperties,o)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:W(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function Ts(e){return j(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let zn=!0;function Yo(e){const t=ri(e),n=e.proxy,s=e.ctx;zn=!1,t.beforeCreate&&Is(t.beforeCreate,e,"bc");const{data:r,computed:i,methods:o,watch:l,provide:c,inject:h,created:a,beforeMount:d,mounted:g,beforeUpdate:m,updated:A,activated:O,deactivated:B,beforeDestroy:L,beforeUnmount:M,destroyed:$,unmounted:T,render:z,renderTracked:se,renderTriggered:ee,errorCaptured:Pe,serverPrefetch:qe,expose:Ce,inheritAttrs:Ge,components:it,directives:Ae,filters:Ct}=t;if(h&&Jo(h,s,null),o)for(const G in o){const V=o[G];D(V)&&(s[G]=V.bind(n))}if(r){const G=r.call(n,n);Z(G)&&(e.data=xn(G))}if(zn=!0,i)for(const G in i){const V=i[G],De=D(V)?V.bind(n,n):D(V.get)?V.get.bind(n,n):He,ze=!D(V)&&D(V.set)?V.set.bind(n):He,Oe=we({get:De,set:ze});Object.defineProperty(s,G,{enumerable:!0,configurable:!0,get:()=>Oe.value,set:ae=>Oe.value=ae})}if(l)for(const G in l)si(l[G],s,n,G);if(c){const G=D(c)?c.call(n):c;Reflect.ownKeys(G).forEach(V=>{rn(V,G[V])})}a&&Is(a,e,"c");function ne(G,V){j(V)?V.forEach(De=>G(De.bind(n))):V&&G(V.bind(n))}if(ne(jo,d),ne(Do,g),ne(Bo,m),ne(Uo,A),ne($o,O),ne(No,B),ne(qo,Pe),ne(Wo,se),ne(ko,ee),ne(Vo,M),ne(ni,T),ne(Ko,qe),j(Ce))if(Ce.length){const G=e.exposed||(e.exposed={});Ce.forEach(V=>{Object.defineProperty(G,V,{get:()=>n[V],set:De=>n[V]=De})})}else e.exposed||(e.exposed={});z&&e.render===He&&(e.render=z),Ge!=null&&(e.inheritAttrs=Ge),it&&(e.components=it),Ae&&(e.directives=Ae),qe&&Zr(e)}function Jo(e,t,n=He){j(e)&&(e=Qn(e));for(const s in e){const r=e[s];let i;Z(r)?"default"in r?i=ke(r.from||s,r.default,!0):i=ke(r.from||s):i=ke(r),oe(i)?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>i.value,set:o=>i.value=o}):t[s]=i}}function Is(e,t,n){je(j(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function si(e,t,n,s){let r=s.includes(".")?yi(n,s):()=>n[s];if(te(e)){const i=t[e];D(i)&&on(r,i)}else if(D(e))on(r,e.bind(n));else if(Z(e))if(j(e))e.forEach(i=>si(i,t,n,s));else{const i=D(e.handler)?e.handler.bind(n):t[e.handler];D(i)&&on(r,i,e)}}function ri(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:i,config:{optionMergeStrategies:o}}=e.appContext,l=i.get(t);let c;return l?c=l:!r.length&&!n&&!s?c=t:(c={},r.length&&r.forEach(h=>dn(c,h,o,!0)),dn(c,t,o)),Z(t)&&i.set(t,c),c}function dn(e,t,n,s=!1){const{mixins:r,extends:i}=t;i&&dn(e,i,n,!0),r&&r.forEach(o=>dn(e,o,n,!0));for(const o in t)if(!(s&&o==="expose")){const l=Xo[o]||n&&n[o];e[o]=l?l(e[o],t[o]):t[o]}return e}const Xo={data:Ms,props:Fs,emits:Fs,methods:Mt,computed:Mt,beforeCreate:ce,created:ce,beforeMount:ce,mounted:ce,beforeUpdate:ce,updated:ce,beforeDestroy:ce,beforeUnmount:ce,destroyed:ce,unmounted:ce,activated:ce,deactivated:ce,errorCaptured:ce,serverPrefetch:ce,components:Mt,directives:Mt,watch:el,provide:Ms,inject:Zo};function Ms(e,t){return t?e?function(){return le(D(e)?e.call(this,this):e,D(t)?t.call(this,this):t)}:t:e}function Zo(e,t){return Mt(Qn(e),Qn(t))}function Qn(e){if(j(e)){const t={};for(let n=0;n1)return n&&D(t)?t.call(s&&s.proxy):t}}const oi={},li=()=>Object.create(oi),ci=e=>Object.getPrototypeOf(e)===oi;function sl(e,t,n,s=!1){const r={},i=li();e.propsDefaults=Object.create(null),fi(e,t,r,i);for(const o in e.propsOptions[0])o in r||(r[o]=void 0);n?e.props=s?r:Vr(r):e.type.props?e.props=r:e.props=i,e.attrs=i}function rl(e,t,n,s){const{props:r,attrs:i,vnode:{patchFlag:o}}=e,l=k(r),[c]=e.propsOptions;let h=!1;if((s||o>0)&&!(o&16)){if(o&8){const a=e.vnode.dynamicProps;for(let d=0;d{c=!0;const[g,m]=ui(d,t,!0);le(o,g),m&&l.push(...m)};!n&&t.mixins.length&&t.mixins.forEach(a),e.extends&&a(e.extends),e.mixins&&e.mixins.forEach(a)}if(!i&&!c)return Z(e)&&s.set(e,vt),vt;if(j(i))for(let a=0;ae[0]==="_"||e==="$stable",ys=e=>j(e)?e.map($e):[$e(e)],ol=(e,t,n)=>{if(t._n)return t;const s=Mo((...r)=>ys(t(...r)),n);return s._c=!1,s},hi=(e,t,n)=>{const s=e._ctx;for(const r in e){if(ai(r))continue;const i=e[r];if(D(i))t[r]=ol(r,i,s);else if(i!=null){const o=ys(i);t[r]=()=>o}}},di=(e,t)=>{const n=ys(t);e.slots.default=()=>n},pi=(e,t,n)=>{for(const s in t)(n||s!=="_")&&(e[s]=t[s])},ll=(e,t,n)=>{const s=e.slots=li();if(e.vnode.shapeFlag&32){const r=t._;r?(pi(s,t,n),n&&wr(s,"_",r,!0)):hi(t,s)}else t&&di(e,t)},cl=(e,t,n)=>{const{vnode:s,slots:r}=e;let i=!0,o=X;if(s.shapeFlag&32){const l=t._;l?n&&l===1?i=!1:pi(r,t,n):(i=!t.$stable,hi(t,r)),o=t}else t&&(di(e,t),o={default:1});if(i)for(const l in r)!ai(l)&&o[l]==null&&delete r[l]},ge=El;function fl(e){return ul(e)}function ul(e,t){const n=vn();n.__VUE__=!0;const{insert:s,remove:r,patchProp:i,createElement:o,createText:l,createComment:c,setText:h,setElementText:a,parentNode:d,nextSibling:g,setScopeId:m=He,insertStaticContent:A}=e,O=(f,u,p,_=null,b=null,v=null,S=void 0,w=null,E=!!u.dynamicChildren)=>{if(f===u)return;f&&!Tt(f,u)&&(_=y(f),ae(f,b,v,!0),f=null),u.patchFlag===-2&&(E=!1,u.dynamicChildren=null);const{type:x,ref:N,shapeFlag:P}=u;switch(x){case Rn:B(f,u,p,_);break;case Wt:L(f,u,p,_);break;case $n:f==null&&M(u,p,_,S);break;case Ee:it(f,u,p,_,b,v,S,w,E);break;default:P&1?z(f,u,p,_,b,v,S,w,E):P&6?Ae(f,u,p,_,b,v,S,w,E):(P&64||P&128)&&x.process(f,u,p,_,b,v,S,w,E,I)}N!=null&&b&&hn(N,f&&f.ref,v,u||f,!u)},B=(f,u,p,_)=>{if(f==null)s(u.el=l(u.children),p,_);else{const b=u.el=f.el;u.children!==f.children&&h(b,u.children)}},L=(f,u,p,_)=>{f==null?s(u.el=c(u.children||""),p,_):u.el=f.el},M=(f,u,p,_)=>{[f.el,f.anchor]=A(f.children,u,p,_,f.el,f.anchor)},$=({el:f,anchor:u},p,_)=>{let b;for(;f&&f!==u;)b=g(f),s(f,p,_),f=b;s(u,p,_)},T=({el:f,anchor:u})=>{let p;for(;f&&f!==u;)p=g(f),r(f),f=p;r(u)},z=(f,u,p,_,b,v,S,w,E)=>{u.type==="svg"?S="svg":u.type==="math"&&(S="mathml"),f==null?se(u,p,_,b,v,S,w,E):qe(f,u,b,v,S,w,E)},se=(f,u,p,_,b,v,S,w)=>{let E,x;const{props:N,shapeFlag:P,transition:F,dirs:H}=f;if(E=f.el=o(f.type,v,N&&N.is,N),P&8?a(E,f.children):P&16&&Pe(f.children,E,null,_,b,Ln(f,v),S,w),H&&ot(f,null,_,"created"),ee(E,f,f.scopeId,S,_),N){for(const Y in N)Y!=="value"&&!Ft(Y)&&i(E,Y,null,N[Y],v,_);"value"in N&&i(E,"value",null,N.value,v),(x=N.onVnodeBeforeMount)&&Fe(x,_,f)}H&&ot(f,null,_,"beforeMount");const U=al(b,F);U&&F.beforeEnter(E),s(E,u,p),((x=N&&N.onVnodeMounted)||U||H)&&ge(()=>{x&&Fe(x,_,f),U&&F.enter(E),H&&ot(f,null,_,"mounted")},b)},ee=(f,u,p,_,b)=>{if(p&&m(f,p),_)for(let v=0;v<_.length;v++)m(f,_[v]);if(b){let v=b.subTree;if(u===v||bi(v.type)&&(v.ssContent===u||v.ssFallback===u)){const S=b.vnode;ee(f,S,S.scopeId,S.slotScopeIds,b.parent)}}},Pe=(f,u,p,_,b,v,S,w,E=0)=>{for(let x=E;x{const w=u.el=f.el;let{patchFlag:E,dynamicChildren:x,dirs:N}=u;E|=f.patchFlag&16;const P=f.props||X,F=u.props||X;let H;if(p&<(p,!1),(H=F.onVnodeBeforeUpdate)&&Fe(H,p,u,f),N&&ot(u,f,p,"beforeUpdate"),p&<(p,!0),(P.innerHTML&&F.innerHTML==null||P.textContent&&F.textContent==null)&&a(w,""),x?Ce(f.dynamicChildren,x,w,p,_,Ln(u,b),v):S||V(f,u,w,null,p,_,Ln(u,b),v,!1),E>0){if(E&16)Ge(w,P,F,p,b);else if(E&2&&P.class!==F.class&&i(w,"class",null,F.class,b),E&4&&i(w,"style",P.style,F.style,b),E&8){const U=u.dynamicProps;for(let Y=0;Y{H&&Fe(H,p,u,f),N&&ot(u,f,p,"updated")},_)},Ce=(f,u,p,_,b,v,S)=>{for(let w=0;w{if(u!==p){if(u!==X)for(const v in u)!Ft(v)&&!(v in p)&&i(f,v,u[v],null,b,_);for(const v in p){if(Ft(v))continue;const S=p[v],w=u[v];S!==w&&v!=="value"&&i(f,v,w,S,b,_)}"value"in p&&i(f,"value",u.value,p.value,b)}},it=(f,u,p,_,b,v,S,w,E)=>{const x=u.el=f?f.el:l(""),N=u.anchor=f?f.anchor:l("");let{patchFlag:P,dynamicChildren:F,slotScopeIds:H}=u;H&&(w=w?w.concat(H):H),f==null?(s(x,p,_),s(N,p,_),Pe(u.children||[],p,N,b,v,S,w,E)):P>0&&P&64&&F&&f.dynamicChildren?(Ce(f.dynamicChildren,F,p,b,v,S,w),(u.key!=null||b&&u===b.subTree)&&gi(f,u,!0)):V(f,u,p,N,b,v,S,w,E)},Ae=(f,u,p,_,b,v,S,w,E)=>{u.slotScopeIds=w,f==null?u.shapeFlag&512?b.ctx.activate(u,p,_,S,E):Ct(u,p,_,b,v,S,E):dt(f,u,E)},Ct=(f,u,p,_,b,v,S)=>{const w=f.component=Tl(f,_,b);if(ei(f)&&(w.ctx.renderer=I),Il(w,!1,S),w.asyncDep){if(b&&b.registerDep(w,ne,S),!f.el){const E=w.subTree=be(Wt);L(null,E,u,p)}}else ne(w,f,u,p,b,v,S)},dt=(f,u,p)=>{const _=u.component=f.component;if(bl(f,u,p))if(_.asyncDep&&!_.asyncResolved){G(_,u,p);return}else _.next=u,_.update();else u.el=f.el,_.vnode=u},ne=(f,u,p,_,b,v,S)=>{const w=()=>{if(f.isMounted){let{next:P,bu:F,u:H,parent:U,vnode:Y}=f;{const Ie=mi(f);if(Ie){P&&(P.el=Y.el,G(f,P,S)),Ie.asyncDep.then(()=>{f.isUnmounted||w()});return}}let q=P,de;lt(f,!1),P?(P.el=Y.el,G(f,P,S)):P=Y,F&&An(F),(de=P.props&&P.props.onVnodeBeforeUpdate)&&Fe(de,U,P,Y),lt(f,!0);const he=Ns(f),Te=f.subTree;f.subTree=he,O(Te,he,d(Te.el),y(Te),f,b,v),P.el=he.el,q===null&&xl(f,he.el),H&&ge(H,b),(de=P.props&&P.props.onVnodeUpdated)&&ge(()=>Fe(de,U,P,Y),b)}else{let P;const{el:F,props:H}=u,{bm:U,m:Y,parent:q,root:de,type:he}=f,Te=Nt(u);lt(f,!1),U&&An(U),!Te&&(P=H&&H.onVnodeBeforeMount)&&Fe(P,q,u),lt(f,!0);{de.ce&&de.ce._injectChildStyle(he);const Ie=f.subTree=Ns(f);O(null,Ie,p,_,f,b,v),u.el=Ie.el}if(Y&&ge(Y,b),!Te&&(P=H&&H.onVnodeMounted)){const Ie=u;ge(()=>Fe(P,q,Ie),b)}(u.shapeFlag&256||q&&Nt(q.vnode)&&q.vnode.shapeFlag&256)&&f.a&&ge(f.a,b),f.isMounted=!0,u=p=_=null}};f.scope.on();const E=f.effect=new Ar(w);f.scope.off();const x=f.update=E.run.bind(E),N=f.job=E.runIfDirty.bind(E);N.i=f,N.id=f.uid,E.scheduler=()=>ms(N),lt(f,!0),x()},G=(f,u,p)=>{u.component=f;const _=f.vnode.props;f.vnode=u,f.next=null,rl(f,u.props,_,p),cl(f,u.children,p),st(),Os(f),rt()},V=(f,u,p,_,b,v,S,w,E=!1)=>{const x=f&&f.children,N=f?f.shapeFlag:0,P=u.children,{patchFlag:F,shapeFlag:H}=u;if(F>0){if(F&128){ze(x,P,p,_,b,v,S,w,E);return}else if(F&256){De(x,P,p,_,b,v,S,w,E);return}}H&8?(N&16&&ve(x,b,v),P!==x&&a(p,P)):N&16?H&16?ze(x,P,p,_,b,v,S,w,E):ve(x,b,v,!0):(N&8&&a(p,""),H&16&&Pe(P,p,_,b,v,S,w,E))},De=(f,u,p,_,b,v,S,w,E)=>{f=f||vt,u=u||vt;const x=f.length,N=u.length,P=Math.min(x,N);let F;for(F=0;FN?ve(f,b,v,!0,!1,P):Pe(u,p,_,b,v,S,w,E,P)},ze=(f,u,p,_,b,v,S,w,E)=>{let x=0;const N=u.length;let P=f.length-1,F=N-1;for(;x<=P&&x<=F;){const H=f[x],U=u[x]=E?Je(u[x]):$e(u[x]);if(Tt(H,U))O(H,U,p,null,b,v,S,w,E);else break;x++}for(;x<=P&&x<=F;){const H=f[P],U=u[F]=E?Je(u[F]):$e(u[F]);if(Tt(H,U))O(H,U,p,null,b,v,S,w,E);else break;P--,F--}if(x>P){if(x<=F){const H=F+1,U=HF)for(;x<=P;)ae(f[x],b,v,!0),x++;else{const H=x,U=x,Y=new Map;for(x=U;x<=F;x++){const pe=u[x]=E?Je(u[x]):$e(u[x]);pe.key!=null&&Y.set(pe.key,x)}let q,de=0;const he=F-U+1;let Te=!1,Ie=0;const At=new Array(he);for(x=0;x=he){ae(pe,b,v,!0);continue}let Me;if(pe.key!=null)Me=Y.get(pe.key);else for(q=U;q<=F;q++)if(At[q-U]===0&&Tt(pe,u[q])){Me=q;break}Me===void 0?ae(pe,b,v,!0):(At[Me-U]=x+1,Me>=Ie?Ie=Me:Te=!0,O(pe,u[Me],p,null,b,v,S,w,E),de++)}const Ss=Te?hl(At):vt;for(q=Ss.length-1,x=he-1;x>=0;x--){const pe=U+x,Me=u[pe],Rs=pe+1{const{el:v,type:S,transition:w,children:E,shapeFlag:x}=f;if(x&6){Oe(f.component.subTree,u,p,_);return}if(x&128){f.suspense.move(u,p,_);return}if(x&64){S.move(f,u,p,I);return}if(S===Ee){s(v,u,p);for(let P=0;Pw.enter(v),b);else{const{leave:P,delayLeave:F,afterLeave:H}=w,U=()=>s(v,u,p),Y=()=>{P(v,()=>{U(),H&&H()})};F?F(v,U,Y):Y()}else s(v,u,p)},ae=(f,u,p,_=!1,b=!1)=>{const{type:v,props:S,ref:w,children:E,dynamicChildren:x,shapeFlag:N,patchFlag:P,dirs:F,cacheIndex:H}=f;if(P===-2&&(b=!1),w!=null&&hn(w,null,p,f,!0),H!=null&&(u.renderCache[H]=void 0),N&256){u.ctx.deactivate(f);return}const U=N&1&&F,Y=!Nt(f);let q;if(Y&&(q=S&&S.onVnodeBeforeUnmount)&&Fe(q,u,f),N&6)Zt(f.component,p,_);else{if(N&128){f.suspense.unmount(p,_);return}U&&ot(f,null,u,"beforeUnmount"),N&64?f.type.remove(f,u,p,I,_):x&&!x.hasOnce&&(v!==Ee||P>0&&P&64)?ve(x,u,p,!1,!0):(v===Ee&&P&384||!b&&N&16)&&ve(E,u,p),_&&pt(f)}(Y&&(q=S&&S.onVnodeUnmounted)||U)&&ge(()=>{q&&Fe(q,u,f),U&&ot(f,null,u,"unmounted")},p)},pt=f=>{const{type:u,el:p,anchor:_,transition:b}=f;if(u===Ee){gt(p,_);return}if(u===$n){T(f);return}const v=()=>{r(p),b&&!b.persisted&&b.afterLeave&&b.afterLeave()};if(f.shapeFlag&1&&b&&!b.persisted){const{leave:S,delayLeave:w}=b,E=()=>S(p,v);w?w(f.el,v,E):E()}else v()},gt=(f,u)=>{let p;for(;f!==u;)p=g(f),r(f),f=p;r(u)},Zt=(f,u,p)=>{const{bum:_,scope:b,job:v,subTree:S,um:w,m:E,a:x}=f;$s(E),$s(x),_&&An(_),b.stop(),v&&(v.flags|=8,ae(S,f,u,p)),w&&ge(w,u),ge(()=>{f.isUnmounted=!0},u),u&&u.pendingBranch&&!u.isUnmounted&&f.asyncDep&&!f.asyncResolved&&f.suspenseId===u.pendingId&&(u.deps--,u.deps===0&&u.resolve())},ve=(f,u,p,_=!1,b=!1,v=0)=>{for(let S=v;S{if(f.shapeFlag&6)return y(f.component.subTree);if(f.shapeFlag&128)return f.suspense.next();const u=g(f.anchor||f.el),p=u&&u[Fo];return p?g(p):u};let C=!1;const R=(f,u,p)=>{f==null?u._vnode&&ae(u._vnode,null,null,!0):O(u._vnode||null,f,u,null,null,null,p),u._vnode=f,C||(C=!0,Os(),Yr(),C=!1)},I={p:O,um:ae,m:Oe,r:pt,mt:Ct,mc:Pe,pc:V,pbc:Ce,n:y,o:e};return{render:R,hydrate:void 0,createApp:nl(R)}}function Ln({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function lt({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function al(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function gi(e,t,n=!1){const s=e.children,r=t.children;if(j(s)&&j(r))for(let i=0;i>1,e[n[l]]0&&(t[s]=n[i-1]),n[i]=s)}}for(i=n.length,o=n[i-1];i-- >0;)n[i]=o,o=t[o];return n}function mi(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:mi(t)}function $s(e){if(e)for(let t=0;tke(dl);function on(e,t,n){return _i(e,t,n)}function _i(e,t,n=X){const{immediate:s,deep:r,flush:i,once:o}=n,l=le({},n),c=t&&s||!t&&i!=="post";let h;if(Gt){if(i==="sync"){const m=pl();h=m.__watcherHandles||(m.__watcherHandles=[])}else if(!c){const m=()=>{};return m.stop=He,m.resume=He,m.pause=He,m}}const a=ue;l.call=(m,A,O)=>je(m,a,A,O);let d=!1;i==="post"?l.scheduler=m=>{ge(m,a&&a.suspense)}:i!=="sync"&&(d=!0,l.scheduler=(m,A)=>{A?m():ms(m)}),l.augmentJob=m=>{t&&(m.flags|=4),d&&(m.flags|=2,a&&(m.id=a.uid,m.i=a))};const g=Ao(e,t,l);return Gt&&(h?h.push(g):c&&g()),g}function gl(e,t,n){const s=this.proxy,r=te(e)?e.includes(".")?yi(s,e):()=>s[e]:e.bind(s,s);let i;D(t)?i=t:(i=t.handler,n=t);const o=Xt(this),l=_i(r,i.bind(s),n);return o(),l}function yi(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;rt==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${tt(t)}Modifiers`]||e[`${ht(t)}Modifiers`];function _l(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||X;let r=n;const i=t.startsWith("update:"),o=i&&ml(s,t.slice(7));o&&(o.trim&&(r=n.map(a=>te(a)?a.trim():a)),o.number&&(r=n.map(zi)));let l,c=s[l=Cn(t)]||s[l=Cn(tt(t))];!c&&i&&(c=s[l=Cn(ht(t))]),c&&je(c,e,6,r);const h=s[l+"Once"];if(h){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,je(h,e,6,r)}}function vi(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const i=e.emits;let o={},l=!1;if(!D(e)){const c=h=>{const a=vi(h,t,!0);a&&(l=!0,le(o,a))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!i&&!l?(Z(e)&&s.set(e,null),null):(j(i)?i.forEach(c=>o[c]=null):le(o,i),Z(e)&&s.set(e,o),o)}function Sn(e,t){return!e||!mn(t)?!1:(t=t.slice(2).replace(/Once$/,""),W(e,t[0].toLowerCase()+t.slice(1))||W(e,ht(t))||W(e,t))}function Ns(e){const{type:t,vnode:n,proxy:s,withProxy:r,propsOptions:[i],slots:o,attrs:l,emit:c,render:h,renderCache:a,props:d,data:g,setupState:m,ctx:A,inheritAttrs:O}=e,B=an(e);let L,M;try{if(n.shapeFlag&4){const T=r||s,z=T;L=$e(h.call(z,T,a,d,m,g,A)),M=l}else{const T=t;L=$e(T.length>1?T(d,{attrs:l,slots:o,emit:c}):T(d,null)),M=t.props?l:yl(l)}}catch(T){jt.length=0,En(T,e,1),L=be(Wt)}let $=L;if(M&&O!==!1){const T=Object.keys(M),{shapeFlag:z}=$;T.length&&z&7&&(i&&T.some(ss)&&(M=vl(M,i)),$=St($,M,!1,!0))}return n.dirs&&($=St($,null,!1,!0),$.dirs=$.dirs?$.dirs.concat(n.dirs):n.dirs),n.transition&&_s($,n.transition),L=$,an(B),L}const yl=e=>{let t;for(const n in e)(n==="class"||n==="style"||mn(n))&&((t||(t={}))[n]=e[n]);return t},vl=(e,t)=>{const n={};for(const s in e)(!ss(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function bl(e,t,n){const{props:s,children:r,component:i}=e,{props:o,children:l,patchFlag:c}=t,h=i.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return s?Hs(s,o,h):!!o;if(c&8){const a=t.dynamicProps;for(let d=0;de.__isSuspense;function El(e,t){t&&t.pendingBranch?j(e)?t.effects.push(...e):t.effects.push(e):Io(e)}const Ee=Symbol.for("v-fgt"),Rn=Symbol.for("v-txt"),Wt=Symbol.for("v-cmt"),$n=Symbol.for("v-stc"),jt=[];let ye=null;function Dt(e=!1){jt.push(ye=e?null:[])}function wl(){jt.pop(),ye=jt[jt.length-1]||null}let qt=1;function js(e,t=!1){qt+=e,e<0&&ye&&t&&(ye.hasOnce=!0)}function xi(e){return e.dynamicChildren=qt>0?ye||vt:null,wl(),qt>0&&ye&&ye.push(e),e}function Nn(e,t,n,s,r,i){return xi(me(e,t,n,s,r,i,!0))}function Ei(e,t,n,s,r){return xi(be(e,t,n,s,r,!0))}function pn(e){return e?e.__v_isVNode===!0:!1}function Tt(e,t){return e.type===t.type&&e.key===t.key}const wi=({key:e})=>e??null,ln=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?te(e)||oe(e)||D(e)?{i:Ne,r:e,k:t,f:!!n}:e:null);function me(e,t=null,n=null,s=0,r=null,i=e===Ee?0:1,o=!1,l=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&wi(t),ref:t&&ln(t),scopeId:Xr,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:Ne};return l?(vs(c,n),i&128&&e.normalize(c)):n&&(c.shapeFlag|=te(n)?8:16),qt>0&&!o&&ye&&(c.patchFlag>0||i&6)&&c.patchFlag!==32&&ye.push(c),c}const be=Sl;function Sl(e,t=null,n=null,s=0,r=null,i=!1){if((!e||e===Go)&&(e=Wt),pn(e)){const l=St(e,t,!0);return n&&vs(l,n),qt>0&&!i&&ye&&(l.shapeFlag&6?ye[ye.indexOf(e)]=l:ye.push(l)),l.patchFlag=-2,l}if($l(e)&&(e=e.__vccOpts),t){t=Rl(t);let{class:l,style:c}=t;l&&!te(l)&&(t.class=ls(l)),Z(c)&&(ps(c)&&!j(c)&&(c=le({},c)),t.style=os(c))}const o=te(e)?1:bi(e)?128:Lo(e)?64:Z(e)?4:D(e)?2:0;return me(e,t,n,s,r,o,i,!0)}function Rl(e){return e?ps(e)||ci(e)?le({},e):e:null}function St(e,t,n=!1,s=!1){const{props:r,ref:i,patchFlag:o,children:l,transition:c}=e,h=t?Cl(r||{},t):r,a={__v_isVNode:!0,__v_skip:!0,type:e.type,props:h,key:h&&wi(h),ref:t&&t.ref?n&&i?j(i)?i.concat(ln(t)):[i,ln(t)]:ln(t):i,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Ee?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&St(e.ssContent),ssFallback:e.ssFallback&&St(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&s&&_s(a,c.clone(a)),a}function Pl(e=" ",t=0){return be(Rn,null,e,t)}function $e(e){return e==null||typeof e=="boolean"?be(Wt):j(e)?be(Ee,null,e.slice()):pn(e)?Je(e):be(Rn,null,String(e))}function Je(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:St(e)}function vs(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(j(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),vs(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!ci(t)?t._ctx=Ne:r===3&&Ne&&(Ne.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else D(t)?(t={default:t,_ctx:Ne},n=32):(t=String(t),s&64?(n=16,t=[Pl(t)]):n=8);e.children=t,e.shapeFlag|=n}function Cl(...e){const t={};for(let n=0;n{let r;return(r=e[n])||(r=e[n]=[]),r.push(s),i=>{r.length>1?r.forEach(o=>o(i)):r[0](i)}};gn=t("__VUE_INSTANCE_SETTERS__",n=>ue=n),Jn=t("__VUE_SSR_SETTERS__",n=>Gt=n)}const Xt=e=>{const t=ue;return gn(e),e.scope.on(),()=>{e.scope.off(),gn(t)}},Ds=()=>{ue&&ue.scope.off(),gn(null)};function Si(e){return e.vnode.shapeFlag&4}let Gt=!1;function Il(e,t=!1,n=!1){t&&Jn(t);const{props:s,children:r}=e.vnode,i=Si(e);sl(e,s,i,t),ll(e,r,n);const o=i?Ml(e,t):void 0;return t&&Jn(!1),o}function Ml(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Qo);const{setup:s}=n;if(s){st();const r=e.setupContext=s.length>1?Ll(e):null,i=Xt(e),o=Yt(s,e,0,[e.props,r]),l=vr(o);if(rt(),i(),(l||e.sp)&&!Nt(e)&&Zr(e),l){if(o.then(Ds,Ds),t)return o.then(c=>{Bs(e,c)}).catch(c=>{En(c,e,0)});e.asyncDep=o}else Bs(e,o)}else Ri(e)}function Bs(e,t,n){D(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Z(t)&&(e.setupState=qr(t)),Ri(e)}function Ri(e,t,n){const s=e.type;e.render||(e.render=s.render||He);{const r=Xt(e);st();try{Yo(e)}finally{rt(),r()}}}const Fl={get(e,t){return re(e,"get",""),e[t]}};function Ll(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,Fl),slots:e.slots,emit:e.emit,expose:t}}function bs(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(qr(kr(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Ht)return Ht[n](e)},has(t,n){return n in t||n in Ht}})):e.proxy}function $l(e){return D(e)&&"__vccOpts"in e}const we=(e,t)=>Po(e,t,Gt);function Pi(e,t,n){const s=arguments.length;return s===2?Z(t)&&!j(t)?pn(t)?be(e,null,[t]):be(e,t):be(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&pn(n)&&(n=[n]),be(e,t,n))}const Nl="3.5.13";/** +* @vue/runtime-dom v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let Xn;const Us=typeof window<"u"&&window.trustedTypes;if(Us)try{Xn=Us.createPolicy("vue",{createHTML:e=>e})}catch{}const Ci=Xn?e=>Xn.createHTML(e):e=>e,Hl="http://www.w3.org/2000/svg",jl="http://www.w3.org/1998/Math/MathML",Ve=typeof document<"u"?document:null,Vs=Ve&&Ve.createElement("template"),Dl={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t==="svg"?Ve.createElementNS(Hl,e):t==="mathml"?Ve.createElementNS(jl,e):n?Ve.createElement(e,{is:n}):Ve.createElement(e);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>Ve.createTextNode(e),createComment:e=>Ve.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Ve.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,r,i){const o=n?n.previousSibling:t.lastChild;if(r&&(r===i||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===i||!(r=r.nextSibling)););else{Vs.innerHTML=Ci(s==="svg"?`${e}`:s==="mathml"?`${e}`:e);const l=Vs.content;if(s==="svg"||s==="mathml"){const c=l.firstChild;for(;c.firstChild;)l.appendChild(c.firstChild);l.removeChild(c)}t.insertBefore(l,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Bl=Symbol("_vtc");function Ul(e,t,n){const s=e[Bl];s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Ks=Symbol("_vod"),Vl=Symbol("_vsh"),Kl=Symbol(""),kl=/(^|;)\s*display\s*:/;function Wl(e,t,n){const s=e.style,r=te(n);let i=!1;if(n&&!r){if(t)if(te(t))for(const o of t.split(";")){const l=o.slice(0,o.indexOf(":")).trim();n[l]==null&&cn(s,l,"")}else for(const o in t)n[o]==null&&cn(s,o,"");for(const o in n)o==="display"&&(i=!0),cn(s,o,n[o])}else if(r){if(t!==n){const o=s[Kl];o&&(n+=";"+o),s.cssText=n,i=kl.test(n)}}else t&&e.removeAttribute("style");Ks in e&&(e[Ks]=i?s.display:"",e[Vl]&&(s.display="none"))}const ks=/\s*!important$/;function cn(e,t,n){if(j(n))n.forEach(s=>cn(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=ql(e,t);ks.test(n)?e.setProperty(ht(s),n.replace(ks,""),"important"):e[s]=n}}const Ws=["Webkit","Moz","ms"],Hn={};function ql(e,t){const n=Hn[t];if(n)return n;let s=tt(t);if(s!=="filter"&&s in e)return Hn[t]=s;s=Er(s);for(let r=0;rjn||(Jl.then(()=>jn=0),jn=Date.now());function Zl(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;je(ec(s,n.value),t,5,[s])};return n.value=e,n.attached=Xl(),n}function ec(e,t){if(j(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const Js=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,tc=(e,t,n,s,r,i)=>{const o=r==="svg";t==="class"?Ul(e,s,o):t==="style"?Wl(e,n,s):mn(t)?ss(t)||Ql(e,t,n,s,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):nc(e,t,s,o))?(zs(e,t,s),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Gs(e,t,s,o,i,t!=="value")):e._isVueCE&&(/[A-Z]/.test(t)||!te(s))?zs(e,tt(t),s,i,t):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),Gs(e,t,s,o))};function nc(e,t,n,s){if(s)return!!(t==="innerHTML"||t==="textContent"||t in e&&Js(t)&&D(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const r=e.tagName;if(r==="IMG"||r==="VIDEO"||r==="CANVAS"||r==="SOURCE")return!1}return Js(t)&&te(n)?!1:t in e}const sc=le({patchProp:tc},Dl);let Xs;function rc(){return Xs||(Xs=fl(sc))}const ic=(...e)=>{const t=rc().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=lc(s);if(!r)return;const i=t._component;!D(i)&&!i.render&&!i.template&&(i.template=r.innerHTML),r.nodeType===1&&(r.textContent="");const o=n(r,!1,oc(r));return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),o},t};function oc(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function lc(e){return te(e)?document.querySelector(e):e}/*! + * pinia v3.0.2 + * (c) 2025 Eduardo San Martin Morote + * @license MIT + */const cc=Symbol();var Zs;(function(e){e.direct="direct",e.patchObject="patch object",e.patchFunction="patch function"})(Zs||(Zs={}));function fc(){const e=to(!0),t=e.run(()=>gs({}));let n=[],s=[];const r=kr({install(i){r._a=i,i.provide(cc,r),i.config.globalProperties.$pinia=r,s.forEach(o=>n.push(o)),s=[]},use(i){return this._a?n.push(i):s.push(i),this},_p:n,_a:null,_e:e,_s:new Map,state:t});return r}/*! + * vue-router v4.5.1 + * (c) 2025 Eduardo San Martin Morote + * @license MIT + */const yt=typeof document<"u";function Ai(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function uc(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&Ai(e.default)}const K=Object.assign;function Dn(e,t){const n={};for(const s in t){const r=t[s];n[s]=Re(r)?r.map(e):e(r)}return n}const Bt=()=>{},Re=Array.isArray,Oi=/#/g,ac=/&/g,hc=/\//g,dc=/=/g,pc=/\?/g,Ti=/\+/g,gc=/%5B/g,mc=/%5D/g,Ii=/%5E/g,_c=/%60/g,Mi=/%7B/g,yc=/%7C/g,Fi=/%7D/g,vc=/%20/g;function xs(e){return encodeURI(""+e).replace(yc,"|").replace(gc,"[").replace(mc,"]")}function bc(e){return xs(e).replace(Mi,"{").replace(Fi,"}").replace(Ii,"^")}function Zn(e){return xs(e).replace(Ti,"%2B").replace(vc,"+").replace(Oi,"%23").replace(ac,"%26").replace(_c,"`").replace(Mi,"{").replace(Fi,"}").replace(Ii,"^")}function xc(e){return Zn(e).replace(dc,"%3D")}function Ec(e){return xs(e).replace(Oi,"%23").replace(pc,"%3F")}function wc(e){return e==null?"":Ec(e).replace(hc,"%2F")}function zt(e){try{return decodeURIComponent(""+e)}catch{}return""+e}const Sc=/\/$/,Rc=e=>e.replace(Sc,"");function Bn(e,t,n="/"){let s,r={},i="",o="";const l=t.indexOf("#");let c=t.indexOf("?");return l=0&&(c=-1),c>-1&&(s=t.slice(0,c),i=t.slice(c+1,l>-1?l:t.length),r=e(i)),l>-1&&(s=s||t.slice(0,l),o=t.slice(l,t.length)),s=Oc(s??t,n),{fullPath:s+(i&&"?")+i+o,path:s,query:r,hash:zt(o)}}function Pc(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function er(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Cc(e,t,n){const s=t.matched.length-1,r=n.matched.length-1;return s>-1&&s===r&&Rt(t.matched[s],n.matched[r])&&Li(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Rt(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Li(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!Ac(e[n],t[n]))return!1;return!0}function Ac(e,t){return Re(e)?tr(e,t):Re(t)?tr(t,e):e===t}function tr(e,t){return Re(t)?e.length===t.length&&e.every((n,s)=>n===t[s]):e.length===1&&e[0]===t}function Oc(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),s=e.split("/"),r=s[s.length-1];(r===".."||r===".")&&s.push("");let i=n.length-1,o,l;for(o=0;o1&&i--;else break;return n.slice(0,i).join("/")+"/"+s.slice(o).join("/")}const Qe={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};var Qt;(function(e){e.pop="pop",e.push="push"})(Qt||(Qt={}));var Ut;(function(e){e.back="back",e.forward="forward",e.unknown=""})(Ut||(Ut={}));function Tc(e){if(!e)if(yt){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Rc(e)}const Ic=/^[^#]+#/;function Mc(e,t){return e.replace(Ic,"#")+t}function Fc(e,t){const n=document.documentElement.getBoundingClientRect(),s=e.getBoundingClientRect();return{behavior:t.behavior,left:s.left-n.left-(t.left||0),top:s.top-n.top-(t.top||0)}}const Pn=()=>({left:window.scrollX,top:window.scrollY});function Lc(e){let t;if("el"in e){const n=e.el,s=typeof n=="string"&&n.startsWith("#"),r=typeof n=="string"?s?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!r)return;t=Fc(r,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function nr(e,t){return(history.state?history.state.position-t:-1)+e}const es=new Map;function $c(e,t){es.set(e,t)}function Nc(e){const t=es.get(e);return es.delete(e),t}let Hc=()=>location.protocol+"//"+location.host;function $i(e,t){const{pathname:n,search:s,hash:r}=t,i=e.indexOf("#");if(i>-1){let l=r.includes(e.slice(i))?e.slice(i).length:1,c=r.slice(l);return c[0]!=="/"&&(c="/"+c),er(c,"")}return er(n,e)+s+r}function jc(e,t,n,s){let r=[],i=[],o=null;const l=({state:g})=>{const m=$i(e,location),A=n.value,O=t.value;let B=0;if(g){if(n.value=m,t.value=g,o&&o===A){o=null;return}B=O?g.position-O.position:0}else s(m);r.forEach(L=>{L(n.value,A,{delta:B,type:Qt.pop,direction:B?B>0?Ut.forward:Ut.back:Ut.unknown})})};function c(){o=n.value}function h(g){r.push(g);const m=()=>{const A=r.indexOf(g);A>-1&&r.splice(A,1)};return i.push(m),m}function a(){const{history:g}=window;g.state&&g.replaceState(K({},g.state,{scroll:Pn()}),"")}function d(){for(const g of i)g();i=[],window.removeEventListener("popstate",l),window.removeEventListener("beforeunload",a)}return window.addEventListener("popstate",l),window.addEventListener("beforeunload",a,{passive:!0}),{pauseListeners:c,listen:h,destroy:d}}function sr(e,t,n,s=!1,r=!1){return{back:e,current:t,forward:n,replaced:s,position:window.history.length,scroll:r?Pn():null}}function Dc(e){const{history:t,location:n}=window,s={value:$i(e,n)},r={value:t.state};r.value||i(s.value,{back:null,current:s.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function i(c,h,a){const d=e.indexOf("#"),g=d>-1?(n.host&&document.querySelector("base")?e:e.slice(d))+c:Hc()+e+c;try{t[a?"replaceState":"pushState"](h,"",g),r.value=h}catch(m){console.error(m),n[a?"replace":"assign"](g)}}function o(c,h){const a=K({},t.state,sr(r.value.back,c,r.value.forward,!0),h,{position:r.value.position});i(c,a,!0),s.value=c}function l(c,h){const a=K({},r.value,t.state,{forward:c,scroll:Pn()});i(a.current,a,!0);const d=K({},sr(s.value,c,null),{position:a.position+1},h);i(c,d,!1),s.value=c}return{location:s,state:r,push:l,replace:o}}function Bc(e){e=Tc(e);const t=Dc(e),n=jc(e,t.state,t.location,t.replace);function s(i,o=!0){o||n.pauseListeners(),history.go(i)}const r=K({location:"",base:e,go:s,createHref:Mc.bind(null,e)},t,n);return Object.defineProperty(r,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(r,"state",{enumerable:!0,get:()=>t.state.value}),r}function Uc(e){return typeof e=="string"||e&&typeof e=="object"}function Ni(e){return typeof e=="string"||typeof e=="symbol"}const Hi=Symbol("");var rr;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(rr||(rr={}));function Pt(e,t){return K(new Error,{type:e,[Hi]:!0},t)}function Ue(e,t){return e instanceof Error&&Hi in e&&(t==null||!!(e.type&t))}const ir="[^/]+?",Vc={sensitive:!1,strict:!1,start:!0,end:!0},Kc=/[.+*?^${}()[\]/\\]/g;function kc(e,t){const n=K({},Vc,t),s=[];let r=n.start?"^":"";const i=[];for(const h of e){const a=h.length?[]:[90];n.strict&&!h.length&&(r+="/");for(let d=0;dt.length?t.length===1&&t[0]===80?1:-1:0}function ji(e,t){let n=0;const s=e.score,r=t.score;for(;n0&&t[t.length-1]<0}const qc={type:0,value:""},Gc=/[a-zA-Z0-9_]/;function zc(e){if(!e)return[[]];if(e==="/")return[[qc]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(m){throw new Error(`ERR (${n})/"${h}": ${m}`)}let n=0,s=n;const r=[];let i;function o(){i&&r.push(i),i=[]}let l=0,c,h="",a="";function d(){h&&(n===0?i.push({type:0,value:h}):n===1||n===2||n===3?(i.length>1&&(c==="*"||c==="+")&&t(`A repeatable param (${h}) must be alone in its segment. eg: '/:ids+.`),i.push({type:1,value:h,regexp:a,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):t("Invalid state to consume buffer"),h="")}function g(){h+=c}for(;l{o($)}:Bt}function o(d){if(Ni(d)){const g=s.get(d);g&&(s.delete(d),n.splice(n.indexOf(g),1),g.children.forEach(o),g.alias.forEach(o))}else{const g=n.indexOf(d);g>-1&&(n.splice(g,1),d.record.name&&s.delete(d.record.name),d.children.forEach(o),d.alias.forEach(o))}}function l(){return n}function c(d){const g=Zc(d,n);n.splice(g,0,d),d.record.name&&!fr(d)&&s.set(d.record.name,d)}function h(d,g){let m,A={},O,B;if("name"in d&&d.name){if(m=s.get(d.name),!m)throw Pt(1,{location:d});B=m.record.name,A=K(lr(g.params,m.keys.filter($=>!$.optional).concat(m.parent?m.parent.keys.filter($=>$.optional):[]).map($=>$.name)),d.params&&lr(d.params,m.keys.map($=>$.name))),O=m.stringify(A)}else if(d.path!=null)O=d.path,m=n.find($=>$.re.test(O)),m&&(A=m.parse(O),B=m.record.name);else{if(m=g.name?s.get(g.name):n.find($=>$.re.test(g.path)),!m)throw Pt(1,{location:d,currentLocation:g});B=m.record.name,A=K({},g.params,d.params),O=m.stringify(A)}const L=[];let M=m;for(;M;)L.unshift(M.record),M=M.parent;return{name:B,path:O,params:A,matched:L,meta:Xc(L)}}e.forEach(d=>i(d));function a(){n.length=0,s.clear()}return{addRoute:i,resolve:h,removeRoute:o,clearRoutes:a,getRoutes:l,getRecordMatcher:r}}function lr(e,t){const n={};for(const s of t)s in e&&(n[s]=e[s]);return n}function cr(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:Jc(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}};return Object.defineProperty(t,"mods",{value:{}}),t}function Jc(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const s in e.components)t[s]=typeof n=="object"?n[s]:n;return t}function fr(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function Xc(e){return e.reduce((t,n)=>K(t,n.meta),{})}function ur(e,t){const n={};for(const s in e)n[s]=s in t?t[s]:e[s];return n}function Zc(e,t){let n=0,s=t.length;for(;n!==s;){const i=n+s>>1;ji(e,t[i])<0?s=i:n=i+1}const r=ef(e);return r&&(s=t.lastIndexOf(r,s-1)),s}function ef(e){let t=e;for(;t=t.parent;)if(Di(t)&&ji(e,t)===0)return t}function Di({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function tf(e){const t={};if(e===""||e==="?")return t;const s=(e[0]==="?"?e.slice(1):e).split("&");for(let r=0;ri&&Zn(i)):[s&&Zn(s)]).forEach(i=>{i!==void 0&&(t+=(t.length?"&":"")+n,i!=null&&(t+="="+i))})}return t}function nf(e){const t={};for(const n in e){const s=e[n];s!==void 0&&(t[n]=Re(s)?s.map(r=>r==null?null:""+r):s==null?s:""+s)}return t}const sf=Symbol(""),hr=Symbol(""),Es=Symbol(""),Bi=Symbol(""),ts=Symbol("");function It(){let e=[];function t(s){return e.push(s),()=>{const r=e.indexOf(s);r>-1&&e.splice(r,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function Xe(e,t,n,s,r,i=o=>o()){const o=s&&(s.enterCallbacks[r]=s.enterCallbacks[r]||[]);return()=>new Promise((l,c)=>{const h=g=>{g===!1?c(Pt(4,{from:n,to:t})):g instanceof Error?c(g):Uc(g)?c(Pt(2,{from:t,to:g})):(o&&s.enterCallbacks[r]===o&&typeof g=="function"&&o.push(g),l())},a=i(()=>e.call(s&&s.instances[r],t,n,h));let d=Promise.resolve(a);e.length<3&&(d=d.then(h)),d.catch(g=>c(g))})}function Un(e,t,n,s,r=i=>i()){const i=[];for(const o of e)for(const l in o.components){let c=o.components[l];if(!(t!=="beforeRouteEnter"&&!o.instances[l]))if(Ai(c)){const a=(c.__vccOpts||c)[t];a&&i.push(Xe(a,n,s,o,l,r))}else{let h=c();i.push(()=>h.then(a=>{if(!a)throw new Error(`Couldn't resolve component "${l}" at "${o.path}"`);const d=uc(a)?a.default:a;o.mods[l]=a,o.components[l]=d;const m=(d.__vccOpts||d)[t];return m&&Xe(m,n,s,o,l,r)()}))}}return i}function dr(e){const t=ke(Es),n=ke(Bi),s=we(()=>{const c=ut(e.to);return t.resolve(c)}),r=we(()=>{const{matched:c}=s.value,{length:h}=c,a=c[h-1],d=n.matched;if(!a||!d.length)return-1;const g=d.findIndex(Rt.bind(null,a));if(g>-1)return g;const m=pr(c[h-2]);return h>1&&pr(a)===m&&d[d.length-1].path!==m?d.findIndex(Rt.bind(null,c[h-2])):g}),i=we(()=>r.value>-1&&ff(n.params,s.value.params)),o=we(()=>r.value>-1&&r.value===n.matched.length-1&&Li(n.params,s.value.params));function l(c={}){if(cf(c)){const h=t[ut(e.replace)?"replace":"push"](ut(e.to)).catch(Bt);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>h),h}return Promise.resolve()}return{route:s,href:we(()=>s.value.href),isActive:i,isExactActive:o,navigate:l}}function rf(e){return e.length===1?e[0]:e}const of=Jt({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"},viewTransition:Boolean},useLink:dr,setup(e,{slots:t}){const n=xn(dr(e)),{options:s}=ke(Es),r=we(()=>({[gr(e.activeClass,s.linkActiveClass,"router-link-active")]:n.isActive,[gr(e.exactActiveClass,s.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const i=t.default&&rf(t.default(n));return e.custom?i:Pi("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:r.value},i)}}}),lf=of;function cf(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function ff(e,t){for(const n in t){const s=t[n],r=e[n];if(typeof s=="string"){if(s!==r)return!1}else if(!Re(r)||r.length!==s.length||s.some((i,o)=>i!==r[o]))return!1}return!0}function pr(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const gr=(e,t,n)=>e??t??n,uf=Jt({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const s=ke(ts),r=we(()=>e.route||s.value),i=ke(hr,0),o=we(()=>{let h=ut(i);const{matched:a}=r.value;let d;for(;(d=a[h])&&!d.components;)h++;return h}),l=we(()=>r.value.matched[o.value]);rn(hr,we(()=>o.value+1)),rn(sf,l),rn(ts,r);const c=gs();return on(()=>[c.value,l.value,e.name],([h,a,d],[g,m,A])=>{a&&(a.instances[d]=h,m&&m!==a&&h&&h===g&&(a.leaveGuards.size||(a.leaveGuards=m.leaveGuards),a.updateGuards.size||(a.updateGuards=m.updateGuards))),h&&a&&(!m||!Rt(a,m)||!g)&&(a.enterCallbacks[d]||[]).forEach(O=>O(h))},{flush:"post"}),()=>{const h=r.value,a=e.name,d=l.value,g=d&&d.components[a];if(!g)return mr(n.default,{Component:g,route:h});const m=d.props[a],A=m?m===!0?h.params:typeof m=="function"?m(h):m:null,B=Pi(g,K({},A,t,{onVnodeUnmounted:L=>{L.component.isUnmounted&&(d.instances[a]=null)},ref:c}));return mr(n.default,{Component:B,route:h})||B}}});function mr(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const Ui=uf;function af(e){const t=Yc(e.routes,e),n=e.parseQuery||tf,s=e.stringifyQuery||ar,r=e.history,i=It(),o=It(),l=It(),c=Eo(Qe);let h=Qe;yt&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const a=Dn.bind(null,y=>""+y),d=Dn.bind(null,wc),g=Dn.bind(null,zt);function m(y,C){let R,I;return Ni(y)?(R=t.getRecordMatcher(y),I=C):I=y,t.addRoute(I,R)}function A(y){const C=t.getRecordMatcher(y);C&&t.removeRoute(C)}function O(){return t.getRoutes().map(y=>y.record)}function B(y){return!!t.getRecordMatcher(y)}function L(y,C){if(C=K({},C||c.value),typeof y=="string"){const p=Bn(n,y,C.path),_=t.resolve({path:p.path},C),b=r.createHref(p.fullPath);return K(p,_,{params:g(_.params),hash:zt(p.hash),redirectedFrom:void 0,href:b})}let R;if(y.path!=null)R=K({},y,{path:Bn(n,y.path,C.path).path});else{const p=K({},y.params);for(const _ in p)p[_]==null&&delete p[_];R=K({},y,{params:d(p)}),C.params=d(C.params)}const I=t.resolve(R,C),Q=y.hash||"";I.params=a(g(I.params));const f=Pc(s,K({},y,{hash:bc(Q),path:I.path})),u=r.createHref(f);return K({fullPath:f,hash:Q,query:s===ar?nf(y.query):y.query||{}},I,{redirectedFrom:void 0,href:u})}function M(y){return typeof y=="string"?Bn(n,y,c.value.path):K({},y)}function $(y,C){if(h!==y)return Pt(8,{from:C,to:y})}function T(y){return ee(y)}function z(y){return T(K(M(y),{replace:!0}))}function se(y){const C=y.matched[y.matched.length-1];if(C&&C.redirect){const{redirect:R}=C;let I=typeof R=="function"?R(y):R;return typeof I=="string"&&(I=I.includes("?")||I.includes("#")?I=M(I):{path:I},I.params={}),K({query:y.query,hash:y.hash,params:I.path!=null?{}:y.params},I)}}function ee(y,C){const R=h=L(y),I=c.value,Q=y.state,f=y.force,u=y.replace===!0,p=se(R);if(p)return ee(K(M(p),{state:typeof p=="object"?K({},Q,p.state):Q,force:f,replace:u}),C||R);const _=R;_.redirectedFrom=C;let b;return!f&&Cc(s,I,R)&&(b=Pt(16,{to:_,from:I}),Oe(I,I,!0,!1)),(b?Promise.resolve(b):Ce(_,I)).catch(v=>Ue(v)?Ue(v,2)?v:ze(v):V(v,_,I)).then(v=>{if(v){if(Ue(v,2))return ee(K({replace:u},M(v.to),{state:typeof v.to=="object"?K({},Q,v.to.state):Q,force:f}),C||_)}else v=it(_,I,!0,u,Q);return Ge(_,I,v),v})}function Pe(y,C){const R=$(y,C);return R?Promise.reject(R):Promise.resolve()}function qe(y){const C=gt.values().next().value;return C&&typeof C.runWithContext=="function"?C.runWithContext(y):y()}function Ce(y,C){let R;const[I,Q,f]=hf(y,C);R=Un(I.reverse(),"beforeRouteLeave",y,C);for(const p of I)p.leaveGuards.forEach(_=>{R.push(Xe(_,y,C))});const u=Pe.bind(null,y,C);return R.push(u),ve(R).then(()=>{R=[];for(const p of i.list())R.push(Xe(p,y,C));return R.push(u),ve(R)}).then(()=>{R=Un(Q,"beforeRouteUpdate",y,C);for(const p of Q)p.updateGuards.forEach(_=>{R.push(Xe(_,y,C))});return R.push(u),ve(R)}).then(()=>{R=[];for(const p of f)if(p.beforeEnter)if(Re(p.beforeEnter))for(const _ of p.beforeEnter)R.push(Xe(_,y,C));else R.push(Xe(p.beforeEnter,y,C));return R.push(u),ve(R)}).then(()=>(y.matched.forEach(p=>p.enterCallbacks={}),R=Un(f,"beforeRouteEnter",y,C,qe),R.push(u),ve(R))).then(()=>{R=[];for(const p of o.list())R.push(Xe(p,y,C));return R.push(u),ve(R)}).catch(p=>Ue(p,8)?p:Promise.reject(p))}function Ge(y,C,R){l.list().forEach(I=>qe(()=>I(y,C,R)))}function it(y,C,R,I,Q){const f=$(y,C);if(f)return f;const u=C===Qe,p=yt?history.state:{};R&&(I||u?r.replace(y.fullPath,K({scroll:u&&p&&p.scroll},Q)):r.push(y.fullPath,Q)),c.value=y,Oe(y,C,R,u),ze()}let Ae;function Ct(){Ae||(Ae=r.listen((y,C,R)=>{if(!Zt.listening)return;const I=L(y),Q=se(I);if(Q){ee(K(Q,{replace:!0,force:!0}),I).catch(Bt);return}h=I;const f=c.value;yt&&$c(nr(f.fullPath,R.delta),Pn()),Ce(I,f).catch(u=>Ue(u,12)?u:Ue(u,2)?(ee(K(M(u.to),{force:!0}),I).then(p=>{Ue(p,20)&&!R.delta&&R.type===Qt.pop&&r.go(-1,!1)}).catch(Bt),Promise.reject()):(R.delta&&r.go(-R.delta,!1),V(u,I,f))).then(u=>{u=u||it(I,f,!1),u&&(R.delta&&!Ue(u,8)?r.go(-R.delta,!1):R.type===Qt.pop&&Ue(u,20)&&r.go(-1,!1)),Ge(I,f,u)}).catch(Bt)}))}let dt=It(),ne=It(),G;function V(y,C,R){ze(y);const I=ne.list();return I.length?I.forEach(Q=>Q(y,C,R)):console.error(y),Promise.reject(y)}function De(){return G&&c.value!==Qe?Promise.resolve():new Promise((y,C)=>{dt.add([y,C])})}function ze(y){return G||(G=!y,Ct(),dt.list().forEach(([C,R])=>y?R(y):C()),dt.reset()),y}function Oe(y,C,R,I){const{scrollBehavior:Q}=e;if(!yt||!Q)return Promise.resolve();const f=!R&&Nc(nr(y.fullPath,0))||(I||!R)&&history.state&&history.state.scroll||null;return zr().then(()=>Q(y,C,f)).then(u=>u&&Lc(u)).catch(u=>V(u,y,C))}const ae=y=>r.go(y);let pt;const gt=new Set,Zt={currentRoute:c,listening:!0,addRoute:m,removeRoute:A,clearRoutes:t.clearRoutes,hasRoute:B,getRoutes:O,resolve:L,options:e,push:T,replace:z,go:ae,back:()=>ae(-1),forward:()=>ae(1),beforeEach:i.add,beforeResolve:o.add,afterEach:l.add,onError:ne.add,isReady:De,install(y){const C=this;y.component("RouterLink",lf),y.component("RouterView",Ui),y.config.globalProperties.$router=C,Object.defineProperty(y.config.globalProperties,"$route",{enumerable:!0,get:()=>ut(c)}),yt&&!pt&&c.value===Qe&&(pt=!0,T(r.location).catch(Q=>{}));const R={};for(const Q in Qe)Object.defineProperty(R,Q,{get:()=>c.value[Q],enumerable:!0});y.provide(Es,C),y.provide(Bi,Vr(R)),y.provide(ts,c);const I=y.unmount;gt.add(y),y.unmount=function(){gt.delete(y),gt.size<1&&(h=Qe,Ae&&Ae(),Ae=null,c.value=Qe,pt=!1,G=!1),I()}}};function ve(y){return y.reduce((C,R)=>C.then(()=>qe(R)),Promise.resolve())}return Zt}function hf(e,t){const n=[],s=[],r=[],i=Math.max(t.matched.length,e.matched.length);for(let o=0;oRt(h,l))?s.push(l):n.push(l));const c=e.matched[o];c&&(t.matched.find(h=>Rt(h,c))||r.push(c))}return[n,s,r]}const df=Jt({__name:"App",setup(e){return(t,n)=>(Dt(),Ei(ut(Ui)))}}),Vi=(e,t)=>{const n=e.__vccOpts||e;for(const[s,r]of t)n[s]=r;return n},pf=Vi(df,[["__scopeId","data-v-e5db0c22"]]),gf="modulepreload",mf=function(e){return"/"+e},_r={},_f=function(t,n,s){let r=Promise.resolve();if(n&&n.length>0){let o=function(h){return Promise.all(h.map(a=>Promise.resolve(a).then(d=>({status:"fulfilled",value:d}),d=>({status:"rejected",reason:d}))))};document.getElementsByTagName("link");const l=document.querySelector("meta[property=csp-nonce]"),c=(l==null?void 0:l.nonce)||(l==null?void 0:l.getAttribute("nonce"));r=o(n.map(h=>{if(h=mf(h),h in _r)return;_r[h]=!0;const a=h.endsWith(".css"),d=a?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${h}"]${d}`))return;const g=document.createElement("link");if(g.rel=a?"stylesheet":gf,a||(g.as="script"),g.crossOrigin="",g.href=h,c&&g.setAttribute("nonce",c),document.head.appendChild(g),a)return new Promise((m,A)=>{g.addEventListener("load",m),g.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${h}`)))})}))}function i(o){const l=new Event("vite:preloadError",{cancelable:!0});if(l.payload=o,window.dispatchEvent(l),!l.defaultPrevented)throw o}return r.then(o=>{for(const l of o||[])l.status==="rejected"&&i(l.reason);return t().catch(i)})};function yf(e){const t="http://"+window.location.host.split(":")[0]+":8090"+e;return console.log(t),t}const vf={class:"table-custom"},bf={class:"team-name"},xf=Jt({__name:"AdminWindow",setup(e){const t=gs({teams:[]});function n(){fetch(yf("/teams")).then(s=>s.json()).then(s=>{t.value=s}).catch(s=>{console.error("Ошибка:",s)})}return n(),(s,r)=>(Dt(),Nn(Ee,null,[r[1]||(r[1]=me("div",{class:"header-block"}," Вечерний детектив ",-1)),me("table",vf,[r[0]||(r[0]=me("thead",null,[me("tr",null,[me("th",null,"Название команды"),me("th",null,"Время"),me("th",null,"Приложения")])],-1)),me("tbody",null,[(Dt(!0),Nn(Ee,null,zo(t.value.teams,i=>(Dt(),Nn("tr",{key:i.name},[me("td",bf,sn(i.name),1),me("td",null,sn(i.spendTime),1),me("td",null,sn(i.applications),1)]))),128))])])],64))}}),Ef=Vi(xf,[["__scopeId","data-v-15b5689a"]]),wf=Jt({__name:"HomeView",setup(e){return(t,n)=>(Dt(),Ei(Ef))}}),Sf=af({history:Bc("/"),routes:[{path:"/",name:"home",component:wf},{path:"/about",name:"about",component:()=>_f(()=>import("./AboutView-BGED82nn.js"),__vite__mapDeps([0,1]))}]}),ws=ic(pf);ws.use(fc());ws.use(Sf);ws.mount("#app");export{Vi as _,me as a,Nn as c,Dt as o}; diff --git a/static/admin/assets/index-DAw4mc7B.css b/static/admin/assets/index-DAw4mc7B.css deleted file mode 100644 index abbf68b..0000000 --- a/static/admin/assets/index-DAw4mc7B.css +++ /dev/null @@ -1 +0,0 @@ -:root{--vt-c-white: #ffffff;--vt-c-white-soft: #f8f8f8;--vt-c-white-mute: #f2f2f2;--vt-c-black: #181818;--vt-c-black-soft: #222222;--vt-c-black-mute: #282828;--vt-c-indigo: #2c3e50;--vt-c-divider-light-1: rgba(60, 60, 60, .29);--vt-c-divider-light-2: rgba(60, 60, 60, .12);--vt-c-divider-dark-1: rgba(84, 84, 84, .65);--vt-c-divider-dark-2: rgba(84, 84, 84, .48);--vt-c-text-light-1: var(--vt-c-indigo);--vt-c-text-light-2: rgba(60, 60, 60, .66);--vt-c-text-dark-1: var(--vt-c-white);--vt-c-text-dark-2: rgba(235, 235, 235, .64)}:root{--color-background: var(--vt-c-white);--color-background-soft: var(--vt-c-white-soft);--color-background-mute: var(--vt-c-white-mute);--color-border: var(--vt-c-divider-light-2);--color-border-hover: var(--vt-c-divider-light-1);--color-heading: var(--vt-c-text-light-1);--color-text: var(--vt-c-text-light-1);--section-gap: 160px}@media (prefers-color-scheme: dark){:root{--color-background: var(--vt-c-black);--color-background-soft: var(--vt-c-black-soft);--color-background-mute: var(--vt-c-black-mute);--color-border: var(--vt-c-divider-dark-2);--color-border-hover: var(--vt-c-divider-dark-1);--color-heading: var(--vt-c-text-dark-1);--color-text: var(--vt-c-text-dark-2)}}*,*:before,*:after{box-sizing:border-box;margin:0;font-weight:400}body{min-height:100vh;color:var(--color-text);background:var(--color-background);transition:color .5s,background-color .5s;line-height:1.6;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:15px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#app{max-width:1280px;margin:0 auto;padding:2rem;font-weight:400}a,.green{text-decoration:none;color:#00bd7e;transition:.4s;padding:3px}@media (hover: hover){a:hover{background-color:#00bd7e33}}@media (min-width: 1024px){body{display:flex;place-items:center}#app{display:grid;grid-template-columns:1fr 1fr;padding:0 2rem}}h1[data-v-d1bb330e]{font-weight:500;font-size:2.6rem;position:relative;top:-10px}h3[data-v-d1bb330e]{font-size:1.2rem}.greetings h1[data-v-d1bb330e],.greetings h3[data-v-d1bb330e]{text-align:center}@media (min-width: 1024px){.greetings h1[data-v-d1bb330e],.greetings h3[data-v-d1bb330e]{text-align:left}}header[data-v-4bc5e6bf]{line-height:1.5;max-height:100vh}.logo[data-v-4bc5e6bf]{display:block;margin:0 auto 2rem}nav[data-v-4bc5e6bf]{width:100%;font-size:12px;text-align:center;margin-top:2rem}nav a.router-link-exact-active[data-v-4bc5e6bf]{color:var(--color-text)}nav a.router-link-exact-active[data-v-4bc5e6bf]:hover{background-color:transparent}nav a[data-v-4bc5e6bf]{display:inline-block;padding:0 1rem;border-left:1px solid var(--color-border)}nav a[data-v-4bc5e6bf]:first-of-type{border:0}@media (min-width: 1024px){header[data-v-4bc5e6bf]{display:flex;place-items:center;padding-right:calc(var(--section-gap) / 2)}.logo[data-v-4bc5e6bf]{margin:0 2rem 0 0}header .wrapper[data-v-4bc5e6bf]{display:flex;place-items:flex-start;flex-wrap:wrap}nav[data-v-4bc5e6bf]{text-align:left;margin-left:-1rem;font-size:1rem;padding:1rem 0;margin-top:1rem}}.item[data-v-fd0742eb]{margin-top:2rem;display:flex;position:relative}.details[data-v-fd0742eb]{flex:1;margin-left:1rem}i[data-v-fd0742eb]{display:flex;place-items:center;place-content:center;width:32px;height:32px;color:var(--color-text)}h3[data-v-fd0742eb]{font-size:1.2rem;font-weight:500;margin-bottom:.4rem;color:var(--color-heading)}@media (min-width: 1024px){.item[data-v-fd0742eb]{margin-top:0;padding:.4rem 0 1rem calc(var(--section-gap) / 2)}i[data-v-fd0742eb]{top:calc(50% - 25px);left:-26px;position:absolute;border:1px solid var(--color-border);background:var(--color-background);border-radius:8px;width:50px;height:50px}.item[data-v-fd0742eb]:before{content:" ";border-left:1px solid var(--color-border);position:absolute;left:0;bottom:calc(50% + 25px);height:calc(50% - 25px)}.item[data-v-fd0742eb]:after{content:" ";border-left:1px solid var(--color-border);position:absolute;left:0;top:calc(50% + 25px);height:calc(50% - 25px)}.item[data-v-fd0742eb]:first-of-type:before{display:none}.item[data-v-fd0742eb]:last-of-type:after{display:none}} diff --git a/static/admin/assets/index-Dqpk-ELy.css b/static/admin/assets/index-Dqpk-ELy.css new file mode 100644 index 0000000..992183a --- /dev/null +++ b/static/admin/assets/index-Dqpk-ELy.css @@ -0,0 +1 @@ +:root{--vt-c-white: #ffffff;--vt-c-white-soft: #f8f8f8;--vt-c-white-mute: #f2f2f2;--vt-c-black: #181818;--vt-c-black-soft: #222222;--vt-c-black-mute: #282828;--vt-c-indigo: #2c3e50;--vt-c-divider-light-1: rgba(60, 60, 60, .29);--vt-c-divider-light-2: rgba(60, 60, 60, .12);--vt-c-divider-dark-1: rgba(84, 84, 84, .65);--vt-c-divider-dark-2: rgba(84, 84, 84, .48);--vt-c-text-light-1: var(--vt-c-indigo);--vt-c-text-light-2: rgba(60, 60, 60, .66);--vt-c-text-dark-1: var(--vt-c-white);--vt-c-text-dark-2: rgba(235, 235, 235, .64);--main-color: rgba(115, 185, 83, 1);--second-color: rgba(98, 156, 68, 1);--main-back-color: rgba(240, 240, 240, 1);--main-back-item-color: rgba(254, 254, 254, 1)}:root{--color-background: var(--vt-c-white);--color-background-soft: var(--vt-c-white-soft);--color-background-mute: var(--vt-c-white-mute);--color-border: var(--vt-c-divider-light-2);--color-border-hover: var(--vt-c-divider-light-1);--color-heading: var(--vt-c-text-light-1);--color-text: var(--vt-c-text-light-1);--section-gap: 160px}*,*:before,*:after{box-sizing:border-box;margin:0;font-weight:400}body{min-height:100dvh;color:var(--color-text);background:var(--main-back-color);transition:color .5s,background-color .5s;line-height:1.6;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:15px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.header-block{height:50px;background-color:var(--main-color);font-size:large;color:#fff;vertical-align:middle;padding:10px 0 10px 16px;font-weight:700}.input-custom{width:100%;box-sizing:border-box;margin-bottom:15px}.button-custom{margin-left:auto;background-color:var(--main-color);font-weight:600;color:#fff}.button-custom:hover{background-color:var(--second-color)}.input-custom,.button-custom{padding:12px 16px;border:1px solid #ddd;border-radius:15px;font-size:16px}.button-container{display:flex}.center-message{display:flex;justify-content:center;align-items:center;height:calc(100dvh - 100px);text-align:center}header[data-v-e5db0c22]{line-height:1.5;max-height:100vh}.logo[data-v-e5db0c22]{display:block;margin:0 auto 2rem}nav[data-v-e5db0c22]{width:100%;font-size:12px;text-align:center;margin-top:2rem}nav a.router-link-exact-active[data-v-e5db0c22]{color:var(--color-text)}nav a.router-link-exact-active[data-v-e5db0c22]:hover{background-color:transparent}nav a[data-v-e5db0c22]{display:inline-block;padding:0 1rem;border-left:1px solid var(--color-border)}nav a[data-v-e5db0c22]:first-of-type{border:0}@media (min-width: 1024px){header[data-v-e5db0c22]{display:flex;place-items:center;padding-right:calc(var(--section-gap) / 2)}.logo[data-v-e5db0c22]{margin:0 2rem 0 0}header .wrapper[data-v-e5db0c22]{display:flex;place-items:flex-start;flex-wrap:wrap}nav[data-v-e5db0c22]{text-align:left;margin-left:-1rem;font-size:1rem;padding:1rem 0;margin-top:1rem}}body[data-v-15b5689a]{font-family:Arial,sans-serif;margin:20px}table[data-v-15b5689a]{width:700px;border-collapse:collapse;margin:30px auto}th[data-v-15b5689a],td[data-v-15b5689a]{padding:12px;text-align:left}th[data-v-15b5689a]{background-color:var(--main-color);color:#fff;font-weight:700}tr[data-v-15b5689a]:nth-child(odd){background-color:#c5ddba}tr[data-v-15b5689a]:nth-child(2n){background-color:#e0e8dc}tr[data-v-15b5689a]:hover{background-color:var(--main-color)}.time[data-v-15b5689a]{white-space:nowrap}.team-name[data-v-15b5689a]{font-weight:600} diff --git a/static/admin/assets/index-waNsD4Su.js b/static/admin/assets/index-waNsD4Su.js deleted file mode 100644 index 2860c6d..0000000 --- a/static/admin/assets/index-waNsD4Su.js +++ /dev/null @@ -1,26 +0,0 @@ -const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/AboutView-BiO2tasp.js","assets/AboutView-CSIvawM9.css"])))=>i.map(i=>d[i]); -(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))s(r);new MutationObserver(r=>{for(const o of r)if(o.type==="childList")for(const i of o.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&s(i)}).observe(document,{childList:!0,subtree:!0});function n(r){const o={};return r.integrity&&(o.integrity=r.integrity),r.referrerPolicy&&(o.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?o.credentials="include":r.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function s(r){if(r.ep)return;r.ep=!0;const o=n(r);fetch(r.href,o)}})();/** -* @vue/shared v3.5.13 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**//*! #__NO_SIDE_EFFECTS__ */function is(e){const t=Object.create(null);for(const n of e.split(","))t[n]=1;return n=>n in t}const te={},St=[],De=()=>{},Qo=()=>!1,bn=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),ls=e=>e.startsWith("onUpdate:"),fe=Object.assign,cs=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Jo=Object.prototype.hasOwnProperty,q=(e,t)=>Jo.call(e,t),F=Array.isArray,Rt=e=>wn(e)==="[object Map]",Er=e=>wn(e)==="[object Set]",V=e=>typeof e=="function",re=e=>typeof e=="string",Qe=e=>typeof e=="symbol",se=e=>e!==null&&typeof e=="object",Sr=e=>(se(e)||V(e))&&V(e.then)&&V(e.catch),Rr=Object.prototype.toString,wn=e=>Rr.call(e),Xo=e=>wn(e).slice(8,-1),Cr=e=>wn(e)==="[object Object]",us=e=>re(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Nt=is(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),xn=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Zo=/-(\w)/g,lt=xn(e=>e.replace(Zo,(t,n)=>n?n.toUpperCase():"")),ei=/\B([A-Z])/g,vt=xn(e=>e.replace(ei,"-$1").toLowerCase()),Pr=xn(e=>e.charAt(0).toUpperCase()+e.slice(1)),Tn=xn(e=>e?`on${Pr(e)}`:""),it=(e,t)=>!Object.is(e,t),Mn=(e,...t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:s,value:n})},ti=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let Ts;const En=()=>Ts||(Ts=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function fs(e){if(F(e)){const t={};for(let n=0;n{if(n){const s=n.split(si);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function as(e){let t="";if(re(e))t=e;else if(F(e))for(let n=0;n!!(e&&e.__v_isRef===!0),Mr=e=>re(e)?e:e==null?"":F(e)||se(e)&&(e.toString===Rr||!V(e.toString))?Tr(e)?Mr(e.value):JSON.stringify(e,Ir,2):String(e),Ir=(e,t)=>Tr(t)?Ir(e,t.value):Rt(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r],o)=>(n[In(s,o)+" =>"]=r,n),{})}:Er(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>In(n))}:Qe(t)?In(t):se(t)&&!F(t)&&!Cr(t)?String(t):t,In=(e,t="")=>{var n;return Qe(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** -* @vue/reactivity v3.5.13 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/let xe;class zr{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.parent=xe,!t&&xe&&(this.index=(xe.scopes||(xe.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t0)return;if(Bt){let t=Bt;for(Bt=void 0;t;){const n=t.next;t.next=void 0,t.flags&=-9,t=n}}let e;for(;kt;){let t=kt;for(kt=void 0;t;){const n=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(s){e||(e=s)}t=n}}if(e)throw e}function jr(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function Fr(e){let t,n=e.depsTail,s=n;for(;s;){const r=s.prevDep;s.version===-1?(s===n&&(n=r),ps(s),fi(s)):t=s,s.dep.activeLink=s.prevActiveLink,s.prevActiveLink=void 0,s=r}e.deps=t,e.depsTail=n}function Kn(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(Vr(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function Vr(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===Yt))return;e.globalVersion=Yt;const t=e.dep;if(e.flags|=2,t.version>0&&!e.isSSR&&e.deps&&!Kn(e)){e.flags&=-3;return}const n=ee,s=Pe;ee=e,Pe=!0;try{jr(e);const r=e.fn(e._value);(t.version===0||it(r,e._value))&&(e._value=r,t.version++)}catch(r){throw t.version++,r}finally{ee=n,Pe=s,Fr(e),e.flags&=-3}}function ps(e,t=!1){const{dep:n,prevSub:s,nextSub:r}=e;if(s&&(s.nextSub=r,e.prevSub=void 0),r&&(r.prevSub=s,e.nextSub=void 0),n.subs===e&&(n.subs=s,!s&&n.computed)){n.computed.flags&=-5;for(let o=n.computed.deps;o;o=o.nextDep)ps(o,!0)}!t&&!--n.sc&&n.map&&n.map.delete(n.key)}function fi(e){const{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}let Pe=!0;const Dr=[];function ct(){Dr.push(Pe),Pe=!1}function ut(){const e=Dr.pop();Pe=e===void 0?!0:e}function Ms(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const n=ee;ee=void 0;try{t()}finally{ee=n}}}let Yt=0;class ai{constructor(t,n){this.sub=t,this.dep=n,this.version=n.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class gs{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0}track(t){if(!ee||!Pe||ee===this.computed)return;let n=this.activeLink;if(n===void 0||n.sub!==ee)n=this.activeLink=new ai(ee,this),ee.deps?(n.prevDep=ee.depsTail,ee.depsTail.nextDep=n,ee.depsTail=n):ee.deps=ee.depsTail=n,Nr(n);else if(n.version===-1&&(n.version=this.version,n.nextDep)){const s=n.nextDep;s.prevDep=n.prevDep,n.prevDep&&(n.prevDep.nextDep=s),n.prevDep=ee.depsTail,n.nextDep=void 0,ee.depsTail.nextDep=n,ee.depsTail=n,ee.deps===n&&(ee.deps=s)}return n}trigger(t){this.version++,Yt++,this.notify(t)}notify(t){ds();try{for(let n=this.subs;n;n=n.prevSub)n.sub.notify()&&n.sub.dep.notify()}finally{hs()}}}function Nr(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let s=t.deps;s;s=s.nextDep)Nr(s)}const n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),e.dep.subs=e}}const Wn=new WeakMap,gt=Symbol(""),qn=Symbol(""),Qt=Symbol("");function ce(e,t,n){if(Pe&&ee){let s=Wn.get(e);s||Wn.set(e,s=new Map);let r=s.get(n);r||(s.set(n,r=new gs),r.map=s,r.key=n),r.track()}}function qe(e,t,n,s,r,o){const i=Wn.get(e);if(!i){Yt++;return}const l=c=>{c&&c.trigger()};if(ds(),t==="clear")i.forEach(l);else{const c=F(e),h=c&&us(n);if(c&&n==="length"){const a=Number(s);i.forEach((d,g)=>{(g==="length"||g===Qt||!Qe(g)&&g>=a)&&l(d)})}else switch((n!==void 0||i.has(void 0))&&l(i.get(n)),h&&l(i.get(Qt)),t){case"add":c?h&&l(i.get("length")):(l(i.get(gt)),Rt(e)&&l(i.get(qn)));break;case"delete":c||(l(i.get(gt)),Rt(e)&&l(i.get(qn)));break;case"set":Rt(e)&&l(i.get(gt));break}}hs()}function wt(e){const t=W(e);return t===e?t:(ce(t,"iterate",Qt),Ae(e)?t:t.map(de))}function ms(e){return ce(e=W(e),"iterate",Qt),e}const di={__proto__:null,[Symbol.iterator](){return Hn(this,Symbol.iterator,de)},concat(...e){return wt(this).concat(...e.map(t=>F(t)?wt(t):t))},entries(){return Hn(this,"entries",e=>(e[1]=de(e[1]),e))},every(e,t){return Ue(this,"every",e,t,void 0,arguments)},filter(e,t){return Ue(this,"filter",e,t,n=>n.map(de),arguments)},find(e,t){return Ue(this,"find",e,t,de,arguments)},findIndex(e,t){return Ue(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return Ue(this,"findLast",e,t,de,arguments)},findLastIndex(e,t){return Ue(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return Ue(this,"forEach",e,t,void 0,arguments)},includes(...e){return $n(this,"includes",e)},indexOf(...e){return $n(this,"indexOf",e)},join(e){return wt(this).join(e)},lastIndexOf(...e){return $n(this,"lastIndexOf",e)},map(e,t){return Ue(this,"map",e,t,void 0,arguments)},pop(){return Lt(this,"pop")},push(...e){return Lt(this,"push",e)},reduce(e,...t){return Is(this,"reduce",e,t)},reduceRight(e,...t){return Is(this,"reduceRight",e,t)},shift(){return Lt(this,"shift")},some(e,t){return Ue(this,"some",e,t,void 0,arguments)},splice(...e){return Lt(this,"splice",e)},toReversed(){return wt(this).toReversed()},toSorted(e){return wt(this).toSorted(e)},toSpliced(...e){return wt(this).toSpliced(...e)},unshift(...e){return Lt(this,"unshift",e)},values(){return Hn(this,"values",de)}};function Hn(e,t,n){const s=ms(e),r=s[t]();return s!==e&&!Ae(e)&&(r._next=r.next,r.next=()=>{const o=r._next();return o.value&&(o.value=n(o.value)),o}),r}const hi=Array.prototype;function Ue(e,t,n,s,r,o){const i=ms(e),l=i!==e&&!Ae(e),c=i[t];if(c!==hi[t]){const d=c.apply(e,o);return l?de(d):d}let h=n;i!==e&&(l?h=function(d,g){return n.call(this,de(d),g,e)}:n.length>2&&(h=function(d,g){return n.call(this,d,g,e)}));const a=c.call(i,h,s);return l&&r?r(a):a}function Is(e,t,n,s){const r=ms(e);let o=n;return r!==e&&(Ae(e)?n.length>3&&(o=function(i,l,c){return n.call(this,i,l,c,e)}):o=function(i,l,c){return n.call(this,i,de(l),c,e)}),r[t](o,...s)}function $n(e,t,n){const s=W(e);ce(s,"iterate",Qt);const r=s[t](...n);return(r===-1||r===!1)&&ys(n[0])?(n[0]=W(n[0]),s[t](...n)):r}function Lt(e,t,n=[]){ct(),ds();const s=W(e)[t].apply(e,n);return hs(),ut(),s}const pi=is("__proto__,__v_isRef,__isVue"),kr=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Qe));function gi(e){Qe(e)||(e=String(e));const t=W(this);return ce(t,"has",e),t.hasOwnProperty(e)}class Br{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,s){if(n==="__v_skip")return t.__v_skip;const r=this._isReadonly,o=this._isShallow;if(n==="__v_isReactive")return!r;if(n==="__v_isReadonly")return r;if(n==="__v_isShallow")return o;if(n==="__v_raw")return s===(r?o?Ri:qr:o?Wr:Kr).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const i=F(t);if(!r){let c;if(i&&(c=di[n]))return c;if(n==="hasOwnProperty")return gi}const l=Reflect.get(t,n,ue(t)?t:s);return(Qe(n)?kr.has(n):pi(n))||(r||ce(t,"get",n),o)?l:ue(l)?i&&us(n)?l:l.value:se(l)?r?Yr(l):Sn(l):l}}class Ur extends Br{constructor(t=!1){super(!1,t)}set(t,n,s,r){let o=t[n];if(!this._isShallow){const c=mt(o);if(!Ae(s)&&!mt(s)&&(o=W(o),s=W(s)),!F(t)&&ue(o)&&!ue(s))return c?!1:(o.value=s,!0)}const i=F(t)&&us(n)?Number(n)e,ln=e=>Reflect.getPrototypeOf(e);function bi(e,t,n){return function(...s){const r=this.__v_raw,o=W(r),i=Rt(o),l=e==="entries"||e===Symbol.iterator&&i,c=e==="keys"&&i,h=r[e](...s),a=n?Gn:t?Yn:de;return!t&&ce(o,"iterate",c?qn:gt),{next(){const{value:d,done:g}=h.next();return g?{value:d,done:g}:{value:l?[a(d[0]),a(d[1])]:a(d),done:g}},[Symbol.iterator](){return this}}}}function cn(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function wi(e,t){const n={get(r){const o=this.__v_raw,i=W(o),l=W(r);e||(it(r,l)&&ce(i,"get",r),ce(i,"get",l));const{has:c}=ln(i),h=t?Gn:e?Yn:de;if(c.call(i,r))return h(o.get(r));if(c.call(i,l))return h(o.get(l));o!==i&&o.get(r)},get size(){const r=this.__v_raw;return!e&&ce(W(r),"iterate",gt),Reflect.get(r,"size",r)},has(r){const o=this.__v_raw,i=W(o),l=W(r);return e||(it(r,l)&&ce(i,"has",r),ce(i,"has",l)),r===l?o.has(r):o.has(r)||o.has(l)},forEach(r,o){const i=this,l=i.__v_raw,c=W(l),h=t?Gn:e?Yn:de;return!e&&ce(c,"iterate",gt),l.forEach((a,d)=>r.call(o,h(a),h(d),i))}};return fe(n,e?{add:cn("add"),set:cn("set"),delete:cn("delete"),clear:cn("clear")}:{add(r){!t&&!Ae(r)&&!mt(r)&&(r=W(r));const o=W(this);return ln(o).has.call(o,r)||(o.add(r),qe(o,"add",r,r)),this},set(r,o){!t&&!Ae(o)&&!mt(o)&&(o=W(o));const i=W(this),{has:l,get:c}=ln(i);let h=l.call(i,r);h||(r=W(r),h=l.call(i,r));const a=c.call(i,r);return i.set(r,o),h?it(o,a)&&qe(i,"set",r,o):qe(i,"add",r,o),this},delete(r){const o=W(this),{has:i,get:l}=ln(o);let c=i.call(o,r);c||(r=W(r),c=i.call(o,r)),l&&l.call(o,r);const h=o.delete(r);return c&&qe(o,"delete",r,void 0),h},clear(){const r=W(this),o=r.size!==0,i=r.clear();return o&&qe(r,"clear",void 0,void 0),i}}),["keys","values","entries",Symbol.iterator].forEach(r=>{n[r]=bi(r,e,t)}),n}function vs(e,t){const n=wi(e,t);return(s,r,o)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(q(n,r)&&r in s?n:s,r,o)}const xi={get:vs(!1,!1)},Ei={get:vs(!1,!0)},Si={get:vs(!0,!1)};const Kr=new WeakMap,Wr=new WeakMap,qr=new WeakMap,Ri=new WeakMap;function Ci(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Pi(e){return e.__v_skip||!Object.isExtensible(e)?0:Ci(Xo(e))}function Sn(e){return mt(e)?e:_s(e,!1,vi,xi,Kr)}function Gr(e){return _s(e,!1,yi,Ei,Wr)}function Yr(e){return _s(e,!0,_i,Si,qr)}function _s(e,t,n,s,r){if(!se(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=r.get(e);if(o)return o;const i=Pi(e);if(i===0)return e;const l=new Proxy(e,i===2?s:n);return r.set(e,l),l}function Ut(e){return mt(e)?Ut(e.__v_raw):!!(e&&e.__v_isReactive)}function mt(e){return!!(e&&e.__v_isReadonly)}function Ae(e){return!!(e&&e.__v_isShallow)}function ys(e){return e?!!e.__v_raw:!1}function W(e){const t=e&&e.__v_raw;return t?W(t):e}function Qr(e){return!q(e,"__v_skip")&&Object.isExtensible(e)&&Ar(e,"__v_skip",!0),e}const de=e=>se(e)?Sn(e):e,Yn=e=>se(e)?Yr(e):e;function ue(e){return e?e.__v_isRef===!0:!1}function Jr(e){return Xr(e,!1)}function Ai(e){return Xr(e,!0)}function Xr(e,t){return ue(e)?e:new Oi(e,t)}class Oi{constructor(t,n){this.dep=new gs,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=n?t:W(t),this._value=n?t:de(t),this.__v_isShallow=n}get value(){return this.dep.track(),this._value}set value(t){const n=this._rawValue,s=this.__v_isShallow||Ae(t)||mt(t);t=s?t:W(t),it(t,n)&&(this._rawValue=t,this._value=s?t:de(t),this.dep.trigger())}}function Ge(e){return ue(e)?e.value:e}const Ti={get:(e,t,n)=>t==="__v_raw"?e:Ge(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return ue(r)&&!ue(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function Zr(e){return Ut(e)?e:new Proxy(e,Ti)}class Mi{constructor(t,n,s){this.fn=t,this.setter=n,this._value=void 0,this.dep=new gs(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=Yt-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!n,this.isSSR=s}notify(){if(this.flags|=16,!(this.flags&8)&&ee!==this)return Lr(this,!0),!0}get value(){const t=this.dep.track();return Vr(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function Ii(e,t,n=!1){let s,r;return V(e)?s=e:(s=e.get,r=e.set),new Mi(s,r,n)}const un={},pn=new WeakMap;let pt;function zi(e,t=!1,n=pt){if(n){let s=pn.get(n);s||pn.set(n,s=[]),s.push(e)}}function Hi(e,t,n=te){const{immediate:s,deep:r,once:o,scheduler:i,augmentJob:l,call:c}=n,h=T=>r?T:Ae(T)||r===!1||r===0?ot(T,1):ot(T);let a,d,g,m,A=!1,O=!1;if(ue(e)?(d=()=>e.value,A=Ae(e)):Ut(e)?(d=()=>h(e),A=!0):F(e)?(O=!0,A=e.some(T=>Ut(T)||Ae(T)),d=()=>e.map(T=>{if(ue(T))return T.value;if(Ut(T))return h(T);if(V(T))return c?c(T,2):T()})):V(e)?t?d=c?()=>c(e,2):e:d=()=>{if(g){ct();try{g()}finally{ut()}}const T=pt;pt=a;try{return c?c(e,3,[m]):e(m)}finally{pt=T}}:d=De,t&&r){const T=d,J=r===!0?1/0:r;d=()=>ot(T(),J)}const D=ui(),H=()=>{a.stop(),D&&D.active&&cs(D.effects,a)};if(o&&t){const T=t;t=(...J)=>{T(...J),H()}}let I=O?new Array(e.length).fill(un):un;const $=T=>{if(!(!(a.flags&1)||!a.dirty&&!T))if(t){const J=a.run();if(r||A||(O?J.some((le,ne)=>it(le,I[ne])):it(J,I))){g&&g();const le=pt;pt=a;try{const ne=[J,I===un?void 0:O&&I[0]===un?[]:I,m];c?c(t,3,ne):t(...ne),I=J}finally{pt=le}}}else a.run()};return l&&l($),a=new Hr(d),a.scheduler=i?()=>i($,!1):$,m=T=>zi(T,!1,a),g=a.onStop=()=>{const T=pn.get(a);if(T){if(c)c(T,4);else for(const J of T)J();pn.delete(a)}},t?s?$(!0):I=a.run():i?i($.bind(null,!0),!0):a.run(),H.pause=a.pause.bind(a),H.resume=a.resume.bind(a),H.stop=H,H}function ot(e,t=1/0,n){if(t<=0||!se(e)||e.__v_skip||(n=n||new Set,n.has(e)))return e;if(n.add(e),t--,ue(e))ot(e.value,t,n);else if(F(e))for(let s=0;s{ot(s,t,n)});else if(Cr(e)){for(const s in e)ot(e[s],t,n);for(const s of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,s)&&ot(e[s],t,n)}return e}/** -* @vue/runtime-core v3.5.13 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/function sn(e,t,n,s){try{return s?e(...s):e()}catch(r){Rn(r,t,n)}}function Ne(e,t,n,s){if(V(e)){const r=sn(e,t,n,s);return r&&Sr(r)&&r.catch(o=>{Rn(o,t,n)}),r}if(F(e)){const r=[];for(let o=0;o>>1,r=he[s],o=Jt(r);o=Jt(n)?he.push(e):he.splice(Li(t),0,e),e.flags|=1,no()}}function no(){gn||(gn=eo.then(ro))}function ji(e){F(e)?Ct.push(...e):nt&&e.id===-1?nt.splice(xt+1,0,e):e.flags&1||(Ct.push(e),e.flags|=1),no()}function zs(e,t,n=Fe+1){for(;nJt(n)-Jt(s));if(Ct.length=0,nt){nt.push(...t);return}for(nt=t,xt=0;xte.id==null?e.flags&2?-1:1/0:e.id;function ro(e){try{for(Fe=0;Fe{s._d&&ks(-1);const o=mn(t);let i;try{i=e(...r)}finally{mn(o),s._d&&ks(1)}return i};return s._n=!0,s._c=!0,s._d=!0,s}function dt(e,t,n,s){const r=e.dirs,o=t&&t.dirs;for(let i=0;ie.__isTeleport;function ws(e,t){e.shapeFlag&6&&e.component?(e.transition=t,ws(e.component.subTree,t)):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}/*! #__NO_SIDE_EFFECTS__ */function zt(e,t){return V(e)?fe({name:e.name},t,{setup:e}):e}function io(e){e.ids=[e.ids[0]+e.ids[2]+++"-",0,0]}function vn(e,t,n,s,r=!1){if(F(e)){e.forEach((A,O)=>vn(A,t&&(F(t)?t[O]:t),n,s,r));return}if(Pt(s)&&!r){s.shapeFlag&512&&s.type.__asyncResolved&&s.component.subTree.component&&vn(e,t,n,s.component.subTree);return}const o=s.shapeFlag&4?Ss(s.component):s.el,i=r?null:o,{i:l,r:c}=e,h=t&&t.r,a=l.refs===te?l.refs={}:l.refs,d=l.setupState,g=W(d),m=d===te?()=>!1:A=>q(g,A);if(h!=null&&h!==c&&(re(h)?(a[h]=null,m(h)&&(d[h]=null)):ue(h)&&(h.value=null)),V(c))sn(c,l,12,[i,a]);else{const A=re(c),O=ue(c);if(A||O){const D=()=>{if(e.f){const H=A?m(c)?d[c]:a[c]:c.value;r?F(H)&&cs(H,o):F(H)?H.includes(o)||H.push(o):A?(a[c]=[o],m(c)&&(d[c]=a[c])):(c.value=[o],e.k&&(a[e.k]=c.value))}else A?(a[c]=i,m(c)&&(d[c]=i)):O&&(c.value=i,e.k&&(a[e.k]=i))};i?(D.id=-1,we(D,n)):D()}}}En().requestIdleCallback;En().cancelIdleCallback;const Pt=e=>!!e.type.__asyncLoader,lo=e=>e.type.__isKeepAlive;function Di(e,t){co(e,"a",t)}function Ni(e,t){co(e,"da",t)}function co(e,t,n=pe){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(Cn(t,s,n),n){let r=n.parent;for(;r&&r.parent;)lo(r.parent.vnode)&&ki(s,t,n,r),r=r.parent}}function ki(e,t,n,s){const r=Cn(t,e,s,!0);uo(()=>{cs(s[t],r)},n)}function Cn(e,t,n=pe,s=!1){if(n){const r=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{ct();const l=rn(n),c=Ne(t,n,e,i);return l(),ut(),c});return s?r.unshift(o):r.push(o),o}}const Je=e=>(t,n=pe)=>{(!en||e==="sp")&&Cn(e,(...s)=>t(...s),n)},Bi=Je("bm"),Ui=Je("m"),Ki=Je("bu"),Wi=Je("u"),qi=Je("bum"),uo=Je("um"),Gi=Je("sp"),Yi=Je("rtg"),Qi=Je("rtc");function Ji(e,t=pe){Cn("ec",e,t)}const Xi=Symbol.for("v-ndc");function Ln(e,t,n={},s,r){if(_e.ce||_e.parent&&Pt(_e.parent)&&_e.parent.ce)return t!=="default"&&(n.name=t),Re(),Bs(ve,null,[Q("slot",n,s)],64);let o=e[t];o&&o._c&&(o._d=!1),Re();const i=o&&fo(o(n)),l=n.key||i&&i.key,c=Bs(ve,{key:(l&&!Qe(l)?l:`_${t}`)+""},i||[],i&&e._===1?64:-2);return o&&o._c&&(o._d=!0),c}function fo(e){return e.some(t=>Zt(t)?!(t.type===Ot||t.type===ve&&!fo(t.children)):!0)?e:null}const Qn=e=>e?Io(e)?Ss(e):Qn(e.parent):null,Kt=fe(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Qn(e.parent),$root:e=>Qn(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>ho(e),$forceUpdate:e=>e.f||(e.f=()=>{bs(e.update)}),$nextTick:e=>e.n||(e.n=to.bind(e.proxy)),$watch:e=>yl.bind(e)}),jn=(e,t)=>e!==te&&!e.__isScriptSetup&&q(e,t),Zi={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:s,data:r,props:o,accessCache:i,type:l,appContext:c}=e;let h;if(t[0]!=="$"){const m=i[t];if(m!==void 0)switch(m){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return o[t]}else{if(jn(s,t))return i[t]=1,s[t];if(r!==te&&q(r,t))return i[t]=2,r[t];if((h=e.propsOptions[0])&&q(h,t))return i[t]=3,o[t];if(n!==te&&q(n,t))return i[t]=4,n[t];Jn&&(i[t]=0)}}const a=Kt[t];let d,g;if(a)return t==="$attrs"&&ce(e.attrs,"get",""),a(e);if((d=l.__cssModules)&&(d=d[t]))return d;if(n!==te&&q(n,t))return i[t]=4,n[t];if(g=c.config.globalProperties,q(g,t))return g[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:o}=e;return jn(r,t)?(r[t]=n,!0):s!==te&&q(s,t)?(s[t]=n,!0):q(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:o}},i){let l;return!!n[i]||e!==te&&q(e,i)||jn(t,i)||(l=o[0])&&q(l,i)||q(s,i)||q(Kt,i)||q(r.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:q(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function Hs(e){return F(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let Jn=!0;function el(e){const t=ho(e),n=e.proxy,s=e.ctx;Jn=!1,t.beforeCreate&&$s(t.beforeCreate,e,"bc");const{data:r,computed:o,methods:i,watch:l,provide:c,inject:h,created:a,beforeMount:d,mounted:g,beforeUpdate:m,updated:A,activated:O,deactivated:D,beforeDestroy:H,beforeUnmount:I,destroyed:$,unmounted:T,render:J,renderTracked:le,renderTriggered:ne,errorCaptured:Te,serverPrefetch:Xe,expose:Me,inheritAttrs:Ze,components:at,directives:Ie,filters:Ht}=t;if(h&&tl(h,s,null),i)for(const Y in i){const U=i[Y];V(U)&&(s[Y]=U.bind(n))}if(r){const Y=r.call(n,n);se(Y)&&(e.data=Sn(Y))}if(Jn=!0,o)for(const Y in o){const U=o[Y],Be=V(U)?U.bind(n,n):V(U.get)?U.get.bind(n,n):De,et=!V(U)&&V(U.set)?U.set.bind(n):De,ze=Ce({get:Be,set:et});Object.defineProperty(s,Y,{enumerable:!0,configurable:!0,get:()=>ze.value,set:ge=>ze.value=ge})}if(l)for(const Y in l)ao(l[Y],s,n,Y);if(c){const Y=V(c)?c.call(n):c;Reflect.ownKeys(Y).forEach(U=>{fn(U,Y[U])})}a&&$s(a,e,"c");function oe(Y,U){F(U)?U.forEach(Be=>Y(Be.bind(n))):U&&Y(U.bind(n))}if(oe(Bi,d),oe(Ui,g),oe(Ki,m),oe(Wi,A),oe(Di,O),oe(Ni,D),oe(Ji,Te),oe(Qi,le),oe(Yi,ne),oe(qi,I),oe(uo,T),oe(Gi,Xe),F(Me))if(Me.length){const Y=e.exposed||(e.exposed={});Me.forEach(U=>{Object.defineProperty(Y,U,{get:()=>n[U],set:Be=>n[U]=Be})})}else e.exposed||(e.exposed={});J&&e.render===De&&(e.render=J),Ze!=null&&(e.inheritAttrs=Ze),at&&(e.components=at),Ie&&(e.directives=Ie),Xe&&io(e)}function tl(e,t,n=De){F(e)&&(e=Xn(e));for(const s in e){const r=e[s];let o;se(r)?"default"in r?o=Ye(r.from||s,r.default,!0):o=Ye(r.from||s):o=Ye(r),ue(o)?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>o.value,set:i=>o.value=i}):t[s]=o}}function $s(e,t,n){Ne(F(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function ao(e,t,n,s){let r=s.includes(".")?Po(n,s):()=>n[s];if(re(e)){const o=t[e];V(o)&&an(r,o)}else if(V(e))an(r,e.bind(n));else if(se(e))if(F(e))e.forEach(o=>ao(o,t,n,s));else{const o=V(e.handler)?e.handler.bind(n):t[e.handler];V(o)&&an(r,o,e)}}function ho(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,l=o.get(t);let c;return l?c=l:!r.length&&!n&&!s?c=t:(c={},r.length&&r.forEach(h=>_n(c,h,i,!0)),_n(c,t,i)),se(t)&&o.set(t,c),c}function _n(e,t,n,s=!1){const{mixins:r,extends:o}=t;o&&_n(e,o,n,!0),r&&r.forEach(i=>_n(e,i,n,!0));for(const i in t)if(!(s&&i==="expose")){const l=nl[i]||n&&n[i];e[i]=l?l(e[i],t[i]):t[i]}return e}const nl={data:Ls,props:js,emits:js,methods:Dt,computed:Dt,beforeCreate:ae,created:ae,beforeMount:ae,mounted:ae,beforeUpdate:ae,updated:ae,beforeDestroy:ae,beforeUnmount:ae,destroyed:ae,unmounted:ae,activated:ae,deactivated:ae,errorCaptured:ae,serverPrefetch:ae,components:Dt,directives:Dt,watch:rl,provide:Ls,inject:sl};function Ls(e,t){return t?e?function(){return fe(V(e)?e.call(this,this):e,V(t)?t.call(this,this):t)}:t:e}function sl(e,t){return Dt(Xn(e),Xn(t))}function Xn(e){if(F(e)){const t={};for(let n=0;n1)return n&&V(t)?t.call(s&&s.proxy):t}}const go={},mo=()=>Object.create(go),vo=e=>Object.getPrototypeOf(e)===go;function ll(e,t,n,s=!1){const r={},o=mo();e.propsDefaults=Object.create(null),_o(e,t,r,o);for(const i in e.propsOptions[0])i in r||(r[i]=void 0);n?e.props=s?r:Gr(r):e.type.props?e.props=r:e.props=o,e.attrs=o}function cl(e,t,n,s){const{props:r,attrs:o,vnode:{patchFlag:i}}=e,l=W(r),[c]=e.propsOptions;let h=!1;if((s||i>0)&&!(i&16)){if(i&8){const a=e.vnode.dynamicProps;for(let d=0;d{c=!0;const[g,m]=yo(d,t,!0);fe(i,g),m&&l.push(...m)};!n&&t.mixins.length&&t.mixins.forEach(a),e.extends&&a(e.extends),e.mixins&&e.mixins.forEach(a)}if(!o&&!c)return se(e)&&s.set(e,St),St;if(F(o))for(let a=0;ae[0]==="_"||e==="$stable",xs=e=>F(e)?e.map(Ve):[Ve(e)],fl=(e,t,n)=>{if(t._n)return t;const s=ie((...r)=>xs(t(...r)),n);return s._c=!1,s},wo=(e,t,n)=>{const s=e._ctx;for(const r in e){if(bo(r))continue;const o=e[r];if(V(o))t[r]=fl(r,o,s);else if(o!=null){const i=xs(o);t[r]=()=>i}}},xo=(e,t)=>{const n=xs(t);e.slots.default=()=>n},Eo=(e,t,n)=>{for(const s in t)(n||s!=="_")&&(e[s]=t[s])},al=(e,t,n)=>{const s=e.slots=mo();if(e.vnode.shapeFlag&32){const r=t._;r?(Eo(s,t,n),n&&Ar(s,"_",r,!0)):wo(t,s)}else t&&xo(e,t)},dl=(e,t,n)=>{const{vnode:s,slots:r}=e;let o=!0,i=te;if(s.shapeFlag&32){const l=t._;l?n&&l===1?o=!1:Eo(r,t,n):(o=!t.$stable,wo(t,r)),i=t}else t&&(xo(e,t),i={default:1});if(o)for(const l in r)!bo(l)&&i[l]==null&&delete r[l]},we=Cl;function hl(e){return pl(e)}function pl(e,t){const n=En();n.__VUE__=!0;const{insert:s,remove:r,patchProp:o,createElement:i,createText:l,createComment:c,setText:h,setElementText:a,parentNode:d,nextSibling:g,setScopeId:m=De,insertStaticContent:A}=e,O=(u,f,p,v=null,b=null,y=null,S=void 0,E=null,x=!!f.dynamicChildren)=>{if(u===f)return;u&&!jt(u,f)&&(v=_(u),ge(u,b,y,!0),u=null),f.patchFlag===-2&&(x=!1,f.dynamicChildren=null);const{type:w,ref:L,shapeFlag:C}=f;switch(w){case An:D(u,f,p,v);break;case Ot:H(u,f,p,v);break;case Vn:u==null&&I(f,p,v,S);break;case ve:at(u,f,p,v,b,y,S,E,x);break;default:C&1?J(u,f,p,v,b,y,S,E,x):C&6?Ie(u,f,p,v,b,y,S,E,x):(C&64||C&128)&&w.process(u,f,p,v,b,y,S,E,x,M)}L!=null&&b&&vn(L,u&&u.ref,y,f||u,!f)},D=(u,f,p,v)=>{if(u==null)s(f.el=l(f.children),p,v);else{const b=f.el=u.el;f.children!==u.children&&h(b,f.children)}},H=(u,f,p,v)=>{u==null?s(f.el=c(f.children||""),p,v):f.el=u.el},I=(u,f,p,v)=>{[u.el,u.anchor]=A(u.children,f,p,v,u.el,u.anchor)},$=({el:u,anchor:f},p,v)=>{let b;for(;u&&u!==f;)b=g(u),s(u,p,v),u=b;s(f,p,v)},T=({el:u,anchor:f})=>{let p;for(;u&&u!==f;)p=g(u),r(u),u=p;r(f)},J=(u,f,p,v,b,y,S,E,x)=>{f.type==="svg"?S="svg":f.type==="math"&&(S="mathml"),u==null?le(f,p,v,b,y,S,E,x):Xe(u,f,b,y,S,E,x)},le=(u,f,p,v,b,y,S,E)=>{let x,w;const{props:L,shapeFlag:C,transition:z,dirs:j}=u;if(x=u.el=i(u.type,y,L&&L.is,L),C&8?a(x,u.children):C&16&&Te(u.children,x,null,v,b,Fn(u,y),S,E),j&&dt(u,null,v,"created"),ne(x,u,u.scopeId,S,v),L){for(const Z in L)Z!=="value"&&!Nt(Z)&&o(x,Z,null,L[Z],y,v);"value"in L&&o(x,"value",null,L.value,y),(w=L.onVnodeBeforeMount)&&je(w,v,u)}j&&dt(u,null,v,"beforeMount");const B=gl(b,z);B&&z.beforeEnter(x),s(x,f,p),((w=L&&L.onVnodeMounted)||B||j)&&we(()=>{w&&je(w,v,u),B&&z.enter(x),j&&dt(u,null,v,"mounted")},b)},ne=(u,f,p,v,b)=>{if(p&&m(u,p),v)for(let y=0;y{for(let w=x;w{const E=f.el=u.el;let{patchFlag:x,dynamicChildren:w,dirs:L}=f;x|=u.patchFlag&16;const C=u.props||te,z=f.props||te;let j;if(p&&ht(p,!1),(j=z.onVnodeBeforeUpdate)&&je(j,p,f,u),L&&dt(f,u,p,"beforeUpdate"),p&&ht(p,!0),(C.innerHTML&&z.innerHTML==null||C.textContent&&z.textContent==null)&&a(E,""),w?Me(u.dynamicChildren,w,E,p,v,Fn(f,b),y):S||U(u,f,E,null,p,v,Fn(f,b),y,!1),x>0){if(x&16)Ze(E,C,z,p,b);else if(x&2&&C.class!==z.class&&o(E,"class",null,z.class,b),x&4&&o(E,"style",C.style,z.style,b),x&8){const B=f.dynamicProps;for(let Z=0;Z{j&&je(j,p,f,u),L&&dt(f,u,p,"updated")},v)},Me=(u,f,p,v,b,y,S)=>{for(let E=0;E{if(f!==p){if(f!==te)for(const y in f)!Nt(y)&&!(y in p)&&o(u,y,f[y],null,b,v);for(const y in p){if(Nt(y))continue;const S=p[y],E=f[y];S!==E&&y!=="value"&&o(u,y,E,S,b,v)}"value"in p&&o(u,"value",f.value,p.value,b)}},at=(u,f,p,v,b,y,S,E,x)=>{const w=f.el=u?u.el:l(""),L=f.anchor=u?u.anchor:l("");let{patchFlag:C,dynamicChildren:z,slotScopeIds:j}=f;j&&(E=E?E.concat(j):j),u==null?(s(w,p,v),s(L,p,v),Te(f.children||[],p,L,b,y,S,E,x)):C>0&&C&64&&z&&u.dynamicChildren?(Me(u.dynamicChildren,z,p,b,y,S,E),(f.key!=null||b&&f===b.subTree)&&So(u,f,!0)):U(u,f,p,L,b,y,S,E,x)},Ie=(u,f,p,v,b,y,S,E,x)=>{f.slotScopeIds=E,u==null?f.shapeFlag&512?b.ctx.activate(f,p,v,S,x):Ht(f,p,v,b,y,S,x):_t(u,f,x)},Ht=(u,f,p,v,b,y,S)=>{const E=u.component=zl(u,v,b);if(lo(u)&&(E.ctx.renderer=M),Hl(E,!1,S),E.asyncDep){if(b&&b.registerDep(E,oe,S),!u.el){const x=E.subTree=Q(Ot);H(null,x,f,p)}}else oe(E,u,f,p,b,y,S)},_t=(u,f,p)=>{const v=f.component=u.component;if(Sl(u,f,p))if(v.asyncDep&&!v.asyncResolved){Y(v,f,p);return}else v.next=f,v.update();else f.el=u.el,v.vnode=f},oe=(u,f,p,v,b,y,S)=>{const E=()=>{if(u.isMounted){let{next:C,bu:z,u:j,parent:B,vnode:Z}=u;{const $e=Ro(u);if($e){C&&(C.el=Z.el,Y(u,C,S)),$e.asyncDep.then(()=>{u.isUnmounted||E()});return}}let G=C,ye;ht(u,!1),C?(C.el=Z.el,Y(u,C,S)):C=Z,z&&Mn(z),(ye=C.props&&C.props.onVnodeBeforeUpdate)&&je(ye,B,C,Z),ht(u,!0);const me=Ds(u),He=u.subTree;u.subTree=me,O(He,me,d(He.el),_(He),u,b,y),C.el=me.el,G===null&&Rl(u,me.el),j&&we(j,b),(ye=C.props&&C.props.onVnodeUpdated)&&we(()=>je(ye,B,C,Z),b)}else{let C;const{el:z,props:j}=f,{bm:B,m:Z,parent:G,root:ye,type:me}=u,He=Pt(f);ht(u,!1),B&&Mn(B),!He&&(C=j&&j.onVnodeBeforeMount)&&je(C,G,f),ht(u,!0);{ye.ce&&ye.ce._injectChildStyle(me);const $e=u.subTree=Ds(u);O(null,$e,p,v,u,b,y),f.el=$e.el}if(Z&&we(Z,b),!He&&(C=j&&j.onVnodeMounted)){const $e=f;we(()=>je(C,G,$e),b)}(f.shapeFlag&256||G&&Pt(G.vnode)&&G.vnode.shapeFlag&256)&&u.a&&we(u.a,b),u.isMounted=!0,f=p=v=null}};u.scope.on();const x=u.effect=new Hr(E);u.scope.off();const w=u.update=x.run.bind(x),L=u.job=x.runIfDirty.bind(x);L.i=u,L.id=u.uid,x.scheduler=()=>bs(L),ht(u,!0),w()},Y=(u,f,p)=>{f.component=u;const v=u.vnode.props;u.vnode=f,u.next=null,cl(u,f.props,v,p),dl(u,f.children,p),ct(),zs(u),ut()},U=(u,f,p,v,b,y,S,E,x=!1)=>{const w=u&&u.children,L=u?u.shapeFlag:0,C=f.children,{patchFlag:z,shapeFlag:j}=f;if(z>0){if(z&128){et(w,C,p,v,b,y,S,E,x);return}else if(z&256){Be(w,C,p,v,b,y,S,E,x);return}}j&8?(L&16&&Se(w,b,y),C!==w&&a(p,C)):L&16?j&16?et(w,C,p,v,b,y,S,E,x):Se(w,b,y,!0):(L&8&&a(p,""),j&16&&Te(C,p,v,b,y,S,E,x))},Be=(u,f,p,v,b,y,S,E,x)=>{u=u||St,f=f||St;const w=u.length,L=f.length,C=Math.min(w,L);let z;for(z=0;zL?Se(u,b,y,!0,!1,C):Te(f,p,v,b,y,S,E,x,C)},et=(u,f,p,v,b,y,S,E,x)=>{let w=0;const L=f.length;let C=u.length-1,z=L-1;for(;w<=C&&w<=z;){const j=u[w],B=f[w]=x?st(f[w]):Ve(f[w]);if(jt(j,B))O(j,B,p,null,b,y,S,E,x);else break;w++}for(;w<=C&&w<=z;){const j=u[C],B=f[z]=x?st(f[z]):Ve(f[z]);if(jt(j,B))O(j,B,p,null,b,y,S,E,x);else break;C--,z--}if(w>C){if(w<=z){const j=z+1,B=jz)for(;w<=C;)ge(u[w],b,y,!0),w++;else{const j=w,B=w,Z=new Map;for(w=B;w<=z;w++){const be=f[w]=x?st(f[w]):Ve(f[w]);be.key!=null&&Z.set(be.key,w)}let G,ye=0;const me=z-B+1;let He=!1,$e=0;const $t=new Array(me);for(w=0;w=me){ge(be,b,y,!0);continue}let Le;if(be.key!=null)Le=Z.get(be.key);else for(G=B;G<=z;G++)if($t[G-B]===0&&jt(be,f[G])){Le=G;break}Le===void 0?ge(be,b,y,!0):($t[Le-B]=w+1,Le>=$e?$e=Le:He=!0,O(be,f[Le],p,null,b,y,S,E,x),ye++)}const As=He?ml($t):St;for(G=As.length-1,w=me-1;w>=0;w--){const be=B+w,Le=f[be],Os=be+1{const{el:y,type:S,transition:E,children:x,shapeFlag:w}=u;if(w&6){ze(u.component.subTree,f,p,v);return}if(w&128){u.suspense.move(f,p,v);return}if(w&64){S.move(u,f,p,M);return}if(S===ve){s(y,f,p);for(let C=0;CE.enter(y),b);else{const{leave:C,delayLeave:z,afterLeave:j}=E,B=()=>s(y,f,p),Z=()=>{C(y,()=>{B(),j&&j()})};z?z(y,B,Z):Z()}else s(y,f,p)},ge=(u,f,p,v=!1,b=!1)=>{const{type:y,props:S,ref:E,children:x,dynamicChildren:w,shapeFlag:L,patchFlag:C,dirs:z,cacheIndex:j}=u;if(C===-2&&(b=!1),E!=null&&vn(E,null,p,u,!0),j!=null&&(f.renderCache[j]=void 0),L&256){f.ctx.deactivate(u);return}const B=L&1&&z,Z=!Pt(u);let G;if(Z&&(G=S&&S.onVnodeBeforeUnmount)&&je(G,f,u),L&6)on(u.component,p,v);else{if(L&128){u.suspense.unmount(p,v);return}B&&dt(u,null,f,"beforeUnmount"),L&64?u.type.remove(u,f,p,M,v):w&&!w.hasOnce&&(y!==ve||C>0&&C&64)?Se(w,f,p,!1,!0):(y===ve&&C&384||!b&&L&16)&&Se(x,f,p),v&&yt(u)}(Z&&(G=S&&S.onVnodeUnmounted)||B)&&we(()=>{G&&je(G,f,u),B&&dt(u,null,f,"unmounted")},p)},yt=u=>{const{type:f,el:p,anchor:v,transition:b}=u;if(f===ve){bt(p,v);return}if(f===Vn){T(u);return}const y=()=>{r(p),b&&!b.persisted&&b.afterLeave&&b.afterLeave()};if(u.shapeFlag&1&&b&&!b.persisted){const{leave:S,delayLeave:E}=b,x=()=>S(p,y);E?E(u.el,y,x):x()}else y()},bt=(u,f)=>{let p;for(;u!==f;)p=g(u),r(u),u=p;r(f)},on=(u,f,p)=>{const{bum:v,scope:b,job:y,subTree:S,um:E,m:x,a:w}=u;Vs(x),Vs(w),v&&Mn(v),b.stop(),y&&(y.flags|=8,ge(S,u,f,p)),E&&we(E,f),we(()=>{u.isUnmounted=!0},f),f&&f.pendingBranch&&!f.isUnmounted&&u.asyncDep&&!u.asyncResolved&&u.suspenseId===f.pendingId&&(f.deps--,f.deps===0&&f.resolve())},Se=(u,f,p,v=!1,b=!1,y=0)=>{for(let S=y;S{if(u.shapeFlag&6)return _(u.component.subTree);if(u.shapeFlag&128)return u.suspense.next();const f=g(u.anchor||u.el),p=f&&f[Fi];return p?g(p):f};let P=!1;const R=(u,f,p)=>{u==null?f._vnode&&ge(f._vnode,null,null,!0):O(f._vnode||null,u,f,null,null,null,p),f._vnode=u,P||(P=!0,zs(),so(),P=!1)},M={p:O,um:ge,m:ze,r:yt,mt:Ht,mc:Te,pc:U,pbc:Me,n:_,o:e};return{render:R,hydrate:void 0,createApp:il(R)}}function Fn({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function ht({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function gl(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function So(e,t,n=!1){const s=e.children,r=t.children;if(F(s)&&F(r))for(let o=0;o>1,e[n[l]]0&&(t[s]=n[o-1]),n[o]=s)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}function Ro(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Ro(t)}function Vs(e){if(e)for(let t=0;tYe(vl);function an(e,t,n){return Co(e,t,n)}function Co(e,t,n=te){const{immediate:s,deep:r,flush:o,once:i}=n,l=fe({},n),c=t&&s||!t&&o!=="post";let h;if(en){if(o==="sync"){const m=_l();h=m.__watcherHandles||(m.__watcherHandles=[])}else if(!c){const m=()=>{};return m.stop=De,m.resume=De,m.pause=De,m}}const a=pe;l.call=(m,A,O)=>Ne(m,a,A,O);let d=!1;o==="post"?l.scheduler=m=>{we(m,a&&a.suspense)}:o!=="sync"&&(d=!0,l.scheduler=(m,A)=>{A?m():bs(m)}),l.augmentJob=m=>{t&&(m.flags|=4),d&&(m.flags|=2,a&&(m.id=a.uid,m.i=a))};const g=Hi(e,t,l);return en&&(h?h.push(g):c&&g()),g}function yl(e,t,n){const s=this.proxy,r=re(e)?e.includes(".")?Po(s,e):()=>s[e]:e.bind(s,s);let o;V(t)?o=t:(o=t.handler,n=t);const i=rn(this),l=Co(r,o.bind(s),n);return i(),l}function Po(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;rt==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${lt(t)}Modifiers`]||e[`${vt(t)}Modifiers`];function wl(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||te;let r=n;const o=t.startsWith("update:"),i=o&&bl(s,t.slice(7));i&&(i.trim&&(r=n.map(a=>re(a)?a.trim():a)),i.number&&(r=n.map(ti)));let l,c=s[l=Tn(t)]||s[l=Tn(lt(t))];!c&&o&&(c=s[l=Tn(vt(t))]),c&&Ne(c,e,6,r);const h=s[l+"Once"];if(h){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,Ne(h,e,6,r)}}function Ao(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const o=e.emits;let i={},l=!1;if(!V(e)){const c=h=>{const a=Ao(h,t,!0);a&&(l=!0,fe(i,a))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!o&&!l?(se(e)&&s.set(e,null),null):(F(o)?o.forEach(c=>i[c]=null):fe(i,o),se(e)&&s.set(e,i),i)}function Pn(e,t){return!e||!bn(t)?!1:(t=t.slice(2).replace(/Once$/,""),q(e,t[0].toLowerCase()+t.slice(1))||q(e,vt(t))||q(e,t))}function Ds(e){const{type:t,vnode:n,proxy:s,withProxy:r,propsOptions:[o],slots:i,attrs:l,emit:c,render:h,renderCache:a,props:d,data:g,setupState:m,ctx:A,inheritAttrs:O}=e,D=mn(e);let H,I;try{if(n.shapeFlag&4){const T=r||s,J=T;H=Ve(h.call(J,T,a,d,m,g,A)),I=l}else{const T=t;H=Ve(T.length>1?T(d,{attrs:l,slots:i,emit:c}):T(d,null)),I=t.props?l:xl(l)}}catch(T){Wt.length=0,Rn(T,e,1),H=Q(Ot)}let $=H;if(I&&O!==!1){const T=Object.keys(I),{shapeFlag:J}=$;T.length&&J&7&&(o&&T.some(ls)&&(I=El(I,o)),$=Tt($,I,!1,!0))}return n.dirs&&($=Tt($,null,!1,!0),$.dirs=$.dirs?$.dirs.concat(n.dirs):n.dirs),n.transition&&ws($,n.transition),H=$,mn(D),H}const xl=e=>{let t;for(const n in e)(n==="class"||n==="style"||bn(n))&&((t||(t={}))[n]=e[n]);return t},El=(e,t)=>{const n={};for(const s in e)(!ls(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function Sl(e,t,n){const{props:s,children:r,component:o}=e,{props:i,children:l,patchFlag:c}=t,h=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return s?Ns(s,i,h):!!i;if(c&8){const a=t.dynamicProps;for(let d=0;de.__isSuspense;function Cl(e,t){t&&t.pendingBranch?F(e)?t.effects.push(...e):t.effects.push(e):ji(e)}const ve=Symbol.for("v-fgt"),An=Symbol.for("v-txt"),Ot=Symbol.for("v-cmt"),Vn=Symbol.for("v-stc"),Wt=[];let Ee=null;function Re(e=!1){Wt.push(Ee=e?null:[])}function Pl(){Wt.pop(),Ee=Wt[Wt.length-1]||null}let Xt=1;function ks(e,t=!1){Xt+=e,e<0&&Ee&&t&&(Ee.hasOnce=!0)}function To(e){return e.dynamicChildren=Xt>0?Ee||St:null,Pl(),Xt>0&&Ee&&Ee.push(e),e}function ke(e,t,n,s,r,o){return To(N(e,t,n,s,r,o,!0))}function Bs(e,t,n,s,r){return To(Q(e,t,n,s,r,!0))}function Zt(e){return e?e.__v_isVNode===!0:!1}function jt(e,t){return e.type===t.type&&e.key===t.key}const Mo=({key:e})=>e??null,dn=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?re(e)||ue(e)||V(e)?{i:_e,r:e,k:t,f:!!n}:e:null);function N(e,t=null,n=null,s=0,r=null,o=e===ve?0:1,i=!1,l=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Mo(t),ref:t&&dn(t),scopeId:oo,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:_e};return l?(Es(c,n),o&128&&e.normalize(c)):n&&(c.shapeFlag|=re(n)?8:16),Xt>0&&!i&&Ee&&(c.patchFlag>0||o&6)&&c.patchFlag!==32&&Ee.push(c),c}const Q=Al;function Al(e,t=null,n=null,s=0,r=null,o=!1){if((!e||e===Xi)&&(e=Ot),Zt(e)){const l=Tt(e,t,!0);return n&&Es(l,n),Xt>0&&!o&&Ee&&(l.shapeFlag&6?Ee[Ee.indexOf(e)]=l:Ee.push(l)),l.patchFlag=-2,l}if(Fl(e)&&(e=e.__vccOpts),t){t=Ol(t);let{class:l,style:c}=t;l&&!re(l)&&(t.class=as(l)),se(c)&&(ys(c)&&!F(c)&&(c=fe({},c)),t.style=fs(c))}const i=re(e)?1:Oo(e)?128:Vi(e)?64:se(e)?4:V(e)?2:0;return N(e,t,n,s,r,i,o,!0)}function Ol(e){return e?ys(e)||vo(e)?fe({},e):e:null}function Tt(e,t,n=!1,s=!1){const{props:r,ref:o,patchFlag:i,children:l,transition:c}=e,h=t?Tl(r||{},t):r,a={__v_isVNode:!0,__v_skip:!0,type:e.type,props:h,key:h&&Mo(h),ref:t&&t.ref?n&&o?F(o)?o.concat(dn(t)):[o,dn(t)]:dn(t):o,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==ve?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Tt(e.ssContent),ssFallback:e.ssFallback&&Tt(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&s&&ws(a,c.clone(a)),a}function k(e=" ",t=0){return Q(An,null,e,t)}function Ve(e){return e==null||typeof e=="boolean"?Q(Ot):F(e)?Q(ve,null,e.slice()):Zt(e)?st(e):Q(An,null,String(e))}function st(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Tt(e)}function Es(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(F(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),Es(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!vo(t)?t._ctx=_e:r===3&&_e&&(_e.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else V(t)?(t={default:t,_ctx:_e},n=32):(t=String(t),s&64?(n=16,t=[k(t)]):n=8);e.children=t,e.shapeFlag|=n}function Tl(...e){const t={};for(let n=0;n{let r;return(r=e[n])||(r=e[n]=[]),r.push(s),o=>{r.length>1?r.forEach(i=>i(o)):r[0](o)}};yn=t("__VUE_INSTANCE_SETTERS__",n=>pe=n),es=t("__VUE_SSR_SETTERS__",n=>en=n)}const rn=e=>{const t=pe;return yn(e),e.scope.on(),()=>{e.scope.off(),yn(t)}},Us=()=>{pe&&pe.scope.off(),yn(null)};function Io(e){return e.vnode.shapeFlag&4}let en=!1;function Hl(e,t=!1,n=!1){t&&es(t);const{props:s,children:r}=e.vnode,o=Io(e);ll(e,s,o,t),al(e,r,n);const i=o?$l(e,t):void 0;return t&&es(!1),i}function $l(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Zi);const{setup:s}=n;if(s){ct();const r=e.setupContext=s.length>1?jl(e):null,o=rn(e),i=sn(s,e,0,[e.props,r]),l=Sr(i);if(ut(),o(),(l||e.sp)&&!Pt(e)&&io(e),l){if(i.then(Us,Us),t)return i.then(c=>{Ks(e,c)}).catch(c=>{Rn(c,e,0)});e.asyncDep=i}else Ks(e,i)}else zo(e)}function Ks(e,t,n){V(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:se(t)&&(e.setupState=Zr(t)),zo(e)}function zo(e,t,n){const s=e.type;e.render||(e.render=s.render||De);{const r=rn(e);ct();try{el(e)}finally{ut(),r()}}}const Ll={get(e,t){return ce(e,"get",""),e[t]}};function jl(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,Ll),slots:e.slots,emit:e.emit,expose:t}}function Ss(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(Zr(Qr(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Kt)return Kt[n](e)},has(t,n){return n in t||n in Kt}})):e.proxy}function Fl(e){return V(e)&&"__vccOpts"in e}const Ce=(e,t)=>Ii(e,t,en);function Ho(e,t,n){const s=arguments.length;return s===2?se(t)&&!F(t)?Zt(t)?Q(e,null,[t]):Q(e,t):Q(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&Zt(n)&&(n=[n]),Q(e,t,n))}const Vl="3.5.13";/** -* @vue/runtime-dom v3.5.13 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/let ts;const Ws=typeof window<"u"&&window.trustedTypes;if(Ws)try{ts=Ws.createPolicy("vue",{createHTML:e=>e})}catch{}const $o=ts?e=>ts.createHTML(e):e=>e,Dl="http://www.w3.org/2000/svg",Nl="http://www.w3.org/1998/Math/MathML",We=typeof document<"u"?document:null,qs=We&&We.createElement("template"),kl={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t==="svg"?We.createElementNS(Dl,e):t==="mathml"?We.createElementNS(Nl,e):n?We.createElement(e,{is:n}):We.createElement(e);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>We.createTextNode(e),createComment:e=>We.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>We.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,r,o){const i=n?n.previousSibling:t.lastChild;if(r&&(r===o||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===o||!(r=r.nextSibling)););else{qs.innerHTML=$o(s==="svg"?`${e}`:s==="mathml"?`${e}`:e);const l=qs.content;if(s==="svg"||s==="mathml"){const c=l.firstChild;for(;c.firstChild;)l.appendChild(c.firstChild);l.removeChild(c)}t.insertBefore(l,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Bl=Symbol("_vtc");function Ul(e,t,n){const s=e[Bl];s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Gs=Symbol("_vod"),Kl=Symbol("_vsh"),Wl=Symbol(""),ql=/(^|;)\s*display\s*:/;function Gl(e,t,n){const s=e.style,r=re(n);let o=!1;if(n&&!r){if(t)if(re(t))for(const i of t.split(";")){const l=i.slice(0,i.indexOf(":")).trim();n[l]==null&&hn(s,l,"")}else for(const i in t)n[i]==null&&hn(s,i,"");for(const i in n)i==="display"&&(o=!0),hn(s,i,n[i])}else if(r){if(t!==n){const i=s[Wl];i&&(n+=";"+i),s.cssText=n,o=ql.test(n)}}else t&&e.removeAttribute("style");Gs in e&&(e[Gs]=o?s.display:"",e[Kl]&&(s.display="none"))}const Ys=/\s*!important$/;function hn(e,t,n){if(F(n))n.forEach(s=>hn(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=Yl(e,t);Ys.test(n)?e.setProperty(vt(s),n.replace(Ys,""),"important"):e[s]=n}}const Qs=["Webkit","Moz","ms"],Dn={};function Yl(e,t){const n=Dn[t];if(n)return n;let s=lt(t);if(s!=="filter"&&s in e)return Dn[t]=s;s=Pr(s);for(let r=0;rNn||(ec.then(()=>Nn=0),Nn=Date.now());function nc(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;Ne(sc(s,n.value),t,5,[s])};return n.value=e,n.attached=tc(),n}function sc(e,t){if(F(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const nr=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,rc=(e,t,n,s,r,o)=>{const i=r==="svg";t==="class"?Ul(e,s,i):t==="style"?Gl(e,n,s):bn(t)?ls(t)||Xl(e,t,n,s,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):oc(e,t,s,i))?(Zs(e,t,s),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Xs(e,t,s,i,o,t!=="value")):e._isVueCE&&(/[A-Z]/.test(t)||!re(s))?Zs(e,lt(t),s,o,t):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),Xs(e,t,s,i))};function oc(e,t,n,s){if(s)return!!(t==="innerHTML"||t==="textContent"||t in e&&nr(t)&&V(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const r=e.tagName;if(r==="IMG"||r==="VIDEO"||r==="CANVAS"||r==="SOURCE")return!1}return nr(t)&&re(n)?!1:t in e}const ic=fe({patchProp:rc},kl);let sr;function lc(){return sr||(sr=hl(ic))}const cc=(...e)=>{const t=lc().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=fc(s);if(!r)return;const o=t._component;!V(o)&&!o.render&&!o.template&&(o.template=r.innerHTML),r.nodeType===1&&(r.textContent="");const i=n(r,!1,uc(r));return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),i},t};function uc(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function fc(e){return re(e)?document.querySelector(e):e}/*! - * pinia v3.0.2 - * (c) 2025 Eduardo San Martin Morote - * @license MIT - */const ac=Symbol();var rr;(function(e){e.direct="direct",e.patchObject="patch object",e.patchFunction="patch function"})(rr||(rr={}));function dc(){const e=ci(!0),t=e.run(()=>Jr({}));let n=[],s=[];const r=Qr({install(o){r._a=o,o.provide(ac,r),o.config.globalProperties.$pinia=r,s.forEach(i=>n.push(i)),s=[]},use(o){return this._a?n.push(o):s.push(o),this},_p:n,_a:null,_e:e,_s:new Map,state:t});return r}const hc="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20261.76%20226.69'%3e%3cpath%20d='M161.096.001l-30.225%2052.351L100.647.001H-.005l130.877%20226.688L261.749.001z'%20fill='%2341b883'/%3e%3cpath%20d='M161.096.001l-30.225%2052.351L100.647.001H52.346l78.526%20136.01L209.398.001z'%20fill='%2334495e'/%3e%3c/svg%3e";/*! - * vue-router v4.5.1 - * (c) 2025 Eduardo San Martin Morote - * @license MIT - */const Et=typeof document<"u";function Lo(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function pc(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&Lo(e.default)}const K=Object.assign;function kn(e,t){const n={};for(const s in t){const r=t[s];n[s]=Oe(r)?r.map(e):e(r)}return n}const qt=()=>{},Oe=Array.isArray,jo=/#/g,gc=/&/g,mc=/\//g,vc=/=/g,_c=/\?/g,Fo=/\+/g,yc=/%5B/g,bc=/%5D/g,Vo=/%5E/g,wc=/%60/g,Do=/%7B/g,xc=/%7C/g,No=/%7D/g,Ec=/%20/g;function Rs(e){return encodeURI(""+e).replace(xc,"|").replace(yc,"[").replace(bc,"]")}function Sc(e){return Rs(e).replace(Do,"{").replace(No,"}").replace(Vo,"^")}function ns(e){return Rs(e).replace(Fo,"%2B").replace(Ec,"+").replace(jo,"%23").replace(gc,"%26").replace(wc,"`").replace(Do,"{").replace(No,"}").replace(Vo,"^")}function Rc(e){return ns(e).replace(vc,"%3D")}function Cc(e){return Rs(e).replace(jo,"%23").replace(_c,"%3F")}function Pc(e){return e==null?"":Cc(e).replace(mc,"%2F")}function tn(e){try{return decodeURIComponent(""+e)}catch{}return""+e}const Ac=/\/$/,Oc=e=>e.replace(Ac,"");function Bn(e,t,n="/"){let s,r={},o="",i="";const l=t.indexOf("#");let c=t.indexOf("?");return l=0&&(c=-1),c>-1&&(s=t.slice(0,c),o=t.slice(c+1,l>-1?l:t.length),r=e(o)),l>-1&&(s=s||t.slice(0,l),i=t.slice(l,t.length)),s=zc(s??t,n),{fullPath:s+(o&&"?")+o+i,path:s,query:r,hash:tn(i)}}function Tc(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function or(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Mc(e,t,n){const s=t.matched.length-1,r=n.matched.length-1;return s>-1&&s===r&&Mt(t.matched[s],n.matched[r])&&ko(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Mt(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function ko(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!Ic(e[n],t[n]))return!1;return!0}function Ic(e,t){return Oe(e)?ir(e,t):Oe(t)?ir(t,e):e===t}function ir(e,t){return Oe(t)?e.length===t.length&&e.every((n,s)=>n===t[s]):e.length===1&&e[0]===t}function zc(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),s=e.split("/"),r=s[s.length-1];(r===".."||r===".")&&s.push("");let o=n.length-1,i,l;for(i=0;i1&&o--;else break;return n.slice(0,o).join("/")+"/"+s.slice(i).join("/")}const tt={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};var nn;(function(e){e.pop="pop",e.push="push"})(nn||(nn={}));var Gt;(function(e){e.back="back",e.forward="forward",e.unknown=""})(Gt||(Gt={}));function Hc(e){if(!e)if(Et){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Oc(e)}const $c=/^[^#]+#/;function Lc(e,t){return e.replace($c,"#")+t}function jc(e,t){const n=document.documentElement.getBoundingClientRect(),s=e.getBoundingClientRect();return{behavior:t.behavior,left:s.left-n.left-(t.left||0),top:s.top-n.top-(t.top||0)}}const On=()=>({left:window.scrollX,top:window.scrollY});function Fc(e){let t;if("el"in e){const n=e.el,s=typeof n=="string"&&n.startsWith("#"),r=typeof n=="string"?s?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!r)return;t=jc(r,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function lr(e,t){return(history.state?history.state.position-t:-1)+e}const ss=new Map;function Vc(e,t){ss.set(e,t)}function Dc(e){const t=ss.get(e);return ss.delete(e),t}let Nc=()=>location.protocol+"//"+location.host;function Bo(e,t){const{pathname:n,search:s,hash:r}=t,o=e.indexOf("#");if(o>-1){let l=r.includes(e.slice(o))?e.slice(o).length:1,c=r.slice(l);return c[0]!=="/"&&(c="/"+c),or(c,"")}return or(n,e)+s+r}function kc(e,t,n,s){let r=[],o=[],i=null;const l=({state:g})=>{const m=Bo(e,location),A=n.value,O=t.value;let D=0;if(g){if(n.value=m,t.value=g,i&&i===A){i=null;return}D=O?g.position-O.position:0}else s(m);r.forEach(H=>{H(n.value,A,{delta:D,type:nn.pop,direction:D?D>0?Gt.forward:Gt.back:Gt.unknown})})};function c(){i=n.value}function h(g){r.push(g);const m=()=>{const A=r.indexOf(g);A>-1&&r.splice(A,1)};return o.push(m),m}function a(){const{history:g}=window;g.state&&g.replaceState(K({},g.state,{scroll:On()}),"")}function d(){for(const g of o)g();o=[],window.removeEventListener("popstate",l),window.removeEventListener("beforeunload",a)}return window.addEventListener("popstate",l),window.addEventListener("beforeunload",a,{passive:!0}),{pauseListeners:c,listen:h,destroy:d}}function cr(e,t,n,s=!1,r=!1){return{back:e,current:t,forward:n,replaced:s,position:window.history.length,scroll:r?On():null}}function Bc(e){const{history:t,location:n}=window,s={value:Bo(e,n)},r={value:t.state};r.value||o(s.value,{back:null,current:s.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function o(c,h,a){const d=e.indexOf("#"),g=d>-1?(n.host&&document.querySelector("base")?e:e.slice(d))+c:Nc()+e+c;try{t[a?"replaceState":"pushState"](h,"",g),r.value=h}catch(m){console.error(m),n[a?"replace":"assign"](g)}}function i(c,h){const a=K({},t.state,cr(r.value.back,c,r.value.forward,!0),h,{position:r.value.position});o(c,a,!0),s.value=c}function l(c,h){const a=K({},r.value,t.state,{forward:c,scroll:On()});o(a.current,a,!0);const d=K({},cr(s.value,c,null),{position:a.position+1},h);o(c,d,!1),s.value=c}return{location:s,state:r,push:l,replace:i}}function Uc(e){e=Hc(e);const t=Bc(e),n=kc(e,t.state,t.location,t.replace);function s(o,i=!0){i||n.pauseListeners(),history.go(o)}const r=K({location:"",base:e,go:s,createHref:Lc.bind(null,e)},t,n);return Object.defineProperty(r,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(r,"state",{enumerable:!0,get:()=>t.state.value}),r}function Kc(e){return typeof e=="string"||e&&typeof e=="object"}function Uo(e){return typeof e=="string"||typeof e=="symbol"}const Ko=Symbol("");var ur;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(ur||(ur={}));function It(e,t){return K(new Error,{type:e,[Ko]:!0},t)}function Ke(e,t){return e instanceof Error&&Ko in e&&(t==null||!!(e.type&t))}const fr="[^/]+?",Wc={sensitive:!1,strict:!1,start:!0,end:!0},qc=/[.+*?^${}()[\]/\\]/g;function Gc(e,t){const n=K({},Wc,t),s=[];let r=n.start?"^":"";const o=[];for(const h of e){const a=h.length?[]:[90];n.strict&&!h.length&&(r+="/");for(let d=0;dt.length?t.length===1&&t[0]===80?1:-1:0}function Wo(e,t){let n=0;const s=e.score,r=t.score;for(;n0&&t[t.length-1]<0}const Qc={type:0,value:""},Jc=/[a-zA-Z0-9_]/;function Xc(e){if(!e)return[[]];if(e==="/")return[[Qc]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(m){throw new Error(`ERR (${n})/"${h}": ${m}`)}let n=0,s=n;const r=[];let o;function i(){o&&r.push(o),o=[]}let l=0,c,h="",a="";function d(){h&&(n===0?o.push({type:0,value:h}):n===1||n===2||n===3?(o.length>1&&(c==="*"||c==="+")&&t(`A repeatable param (${h}) must be alone in its segment. eg: '/:ids+.`),o.push({type:1,value:h,regexp:a,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):t("Invalid state to consume buffer"),h="")}function g(){h+=c}for(;l{i($)}:qt}function i(d){if(Uo(d)){const g=s.get(d);g&&(s.delete(d),n.splice(n.indexOf(g),1),g.children.forEach(i),g.alias.forEach(i))}else{const g=n.indexOf(d);g>-1&&(n.splice(g,1),d.record.name&&s.delete(d.record.name),d.children.forEach(i),d.alias.forEach(i))}}function l(){return n}function c(d){const g=su(d,n);n.splice(g,0,d),d.record.name&&!pr(d)&&s.set(d.record.name,d)}function h(d,g){let m,A={},O,D;if("name"in d&&d.name){if(m=s.get(d.name),!m)throw It(1,{location:d});D=m.record.name,A=K(dr(g.params,m.keys.filter($=>!$.optional).concat(m.parent?m.parent.keys.filter($=>$.optional):[]).map($=>$.name)),d.params&&dr(d.params,m.keys.map($=>$.name))),O=m.stringify(A)}else if(d.path!=null)O=d.path,m=n.find($=>$.re.test(O)),m&&(A=m.parse(O),D=m.record.name);else{if(m=g.name?s.get(g.name):n.find($=>$.re.test(g.path)),!m)throw It(1,{location:d,currentLocation:g});D=m.record.name,A=K({},g.params,d.params),O=m.stringify(A)}const H=[];let I=m;for(;I;)H.unshift(I.record),I=I.parent;return{name:D,path:O,params:A,matched:H,meta:nu(H)}}e.forEach(d=>o(d));function a(){n.length=0,s.clear()}return{addRoute:o,resolve:h,removeRoute:i,clearRoutes:a,getRoutes:l,getRecordMatcher:r}}function dr(e,t){const n={};for(const s of t)s in e&&(n[s]=e[s]);return n}function hr(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:tu(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}};return Object.defineProperty(t,"mods",{value:{}}),t}function tu(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const s in e.components)t[s]=typeof n=="object"?n[s]:n;return t}function pr(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function nu(e){return e.reduce((t,n)=>K(t,n.meta),{})}function gr(e,t){const n={};for(const s in e)n[s]=s in t?t[s]:e[s];return n}function su(e,t){let n=0,s=t.length;for(;n!==s;){const o=n+s>>1;Wo(e,t[o])<0?s=o:n=o+1}const r=ru(e);return r&&(s=t.lastIndexOf(r,s-1)),s}function ru(e){let t=e;for(;t=t.parent;)if(qo(t)&&Wo(e,t)===0)return t}function qo({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function ou(e){const t={};if(e===""||e==="?")return t;const s=(e[0]==="?"?e.slice(1):e).split("&");for(let r=0;ro&&ns(o)):[s&&ns(s)]).forEach(o=>{o!==void 0&&(t+=(t.length?"&":"")+n,o!=null&&(t+="="+o))})}return t}function iu(e){const t={};for(const n in e){const s=e[n];s!==void 0&&(t[n]=Oe(s)?s.map(r=>r==null?null:""+r):s==null?s:""+s)}return t}const lu=Symbol(""),vr=Symbol(""),Cs=Symbol(""),Go=Symbol(""),rs=Symbol("");function Ft(){let e=[];function t(s){return e.push(s),()=>{const r=e.indexOf(s);r>-1&&e.splice(r,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function rt(e,t,n,s,r,o=i=>i()){const i=s&&(s.enterCallbacks[r]=s.enterCallbacks[r]||[]);return()=>new Promise((l,c)=>{const h=g=>{g===!1?c(It(4,{from:n,to:t})):g instanceof Error?c(g):Kc(g)?c(It(2,{from:t,to:g})):(i&&s.enterCallbacks[r]===i&&typeof g=="function"&&i.push(g),l())},a=o(()=>e.call(s&&s.instances[r],t,n,h));let d=Promise.resolve(a);e.length<3&&(d=d.then(h)),d.catch(g=>c(g))})}function Un(e,t,n,s,r=o=>o()){const o=[];for(const i of e)for(const l in i.components){let c=i.components[l];if(!(t!=="beforeRouteEnter"&&!i.instances[l]))if(Lo(c)){const a=(c.__vccOpts||c)[t];a&&o.push(rt(a,n,s,i,l,r))}else{let h=c();o.push(()=>h.then(a=>{if(!a)throw new Error(`Couldn't resolve component "${l}" at "${i.path}"`);const d=pc(a)?a.default:a;i.mods[l]=a,i.components[l]=d;const m=(d.__vccOpts||d)[t];return m&&rt(m,n,s,i,l,r)()}))}}return o}function _r(e){const t=Ye(Cs),n=Ye(Go),s=Ce(()=>{const c=Ge(e.to);return t.resolve(c)}),r=Ce(()=>{const{matched:c}=s.value,{length:h}=c,a=c[h-1],d=n.matched;if(!a||!d.length)return-1;const g=d.findIndex(Mt.bind(null,a));if(g>-1)return g;const m=yr(c[h-2]);return h>1&&yr(a)===m&&d[d.length-1].path!==m?d.findIndex(Mt.bind(null,c[h-2])):g}),o=Ce(()=>r.value>-1&&au(n.params,s.value.params)),i=Ce(()=>r.value>-1&&r.value===n.matched.length-1&&ko(n.params,s.value.params));function l(c={}){if(fu(c)){const h=t[Ge(e.replace)?"replace":"push"](Ge(e.to)).catch(qt);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>h),h}return Promise.resolve()}return{route:s,href:Ce(()=>s.value.href),isActive:o,isExactActive:i,navigate:l}}function cu(e){return e.length===1?e[0]:e}const uu=zt({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"},viewTransition:Boolean},useLink:_r,setup(e,{slots:t}){const n=Sn(_r(e)),{options:s}=Ye(Cs),r=Ce(()=>({[br(e.activeClass,s.linkActiveClass,"router-link-active")]:n.isActive,[br(e.exactActiveClass,s.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const o=t.default&&cu(t.default(n));return e.custom?o:Ho("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:r.value},o)}}}),os=uu;function fu(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function au(e,t){for(const n in t){const s=t[n],r=e[n];if(typeof s=="string"){if(s!==r)return!1}else if(!Oe(r)||r.length!==s.length||s.some((o,i)=>o!==r[i]))return!1}return!0}function yr(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const br=(e,t,n)=>e??t??n,du=zt({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const s=Ye(rs),r=Ce(()=>e.route||s.value),o=Ye(vr,0),i=Ce(()=>{let h=Ge(o);const{matched:a}=r.value;let d;for(;(d=a[h])&&!d.components;)h++;return h}),l=Ce(()=>r.value.matched[i.value]);fn(vr,Ce(()=>i.value+1)),fn(lu,l),fn(rs,r);const c=Jr();return an(()=>[c.value,l.value,e.name],([h,a,d],[g,m,A])=>{a&&(a.instances[d]=h,m&&m!==a&&h&&h===g&&(a.leaveGuards.size||(a.leaveGuards=m.leaveGuards),a.updateGuards.size||(a.updateGuards=m.updateGuards))),h&&a&&(!m||!Mt(a,m)||!g)&&(a.enterCallbacks[d]||[]).forEach(O=>O(h))},{flush:"post"}),()=>{const h=r.value,a=e.name,d=l.value,g=d&&d.components[a];if(!g)return wr(n.default,{Component:g,route:h});const m=d.props[a],A=m?m===!0?h.params:typeof m=="function"?m(h):m:null,D=Ho(g,K({},A,t,{onVnodeUnmounted:H=>{H.component.isUnmounted&&(d.instances[a]=null)},ref:c}));return wr(n.default,{Component:D,route:h})||D}}});function wr(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const Yo=du;function hu(e){const t=eu(e.routes,e),n=e.parseQuery||ou,s=e.stringifyQuery||mr,r=e.history,o=Ft(),i=Ft(),l=Ft(),c=Ai(tt);let h=tt;Et&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const a=kn.bind(null,_=>""+_),d=kn.bind(null,Pc),g=kn.bind(null,tn);function m(_,P){let R,M;return Uo(_)?(R=t.getRecordMatcher(_),M=P):M=_,t.addRoute(M,R)}function A(_){const P=t.getRecordMatcher(_);P&&t.removeRoute(P)}function O(){return t.getRoutes().map(_=>_.record)}function D(_){return!!t.getRecordMatcher(_)}function H(_,P){if(P=K({},P||c.value),typeof _=="string"){const p=Bn(n,_,P.path),v=t.resolve({path:p.path},P),b=r.createHref(p.fullPath);return K(p,v,{params:g(v.params),hash:tn(p.hash),redirectedFrom:void 0,href:b})}let R;if(_.path!=null)R=K({},_,{path:Bn(n,_.path,P.path).path});else{const p=K({},_.params);for(const v in p)p[v]==null&&delete p[v];R=K({},_,{params:d(p)}),P.params=d(P.params)}const M=t.resolve(R,P),X=_.hash||"";M.params=a(g(M.params));const u=Tc(s,K({},_,{hash:Sc(X),path:M.path})),f=r.createHref(u);return K({fullPath:u,hash:X,query:s===mr?iu(_.query):_.query||{}},M,{redirectedFrom:void 0,href:f})}function I(_){return typeof _=="string"?Bn(n,_,c.value.path):K({},_)}function $(_,P){if(h!==_)return It(8,{from:P,to:_})}function T(_){return ne(_)}function J(_){return T(K(I(_),{replace:!0}))}function le(_){const P=_.matched[_.matched.length-1];if(P&&P.redirect){const{redirect:R}=P;let M=typeof R=="function"?R(_):R;return typeof M=="string"&&(M=M.includes("?")||M.includes("#")?M=I(M):{path:M},M.params={}),K({query:_.query,hash:_.hash,params:M.path!=null?{}:_.params},M)}}function ne(_,P){const R=h=H(_),M=c.value,X=_.state,u=_.force,f=_.replace===!0,p=le(R);if(p)return ne(K(I(p),{state:typeof p=="object"?K({},X,p.state):X,force:u,replace:f}),P||R);const v=R;v.redirectedFrom=P;let b;return!u&&Mc(s,M,R)&&(b=It(16,{to:v,from:M}),ze(M,M,!0,!1)),(b?Promise.resolve(b):Me(v,M)).catch(y=>Ke(y)?Ke(y,2)?y:et(y):U(y,v,M)).then(y=>{if(y){if(Ke(y,2))return ne(K({replace:f},I(y.to),{state:typeof y.to=="object"?K({},X,y.to.state):X,force:u}),P||v)}else y=at(v,M,!0,f,X);return Ze(v,M,y),y})}function Te(_,P){const R=$(_,P);return R?Promise.reject(R):Promise.resolve()}function Xe(_){const P=bt.values().next().value;return P&&typeof P.runWithContext=="function"?P.runWithContext(_):_()}function Me(_,P){let R;const[M,X,u]=pu(_,P);R=Un(M.reverse(),"beforeRouteLeave",_,P);for(const p of M)p.leaveGuards.forEach(v=>{R.push(rt(v,_,P))});const f=Te.bind(null,_,P);return R.push(f),Se(R).then(()=>{R=[];for(const p of o.list())R.push(rt(p,_,P));return R.push(f),Se(R)}).then(()=>{R=Un(X,"beforeRouteUpdate",_,P);for(const p of X)p.updateGuards.forEach(v=>{R.push(rt(v,_,P))});return R.push(f),Se(R)}).then(()=>{R=[];for(const p of u)if(p.beforeEnter)if(Oe(p.beforeEnter))for(const v of p.beforeEnter)R.push(rt(v,_,P));else R.push(rt(p.beforeEnter,_,P));return R.push(f),Se(R)}).then(()=>(_.matched.forEach(p=>p.enterCallbacks={}),R=Un(u,"beforeRouteEnter",_,P,Xe),R.push(f),Se(R))).then(()=>{R=[];for(const p of i.list())R.push(rt(p,_,P));return R.push(f),Se(R)}).catch(p=>Ke(p,8)?p:Promise.reject(p))}function Ze(_,P,R){l.list().forEach(M=>Xe(()=>M(_,P,R)))}function at(_,P,R,M,X){const u=$(_,P);if(u)return u;const f=P===tt,p=Et?history.state:{};R&&(M||f?r.replace(_.fullPath,K({scroll:f&&p&&p.scroll},X)):r.push(_.fullPath,X)),c.value=_,ze(_,P,R,f),et()}let Ie;function Ht(){Ie||(Ie=r.listen((_,P,R)=>{if(!on.listening)return;const M=H(_),X=le(M);if(X){ne(K(X,{replace:!0,force:!0}),M).catch(qt);return}h=M;const u=c.value;Et&&Vc(lr(u.fullPath,R.delta),On()),Me(M,u).catch(f=>Ke(f,12)?f:Ke(f,2)?(ne(K(I(f.to),{force:!0}),M).then(p=>{Ke(p,20)&&!R.delta&&R.type===nn.pop&&r.go(-1,!1)}).catch(qt),Promise.reject()):(R.delta&&r.go(-R.delta,!1),U(f,M,u))).then(f=>{f=f||at(M,u,!1),f&&(R.delta&&!Ke(f,8)?r.go(-R.delta,!1):R.type===nn.pop&&Ke(f,20)&&r.go(-1,!1)),Ze(M,u,f)}).catch(qt)}))}let _t=Ft(),oe=Ft(),Y;function U(_,P,R){et(_);const M=oe.list();return M.length?M.forEach(X=>X(_,P,R)):console.error(_),Promise.reject(_)}function Be(){return Y&&c.value!==tt?Promise.resolve():new Promise((_,P)=>{_t.add([_,P])})}function et(_){return Y||(Y=!_,Ht(),_t.list().forEach(([P,R])=>_?R(_):P()),_t.reset()),_}function ze(_,P,R,M){const{scrollBehavior:X}=e;if(!Et||!X)return Promise.resolve();const u=!R&&Dc(lr(_.fullPath,0))||(M||!R)&&history.state&&history.state.scroll||null;return to().then(()=>X(_,P,u)).then(f=>f&&Fc(f)).catch(f=>U(f,_,P))}const ge=_=>r.go(_);let yt;const bt=new Set,on={currentRoute:c,listening:!0,addRoute:m,removeRoute:A,clearRoutes:t.clearRoutes,hasRoute:D,getRoutes:O,resolve:H,options:e,push:T,replace:J,go:ge,back:()=>ge(-1),forward:()=>ge(1),beforeEach:o.add,beforeResolve:i.add,afterEach:l.add,onError:oe.add,isReady:Be,install(_){const P=this;_.component("RouterLink",os),_.component("RouterView",Yo),_.config.globalProperties.$router=P,Object.defineProperty(_.config.globalProperties,"$route",{enumerable:!0,get:()=>Ge(c)}),Et&&!yt&&c.value===tt&&(yt=!0,T(r.location).catch(X=>{}));const R={};for(const X in tt)Object.defineProperty(R,X,{get:()=>c.value[X],enumerable:!0});_.provide(Cs,P),_.provide(Go,Gr(R)),_.provide(rs,c);const M=_.unmount;bt.add(_),_.unmount=function(){bt.delete(_),bt.size<1&&(h=tt,Ie&&Ie(),Ie=null,c.value=tt,yt=!1,Y=!1),M()}}};function Se(_){return _.reduce((P,R)=>P.then(()=>Xe(R)),Promise.resolve())}return on}function pu(e,t){const n=[],s=[],r=[],o=Math.max(t.matched.length,e.matched.length);for(let i=0;iMt(h,l))?s.push(l):n.push(l));const c=e.matched[i];c&&(t.matched.find(h=>Mt(h,c))||r.push(c))}return[n,s,r]}const gu={class:"greetings"},mu={class:"green"},vu=zt({__name:"HelloWorld",props:{msg:{}},setup(e){return(t,n)=>(Re(),ke("div",gu,[N("h1",mu,Mr(t.msg),1),n[0]||(n[0]=N("h3",null,[k(" You’ve successfully created a project with "),N("a",{href:"https://vite.dev/",target:"_blank",rel:"noopener"},"Vite"),k(" + "),N("a",{href:"https://vuejs.org/",target:"_blank",rel:"noopener"},"Vue 3"),k(". What's next? ")],-1))]))}}),ft=(e,t)=>{const n=e.__vccOpts||e;for(const[s,r]of t)n[s]=r;return n},_u=ft(vu,[["__scopeId","data-v-d1bb330e"]]),yu={class:"wrapper"},bu=zt({__name:"App",setup(e){return(t,n)=>(Re(),ke(ve,null,[N("header",null,[n[2]||(n[2]=N("img",{alt:"Vue logo",class:"logo",src:hc,width:"125",height:"125"},null,-1)),N("div",yu,[Q(_u,{msg:"You did it! I'm admin App!"}),N("nav",null,[Q(Ge(os),{to:"/"},{default:ie(()=>n[0]||(n[0]=[k("Home")])),_:1}),Q(Ge(os),{to:"/about"},{default:ie(()=>n[1]||(n[1]=[k("About")])),_:1})])])]),Q(Ge(Yo))],64))}}),wu=ft(bu,[["__scopeId","data-v-4bc5e6bf"]]),xu="modulepreload",Eu=function(e){return"/"+e},xr={},Su=function(t,n,s){let r=Promise.resolve();if(n&&n.length>0){let i=function(h){return Promise.all(h.map(a=>Promise.resolve(a).then(d=>({status:"fulfilled",value:d}),d=>({status:"rejected",reason:d}))))};document.getElementsByTagName("link");const l=document.querySelector("meta[property=csp-nonce]"),c=(l==null?void 0:l.nonce)||(l==null?void 0:l.getAttribute("nonce"));r=i(n.map(h=>{if(h=Eu(h),h in xr)return;xr[h]=!0;const a=h.endsWith(".css"),d=a?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${h}"]${d}`))return;const g=document.createElement("link");if(g.rel=a?"stylesheet":xu,a||(g.as="script"),g.crossOrigin="",g.href=h,c&&g.setAttribute("nonce",c),document.head.appendChild(g),a)return new Promise((m,A)=>{g.addEventListener("load",m),g.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${h}`)))})}))}function o(i){const l=new Event("vite:preloadError",{cancelable:!0});if(l.payload=i,window.dispatchEvent(l),!l.defaultPrevented)throw i}return r.then(i=>{for(const l of i||[])l.status==="rejected"&&o(l.reason);return t().catch(o)})},Ru={},Cu={class:"item"},Pu={class:"details"};function Au(e,t){return Re(),ke("div",Cu,[N("i",null,[Ln(e.$slots,"icon",{},void 0)]),N("div",Pu,[N("h3",null,[Ln(e.$slots,"heading",{},void 0)]),Ln(e.$slots,"default",{},void 0)])])}const Vt=ft(Ru,[["render",Au],["__scopeId","data-v-fd0742eb"]]),Ou={},Tu={xmlns:"http://www.w3.org/2000/svg",width:"20",height:"17",fill:"currentColor"};function Mu(e,t){return Re(),ke("svg",Tu,t[0]||(t[0]=[N("path",{d:"M11 2.253a1 1 0 1 0-2 0h2zm-2 13a1 1 0 1 0 2 0H9zm.447-12.167a1 1 0 1 0 1.107-1.666L9.447 3.086zM1 2.253L.447 1.42A1 1 0 0 0 0 2.253h1zm0 13H0a1 1 0 0 0 1.553.833L1 15.253zm8.447.833a1 1 0 1 0 1.107-1.666l-1.107 1.666zm0-14.666a1 1 0 1 0 1.107 1.666L9.447 1.42zM19 2.253h1a1 1 0 0 0-.447-.833L19 2.253zm0 13l-.553.833A1 1 0 0 0 20 15.253h-1zm-9.553-.833a1 1 0 1 0 1.107 1.666L9.447 14.42zM9 2.253v13h2v-13H9zm1.553-.833C9.203.523 7.42 0 5.5 0v2c1.572 0 2.961.431 3.947 1.086l1.107-1.666zM5.5 0C3.58 0 1.797.523.447 1.42l1.107 1.666C2.539 2.431 3.928 2 5.5 2V0zM0 2.253v13h2v-13H0zm1.553 13.833C2.539 15.431 3.928 15 5.5 15v-2c-1.92 0-3.703.523-5.053 1.42l1.107 1.666zM5.5 15c1.572 0 2.961.431 3.947 1.086l1.107-1.666C9.203 13.523 7.42 13 5.5 13v2zm5.053-11.914C11.539 2.431 12.928 2 14.5 2V0c-1.92 0-3.703.523-5.053 1.42l1.107 1.666zM14.5 2c1.573 0 2.961.431 3.947 1.086l1.107-1.666C18.203.523 16.421 0 14.5 0v2zm3.5.253v13h2v-13h-2zm1.553 12.167C18.203 13.523 16.421 13 14.5 13v2c1.573 0 2.961.431 3.947 1.086l1.107-1.666zM14.5 13c-1.92 0-3.703.523-5.053 1.42l1.107 1.666C11.539 15.431 12.928 15 14.5 15v-2z"},null,-1)]))}const Iu=ft(Ou,[["render",Mu]]),zu={},Hu={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":"true",role:"img",class:"iconify iconify--mdi",width:"24",height:"24",preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24"};function $u(e,t){return Re(),ke("svg",Hu,t[0]||(t[0]=[N("path",{d:"M20 18v-4h-3v1h-2v-1H9v1H7v-1H4v4h16M6.33 8l-1.74 4H7v-1h2v1h6v-1h2v1h2.41l-1.74-4H6.33M9 5v1h6V5H9m12.84 7.61c.1.22.16.48.16.8V18c0 .53-.21 1-.6 1.41c-.4.4-.85.59-1.4.59H4c-.55 0-1-.19-1.4-.59C2.21 19 2 18.53 2 18v-4.59c0-.32.06-.58.16-.8L4.5 7.22C4.84 6.41 5.45 6 6.33 6H7V5c0-.55.18-1 .57-1.41C7.96 3.2 8.44 3 9 3h6c.56 0 1.04.2 1.43.59c.39.41.57.86.57 1.41v1h.67c.88 0 1.49.41 1.83 1.22l2.34 5.39z",fill:"currentColor"},null,-1)]))}const Lu=ft(zu,[["render",$u]]),ju={},Fu={xmlns:"http://www.w3.org/2000/svg",width:"18",height:"20",fill:"currentColor"};function Vu(e,t){return Re(),ke("svg",Fu,t[0]||(t[0]=[N("path",{d:"M11.447 8.894a1 1 0 1 0-.894-1.789l.894 1.789zm-2.894-.789a1 1 0 1 0 .894 1.789l-.894-1.789zm0 1.789a1 1 0 1 0 .894-1.789l-.894 1.789zM7.447 7.106a1 1 0 1 0-.894 1.789l.894-1.789zM10 9a1 1 0 1 0-2 0h2zm-2 2.5a1 1 0 1 0 2 0H8zm9.447-5.606a1 1 0 1 0-.894-1.789l.894 1.789zm-2.894-.789a1 1 0 1 0 .894 1.789l-.894-1.789zm2 .789a1 1 0 1 0 .894-1.789l-.894 1.789zm-1.106-2.789a1 1 0 1 0-.894 1.789l.894-1.789zM18 5a1 1 0 1 0-2 0h2zm-2 2.5a1 1 0 1 0 2 0h-2zm-5.447-4.606a1 1 0 1 0 .894-1.789l-.894 1.789zM9 1l.447-.894a1 1 0 0 0-.894 0L9 1zm-2.447.106a1 1 0 1 0 .894 1.789l-.894-1.789zm-6 3a1 1 0 1 0 .894 1.789L.553 4.106zm2.894.789a1 1 0 1 0-.894-1.789l.894 1.789zm-2-.789a1 1 0 1 0-.894 1.789l.894-1.789zm1.106 2.789a1 1 0 1 0 .894-1.789l-.894 1.789zM2 5a1 1 0 1 0-2 0h2zM0 7.5a1 1 0 1 0 2 0H0zm8.553 12.394a1 1 0 1 0 .894-1.789l-.894 1.789zm-1.106-2.789a1 1 0 1 0-.894 1.789l.894-1.789zm1.106 1a1 1 0 1 0 .894 1.789l-.894-1.789zm2.894.789a1 1 0 1 0-.894-1.789l.894 1.789zM8 19a1 1 0 1 0 2 0H8zm2-2.5a1 1 0 1 0-2 0h2zm-7.447.394a1 1 0 1 0 .894-1.789l-.894 1.789zM1 15H0a1 1 0 0 0 .553.894L1 15zm1-2.5a1 1 0 1 0-2 0h2zm12.553 2.606a1 1 0 1 0 .894 1.789l-.894-1.789zM17 15l.447.894A1 1 0 0 0 18 15h-1zm1-2.5a1 1 0 1 0-2 0h2zm-7.447-5.394l-2 1 .894 1.789 2-1-.894-1.789zm-1.106 1l-2-1-.894 1.789 2 1 .894-1.789zM8 9v2.5h2V9H8zm8.553-4.894l-2 1 .894 1.789 2-1-.894-1.789zm.894 0l-2-1-.894 1.789 2 1 .894-1.789zM16 5v2.5h2V5h-2zm-4.553-3.894l-2-1-.894 1.789 2 1 .894-1.789zm-2.894-1l-2 1 .894 1.789 2-1L8.553.106zM1.447 5.894l2-1-.894-1.789-2 1 .894 1.789zm-.894 0l2 1 .894-1.789-2-1-.894 1.789zM0 5v2.5h2V5H0zm9.447 13.106l-2-1-.894 1.789 2 1 .894-1.789zm0 1.789l2-1-.894-1.789-2 1 .894 1.789zM10 19v-2.5H8V19h2zm-6.553-3.894l-2-1-.894 1.789 2 1 .894-1.789zM2 15v-2.5H0V15h2zm13.447 1.894l2-1-.894-1.789-2 1 .894 1.789zM18 15v-2.5h-2V15h2z"},null,-1)]))}const Du=ft(ju,[["render",Vu]]),Nu={},ku={xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"currentColor"};function Bu(e,t){return Re(),ke("svg",ku,t[0]||(t[0]=[N("path",{d:"M15 4a1 1 0 1 0 0 2V4zm0 11v-1a1 1 0 0 0-1 1h1zm0 4l-.707.707A1 1 0 0 0 16 19h-1zm-4-4l.707-.707A1 1 0 0 0 11 14v1zm-4.707-1.293a1 1 0 0 0-1.414 1.414l1.414-1.414zm-.707.707l-.707-.707.707.707zM9 11v-1a1 1 0 0 0-.707.293L9 11zm-4 0h1a1 1 0 0 0-1-1v1zm0 4H4a1 1 0 0 0 1.707.707L5 15zm10-9h2V4h-2v2zm2 0a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3v2zm1 1v6h2V7h-2zm0 6a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3h-2zm-1 1h-2v2h2v-2zm-3 1v4h2v-4h-2zm1.707 3.293l-4-4-1.414 1.414 4 4 1.414-1.414zM11 14H7v2h4v-2zm-4 0c-.276 0-.525-.111-.707-.293l-1.414 1.414C5.42 15.663 6.172 16 7 16v-2zm-.707 1.121l3.414-3.414-1.414-1.414-3.414 3.414 1.414 1.414zM9 12h4v-2H9v2zm4 0a3 3 0 0 0 3-3h-2a1 1 0 0 1-1 1v2zm3-3V3h-2v6h2zm0-6a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1h2zm-3-3H3v2h10V0zM3 0a3 3 0 0 0-3 3h2a1 1 0 0 1 1-1V0zM0 3v6h2V3H0zm0 6a3 3 0 0 0 3 3v-2a1 1 0 0 1-1-1H0zm3 3h2v-2H3v2zm1-1v4h2v-4H4zm1.707 4.707l.586-.586-1.414-1.414-.586.586 1.414 1.414z"},null,-1)]))}const Uu=ft(Nu,[["render",Bu]]),Ku={},Wu={xmlns:"http://www.w3.org/2000/svg",width:"20",height:"20",fill:"currentColor"};function qu(e,t){return Re(),ke("svg",Wu,t[0]||(t[0]=[N("path",{d:"M10 3.22l-.61-.6a5.5 5.5 0 0 0-7.666.105 5.5 5.5 0 0 0-.114 7.665L10 18.78l8.39-8.4a5.5 5.5 0 0 0-.114-7.665 5.5 5.5 0 0 0-7.666-.105l-.61.61z"},null,-1)]))}const Gu=ft(Ku,[["render",qu]]),Yu=zt({__name:"TheWelcome",setup(e){const t=()=>fetch("/__open-in-editor?file=README.md");return(n,s)=>(Re(),ke(ve,null,[Q(Vt,null,{icon:ie(()=>[Q(Iu)]),heading:ie(()=>s[0]||(s[0]=[k("Documentation")])),default:ie(()=>[s[1]||(s[1]=k(" Vue’s ")),s[2]||(s[2]=N("a",{href:"https://vuejs.org/",target:"_blank",rel:"noopener"},"official documentation",-1)),s[3]||(s[3]=k(" provides you with all information you need to get started. "))]),_:1}),Q(Vt,null,{icon:ie(()=>[Q(Lu)]),heading:ie(()=>s[4]||(s[4]=[k("Tooling")])),default:ie(()=>[s[6]||(s[6]=k(" This project is served and bundled with ")),s[7]||(s[7]=N("a",{href:"https://vite.dev/guide/features.html",target:"_blank",rel:"noopener"},"Vite",-1)),s[8]||(s[8]=k(". The recommended IDE setup is ")),s[9]||(s[9]=N("a",{href:"https://code.visualstudio.com/",target:"_blank",rel:"noopener"},"VSCode",-1)),s[10]||(s[10]=k(" + ")),s[11]||(s[11]=N("a",{href:"https://github.com/vuejs/language-tools",target:"_blank",rel:"noopener"},"Vue - Official",-1)),s[12]||(s[12]=k(". If you need to test your components and web pages, check out ")),s[13]||(s[13]=N("a",{href:"https://vitest.dev/",target:"_blank",rel:"noopener"},"Vitest",-1)),s[14]||(s[14]=k(" and ")),s[15]||(s[15]=N("a",{href:"https://www.cypress.io/",target:"_blank",rel:"noopener"},"Cypress",-1)),s[16]||(s[16]=k(" / ")),s[17]||(s[17]=N("a",{href:"https://playwright.dev/",target:"_blank",rel:"noopener"},"Playwright",-1)),s[18]||(s[18]=k(". ")),s[19]||(s[19]=N("br",null,null,-1)),s[20]||(s[20]=k(" More instructions are available in ")),N("a",{href:"javascript:void(0)",onClick:t},s[5]||(s[5]=[N("code",null,"README.md",-1)])),s[21]||(s[21]=k(". "))]),_:1}),Q(Vt,null,{icon:ie(()=>[Q(Du)]),heading:ie(()=>s[22]||(s[22]=[k("Ecosystem")])),default:ie(()=>[s[23]||(s[23]=k(" Get official tools and libraries for your project: ")),s[24]||(s[24]=N("a",{href:"https://pinia.vuejs.org/",target:"_blank",rel:"noopener"},"Pinia",-1)),s[25]||(s[25]=k(", ")),s[26]||(s[26]=N("a",{href:"https://router.vuejs.org/",target:"_blank",rel:"noopener"},"Vue Router",-1)),s[27]||(s[27]=k(", ")),s[28]||(s[28]=N("a",{href:"https://test-utils.vuejs.org/",target:"_blank",rel:"noopener"},"Vue Test Utils",-1)),s[29]||(s[29]=k(", and ")),s[30]||(s[30]=N("a",{href:"https://github.com/vuejs/devtools",target:"_blank",rel:"noopener"},"Vue Dev Tools",-1)),s[31]||(s[31]=k(". If you need more resources, we suggest paying ")),s[32]||(s[32]=N("a",{href:"https://github.com/vuejs/awesome-vue",target:"_blank",rel:"noopener"},"Awesome Vue",-1)),s[33]||(s[33]=k(" a visit. "))]),_:1}),Q(Vt,null,{icon:ie(()=>[Q(Uu)]),heading:ie(()=>s[34]||(s[34]=[k("Community")])),default:ie(()=>[s[35]||(s[35]=k(" Got stuck? Ask your question on ")),s[36]||(s[36]=N("a",{href:"https://chat.vuejs.org",target:"_blank",rel:"noopener"},"Vue Land",-1)),s[37]||(s[37]=k(" (our official Discord server), or ")),s[38]||(s[38]=N("a",{href:"https://stackoverflow.com/questions/tagged/vue.js",target:"_blank",rel:"noopener"},"StackOverflow",-1)),s[39]||(s[39]=k(". You should also follow the official ")),s[40]||(s[40]=N("a",{href:"https://bsky.app/profile/vuejs.org",target:"_blank",rel:"noopener"},"@vuejs.org",-1)),s[41]||(s[41]=k(" Bluesky account or the ")),s[42]||(s[42]=N("a",{href:"https://x.com/vuejs",target:"_blank",rel:"noopener"},"@vuejs",-1)),s[43]||(s[43]=k(" X account for latest news in the Vue world. "))]),_:1}),Q(Vt,null,{icon:ie(()=>[Q(Gu)]),heading:ie(()=>s[44]||(s[44]=[k("Support Vue")])),default:ie(()=>[s[45]||(s[45]=k(" As an independent project, Vue relies on community backing for its sustainability. You can help us by ")),s[46]||(s[46]=N("a",{href:"https://vuejs.org/sponsor/",target:"_blank",rel:"noopener"},"becoming a sponsor",-1)),s[47]||(s[47]=k(". "))]),_:1})],64))}}),Qu=zt({__name:"HomeView",setup(e){return(t,n)=>(Re(),ke("main",null,[Q(Yu)]))}}),Ju=hu({history:Uc("/"),routes:[{path:"/",name:"home",component:Qu},{path:"/about",name:"about",component:()=>Su(()=>import("./AboutView-BiO2tasp.js"),__vite__mapDeps([0,1]))}]}),Ps=cc(wu);Ps.use(dc());Ps.use(Ju);Ps.mount("#app");export{ft as _,N as a,ke as c,Re as o}; diff --git a/static/admin/index.html b/static/admin/index.html index 21b9cdf..937a3cf 100644 --- a/static/admin/index.html +++ b/static/admin/index.html @@ -4,9 +4,9 @@ - Vite App - - + ВД Админка + +
diff --git a/static/user/assets/AboutView-CB75s-VL.js b/static/user/assets/AboutView-DL__Ztc9.js similarity index 72% rename from static/user/assets/AboutView-CB75s-VL.js rename to static/user/assets/AboutView-DL__Ztc9.js index 43cee1c..9347518 100644 --- a/static/user/assets/AboutView-CB75s-VL.js +++ b/static/user/assets/AboutView-DL__Ztc9.js @@ -1 +1 @@ -import{_ as o,c as s,a as t,o as a}from"./index-CoZ5hrCd.js";const n={},c={class:"about"};function r(_,e){return a(),s("div",c,e[0]||(e[0]=[t("h1",null,"This is an about page",-1)]))}const l=o(n,[["render",r]]);export{l as default}; +import{_ as o,c as s,a as t,o as a}from"./index-CL3C2fgq.js";const n={},c={class:"about"};function r(_,e){return a(),s("div",c,e[0]||(e[0]=[t("h1",null,"This is an about page",-1)]))}const l=o(n,[["render",r]]);export{l as default}; diff --git a/static/user/assets/index-BBSUJSX-.css b/static/user/assets/index-BBSUJSX-.css deleted file mode 100644 index 5c03503..0000000 --- a/static/user/assets/index-BBSUJSX-.css +++ /dev/null @@ -1 +0,0 @@ -:root{--vt-c-white: #ffffff;--vt-c-white-soft: #f8f8f8;--vt-c-white-mute: #f2f2f2;--vt-c-black: #181818;--vt-c-black-soft: #222222;--vt-c-black-mute: #282828;--vt-c-indigo: #2c3e50;--vt-c-divider-light-1: rgba(60, 60, 60, .29);--vt-c-divider-light-2: rgba(60, 60, 60, .12);--vt-c-divider-dark-1: rgba(84, 84, 84, .65);--vt-c-divider-dark-2: rgba(84, 84, 84, .48);--vt-c-text-light-1: var(--vt-c-indigo);--vt-c-text-light-2: rgba(60, 60, 60, .66);--vt-c-text-dark-1: var(--vt-c-white);--vt-c-text-dark-2: rgba(235, 235, 235, .64);--main-color: rgba(115, 185, 83, 1);--second-color: rgba(98, 156, 68, 1);--main-back-color: rgba(240, 240, 240, 1);--main-back-item-color: rgba(254, 254, 254, 1)}:root{--color-background: var(--vt-c-white);--color-background-soft: var(--vt-c-white-soft);--color-background-mute: var(--vt-c-white-mute);--color-border: var(--vt-c-divider-light-2);--color-border-hover: var(--vt-c-divider-light-1);--color-heading: var(--vt-c-text-light-1);--color-text: var(--vt-c-text-light-1);--section-gap: 160px}*,*:before,*:after{box-sizing:border-box;margin:0;font-weight:400}body{min-height:100dvh;color:var(--color-text);background:var(--main-back-color);transition:color .5s,background-color .5s;line-height:1.6;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:15px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}header[data-v-913ef6b1]{line-height:1.5;max-height:100vh}.logo[data-v-913ef6b1]{display:block;margin:0 auto 2rem}nav[data-v-913ef6b1]{width:100%;font-size:12px;text-align:center;margin-top:2rem}nav a.router-link-exact-active[data-v-913ef6b1]{color:var(--color-text)}nav a.router-link-exact-active[data-v-913ef6b1]:hover{background-color:transparent}nav a[data-v-913ef6b1]{display:inline-block;padding:0 1rem;border-left:1px solid var(--color-border)}nav a[data-v-913ef6b1]:first-of-type{border:0}@media (min-width: 1024px){header[data-v-913ef6b1]{display:flex;place-items:center;padding-right:calc(var(--section-gap) / 2)}.logo[data-v-913ef6b1]{margin:0 2rem 0 0}header .wrapper[data-v-913ef6b1]{display:flex;place-items:flex-start;flex-wrap:wrap}nav[data-v-913ef6b1]{text-align:left;margin-left:-1rem;font-size:1rem;padding:1rem 0;margin-top:1rem}}body[data-v-7d059f18]{overflow:hidden}.hr[data-v-7d059f18]{margin:7px 0}.body-custom[data-v-7d059f18]{font-size:medium}.form-custom[data-v-7d059f18]{background-color:var(--main-color);position:fixed;bottom:0;left:0;width:100%;padding:20px;color:#fff}.center-message[data-v-7d059f18]{display:flex;justify-content:center;align-items:center;height:calc(100dvh - 140px);text-align:center}.input-custom[data-v-7d059f18]{width:100%;box-sizing:border-box;margin-bottom:15px}.button-container[data-v-7d059f18]{display:flex}.button-custom[data-v-7d059f18]{margin-left:auto;background-color:var(--main-back-item-color);font-weight:500}.button-custom[data-v-7d059f18]:hover{border:1px solid #b9b8b8;background-color:#d2d2d2}.input-custom[data-v-7d059f18],.button-custom[data-v-7d059f18]{padding:12px 16px;border:1px solid #ddd;border-radius:15px;font-size:16px}.message-cloud[data-v-7d059f18]{border:1px solid #444444;border-radius:15px;margin:12px;padding:16px;background-color:var(--main-back-item-color)}.message-header[data-v-7d059f18]{font-size:small}.message-content[data-v-7d059f18]{font-weight:500}.message-footer[data-v-7d059f18]{color:var(--second-color)}.header-block[data-v-7d059f18]{height:50px;background-color:var(--main-color);font-size:large;color:#fff;vertical-align:middle;padding:10px 0 10px 16px;font-weight:700}.form-block[data-v-7d059f18]{height:140px}.messages-block[data-v-7d059f18]{height:calc(100dvh - 190px);overflow-y:auto;scrollbar-width:none}@media (min-width: 1025px){.center-block-custom[data-v-7d059f18]{width:700px;margin:0 auto}} diff --git a/static/user/assets/index-CL3C2fgq.js b/static/user/assets/index-CL3C2fgq.js new file mode 100644 index 0000000..ed4fca7 --- /dev/null +++ b/static/user/assets/index-CL3C2fgq.js @@ -0,0 +1,26 @@ +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/AboutView-DL__Ztc9.js","assets/AboutView-CSIvawM9.css"])))=>i.map(i=>d[i]); +(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))s(r);new MutationObserver(r=>{for(const o of r)if(o.type==="childList")for(const i of o.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&s(i)}).observe(document,{childList:!0,subtree:!0});function n(r){const o={};return r.integrity&&(o.integrity=r.integrity),r.referrerPolicy&&(o.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?o.credentials="include":r.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function s(r){if(r.ep)return;r.ep=!0;const o=n(r);fetch(r.href,o)}})();/** +* @vue/shared v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**//*! #__NO_SIDE_EFFECTS__ */function ds(e){const t=Object.create(null);for(const n of e.split(","))t[n]=1;return n=>n in t}const Y={},Pt=[],De=()=>{},ni=()=>!1,bn=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),hs=e=>e.startsWith("onUpdate:"),ce=Object.assign,ps=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},si=Object.prototype.hasOwnProperty,W=(e,t)=>si.call(e,t),j=Array.isArray,Ct=e=>xn(e)==="[object Map]",Ir=e=>xn(e)==="[object Set]",D=e=>typeof e=="function",ne=e=>typeof e=="string",ot=e=>typeof e=="symbol",ee=e=>e!==null&&typeof e=="object",Mr=e=>(ee(e)||D(e))&&D(e.then)&&D(e.catch),$r=Object.prototype.toString,xn=e=>$r.call(e),ri=e=>xn(e).slice(8,-1),Fr=e=>xn(e)==="[object Object]",gs=e=>ne(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Vt=ds(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),wn=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},oi=/-(\w)/g,rt=wn(e=>e.replace(oi,(t,n)=>n?n.toUpperCase():"")),ii=/\B([A-Z])/g,_t=wn(e=>e.replace(ii,"-$1").toLowerCase()),Lr=wn(e=>e.charAt(0).toUpperCase()+e.slice(1)),Fn=wn(e=>e?`on${Lr(e)}`:""),st=(e,t)=>!Object.is(e,t),un=(e,...t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:s,value:n})},zn=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let Ns;const Sn=()=>Ns||(Ns=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function ms(e){if(j(e)){const t={};for(let n=0;n{if(n){const s=n.split(ci);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function _s(e){let t="";if(ne(e))t=e;else if(j(e))for(let n=0;n!!(e&&e.__v_isRef===!0),dt=e=>ne(e)?e:e==null?"":j(e)||ee(e)&&(e.toString===$r||!D(e.toString))?jr(e)?dt(e.value):JSON.stringify(e,Dr,2):String(e),Dr=(e,t)=>jr(t)?Dr(e,t.value):Ct(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r],o)=>(n[Ln(s,o)+" =>"]=r,n),{})}:Ir(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>Ln(n))}:ot(t)?Ln(t):ee(t)&&!j(t)&&!Fr(t)?String(t):t,Ln=(e,t="")=>{var n;return ot(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** +* @vue/reactivity v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let _e;class Vr{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.parent=_e,!t&&_e&&(this.index=(_e.scopes||(_e.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t0)return;if(Bt){let t=Bt;for(Bt=void 0;t;){const n=t.next;t.next=void 0,t.flags&=-9,t=n}}let e;for(;Ut;){let t=Ut;for(Ut=void 0;t;){const n=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(s){e||(e=s)}t=n}}if(e)throw e}function Kr(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function Wr(e){let t,n=e.depsTail,s=n;for(;s;){const r=s.prevDep;s.version===-1?(s===n&&(n=r),bs(s),gi(s)):t=s,s.dep.activeLink=s.prevActiveLink,s.prevActiveLink=void 0,s=r}e.deps=t,e.depsTail=n}function Jn(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(qr(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function qr(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===Jt))return;e.globalVersion=Jt;const t=e.dep;if(e.flags|=2,t.version>0&&!e.isSSR&&e.deps&&!Jn(e)){e.flags&=-3;return}const n=Z,s=Pe;Z=e,Pe=!0;try{Kr(e);const r=e.fn(e._value);(t.version===0||st(r,e._value))&&(e._value=r,t.version++)}catch(r){throw t.version++,r}finally{Z=n,Pe=s,Wr(e),e.flags&=-3}}function bs(e,t=!1){const{dep:n,prevSub:s,nextSub:r}=e;if(s&&(s.nextSub=r,e.prevSub=void 0),r&&(r.prevSub=s,e.nextSub=void 0),n.subs===e&&(n.subs=s,!s&&n.computed)){n.computed.flags&=-5;for(let o=n.computed.deps;o;o=o.nextDep)bs(o,!0)}!t&&!--n.sc&&n.map&&n.map.delete(n.key)}function gi(e){const{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}let Pe=!0;const Gr=[];function it(){Gr.push(Pe),Pe=!1}function lt(){const e=Gr.pop();Pe=e===void 0?!0:e}function Hs(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const n=Z;Z=void 0;try{t()}finally{Z=n}}}let Jt=0;class mi{constructor(t,n){this.sub=t,this.dep=n,this.version=n.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class xs{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0}track(t){if(!Z||!Pe||Z===this.computed)return;let n=this.activeLink;if(n===void 0||n.sub!==Z)n=this.activeLink=new mi(Z,this),Z.deps?(n.prevDep=Z.depsTail,Z.depsTail.nextDep=n,Z.depsTail=n):Z.deps=Z.depsTail=n,zr(n);else if(n.version===-1&&(n.version=this.version,n.nextDep)){const s=n.nextDep;s.prevDep=n.prevDep,n.prevDep&&(n.prevDep.nextDep=s),n.prevDep=Z.depsTail,n.nextDep=void 0,Z.depsTail.nextDep=n,Z.depsTail=n,Z.deps===n&&(Z.deps=s)}return n}trigger(t){this.version++,Jt++,this.notify(t)}notify(t){vs();try{for(let n=this.subs;n;n=n.prevSub)n.sub.notify()&&n.sub.dep.notify()}finally{ys()}}}function zr(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let s=t.deps;s;s=s.nextDep)zr(s)}const n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),e.dep.subs=e}}const Qn=new WeakMap,ht=Symbol(""),Yn=Symbol(""),Qt=Symbol("");function oe(e,t,n){if(Pe&&Z){let s=Qn.get(e);s||Qn.set(e,s=new Map);let r=s.get(n);r||(s.set(n,r=new xs),r.map=s,r.key=n),r.track()}}function Ge(e,t,n,s,r,o){const i=Qn.get(e);if(!i){Jt++;return}const l=c=>{c&&c.trigger()};if(vs(),t==="clear")i.forEach(l);else{const c=j(e),h=c&&gs(n);if(c&&n==="length"){const f=Number(s);i.forEach((d,p)=>{(p==="length"||p===Qt||!ot(p)&&p>=f)&&l(d)})}else switch((n!==void 0||i.has(void 0))&&l(i.get(n)),h&&l(i.get(Qt)),t){case"add":c?h&&l(i.get("length")):(l(i.get(ht)),Ct(e)&&l(i.get(Yn)));break;case"delete":c||(l(i.get(ht)),Ct(e)&&l(i.get(Yn)));break;case"set":Ct(e)&&l(i.get(ht));break}}ys()}function wt(e){const t=K(e);return t===e?t:(oe(t,"iterate",Qt),Ee(e)?t:t.map(ie))}function En(e){return oe(e=K(e),"iterate",Qt),e}const _i={__proto__:null,[Symbol.iterator](){return Hn(this,Symbol.iterator,ie)},concat(...e){return wt(this).concat(...e.map(t=>j(t)?wt(t):t))},entries(){return Hn(this,"entries",e=>(e[1]=ie(e[1]),e))},every(e,t){return ke(this,"every",e,t,void 0,arguments)},filter(e,t){return ke(this,"filter",e,t,n=>n.map(ie),arguments)},find(e,t){return ke(this,"find",e,t,ie,arguments)},findIndex(e,t){return ke(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return ke(this,"findLast",e,t,ie,arguments)},findLastIndex(e,t){return ke(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return ke(this,"forEach",e,t,void 0,arguments)},includes(...e){return jn(this,"includes",e)},indexOf(...e){return jn(this,"indexOf",e)},join(e){return wt(this).join(e)},lastIndexOf(...e){return jn(this,"lastIndexOf",e)},map(e,t){return ke(this,"map",e,t,void 0,arguments)},pop(){return Nt(this,"pop")},push(...e){return Nt(this,"push",e)},reduce(e,...t){return js(this,"reduce",e,t)},reduceRight(e,...t){return js(this,"reduceRight",e,t)},shift(){return Nt(this,"shift")},some(e,t){return ke(this,"some",e,t,void 0,arguments)},splice(...e){return Nt(this,"splice",e)},toReversed(){return wt(this).toReversed()},toSorted(e){return wt(this).toSorted(e)},toSpliced(...e){return wt(this).toSpliced(...e)},unshift(...e){return Nt(this,"unshift",e)},values(){return Hn(this,"values",ie)}};function Hn(e,t,n){const s=En(e),r=s[t]();return s!==e&&!Ee(e)&&(r._next=r.next,r.next=()=>{const o=r._next();return o.value&&(o.value=n(o.value)),o}),r}const vi=Array.prototype;function ke(e,t,n,s,r,o){const i=En(e),l=i!==e&&!Ee(e),c=i[t];if(c!==vi[t]){const d=c.apply(e,o);return l?ie(d):d}let h=n;i!==e&&(l?h=function(d,p){return n.call(this,ie(d),p,e)}:n.length>2&&(h=function(d,p){return n.call(this,d,p,e)}));const f=c.call(i,h,s);return l&&r?r(f):f}function js(e,t,n,s){const r=En(e);let o=n;return r!==e&&(Ee(e)?n.length>3&&(o=function(i,l,c){return n.call(this,i,l,c,e)}):o=function(i,l,c){return n.call(this,i,ie(l),c,e)}),r[t](o,...s)}function jn(e,t,n){const s=K(e);oe(s,"iterate",Qt);const r=s[t](...n);return(r===-1||r===!1)&&Es(n[0])?(n[0]=K(n[0]),s[t](...n)):r}function Nt(e,t,n=[]){it(),vs();const s=K(e)[t].apply(e,n);return ys(),lt(),s}const yi=ds("__proto__,__v_isRef,__isVue"),Jr=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(ot));function bi(e){ot(e)||(e=String(e));const t=K(this);return oe(t,"has",e),t.hasOwnProperty(e)}class Qr{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,s){if(n==="__v_skip")return t.__v_skip;const r=this._isReadonly,o=this._isShallow;if(n==="__v_isReactive")return!r;if(n==="__v_isReadonly")return r;if(n==="__v_isShallow")return o;if(n==="__v_raw")return s===(r?o?Ti:eo:o?Zr:Xr).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const i=j(t);if(!r){let c;if(i&&(c=_i[n]))return c;if(n==="hasOwnProperty")return bi}const l=Reflect.get(t,n,le(t)?t:s);return(ot(n)?Jr.has(n):yi(n))||(r||oe(t,"get",n),o)?l:le(l)?i&&gs(n)?l:l.value:ee(l)?r?no(l):Rn(l):l}}class Yr extends Qr{constructor(t=!1){super(!1,t)}set(t,n,s,r){let o=t[n];if(!this._isShallow){const c=gt(o);if(!Ee(s)&&!gt(s)&&(o=K(o),s=K(s)),!j(t)&&le(o)&&!le(s))return c?!1:(o.value=s,!0)}const i=j(t)&&gs(n)?Number(n)e,on=e=>Reflect.getPrototypeOf(e);function Ri(e,t,n){return function(...s){const r=this.__v_raw,o=K(r),i=Ct(o),l=e==="entries"||e===Symbol.iterator&&i,c=e==="keys"&&i,h=r[e](...s),f=n?Xn:t?Zn:ie;return!t&&oe(o,"iterate",c?Yn:ht),{next(){const{value:d,done:p}=h.next();return p?{value:d,done:p}:{value:l?[f(d[0]),f(d[1])]:f(d),done:p}},[Symbol.iterator](){return this}}}}function ln(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function Pi(e,t){const n={get(r){const o=this.__v_raw,i=K(o),l=K(r);e||(st(r,l)&&oe(i,"get",r),oe(i,"get",l));const{has:c}=on(i),h=t?Xn:e?Zn:ie;if(c.call(i,r))return h(o.get(r));if(c.call(i,l))return h(o.get(l));o!==i&&o.get(r)},get size(){const r=this.__v_raw;return!e&&oe(K(r),"iterate",ht),Reflect.get(r,"size",r)},has(r){const o=this.__v_raw,i=K(o),l=K(r);return e||(st(r,l)&&oe(i,"has",r),oe(i,"has",l)),r===l?o.has(r):o.has(r)||o.has(l)},forEach(r,o){const i=this,l=i.__v_raw,c=K(l),h=t?Xn:e?Zn:ie;return!e&&oe(c,"iterate",ht),l.forEach((f,d)=>r.call(o,h(f),h(d),i))}};return ce(n,e?{add:ln("add"),set:ln("set"),delete:ln("delete"),clear:ln("clear")}:{add(r){!t&&!Ee(r)&&!gt(r)&&(r=K(r));const o=K(this);return on(o).has.call(o,r)||(o.add(r),Ge(o,"add",r,r)),this},set(r,o){!t&&!Ee(o)&&!gt(o)&&(o=K(o));const i=K(this),{has:l,get:c}=on(i);let h=l.call(i,r);h||(r=K(r),h=l.call(i,r));const f=c.call(i,r);return i.set(r,o),h?st(o,f)&&Ge(i,"set",r,o):Ge(i,"add",r,o),this},delete(r){const o=K(this),{has:i,get:l}=on(o);let c=i.call(o,r);c||(r=K(r),c=i.call(o,r)),l&&l.call(o,r);const h=o.delete(r);return c&&Ge(o,"delete",r,void 0),h},clear(){const r=K(this),o=r.size!==0,i=r.clear();return o&&Ge(r,"clear",void 0,void 0),i}}),["keys","values","entries",Symbol.iterator].forEach(r=>{n[r]=Ri(r,e,t)}),n}function ws(e,t){const n=Pi(e,t);return(s,r,o)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(W(n,r)&&r in s?n:s,r,o)}const Ci={get:ws(!1,!1)},Ai={get:ws(!1,!0)},Oi={get:ws(!0,!1)};const Xr=new WeakMap,Zr=new WeakMap,eo=new WeakMap,Ti=new WeakMap;function Ii(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Mi(e){return e.__v_skip||!Object.isExtensible(e)?0:Ii(ri(e))}function Rn(e){return gt(e)?e:Ss(e,!1,wi,Ci,Xr)}function to(e){return Ss(e,!1,Ei,Ai,Zr)}function no(e){return Ss(e,!0,Si,Oi,eo)}function Ss(e,t,n,s,r){if(!ee(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=r.get(e);if(o)return o;const i=Mi(e);if(i===0)return e;const l=new Proxy(e,i===2?s:n);return r.set(e,l),l}function At(e){return gt(e)?At(e.__v_raw):!!(e&&e.__v_isReactive)}function gt(e){return!!(e&&e.__v_isReadonly)}function Ee(e){return!!(e&&e.__v_isShallow)}function Es(e){return e?!!e.__v_raw:!1}function K(e){const t=e&&e.__v_raw;return t?K(t):e}function so(e){return!W(e,"__v_skip")&&Object.isExtensible(e)&&Nr(e,"__v_skip",!0),e}const ie=e=>ee(e)?Rn(e):e,Zn=e=>ee(e)?no(e):e;function le(e){return e?e.__v_isRef===!0:!1}function je(e){return ro(e,!1)}function $i(e){return ro(e,!0)}function ro(e,t){return le(e)?e:new Fi(e,t)}class Fi{constructor(t,n){this.dep=new xs,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=n?t:K(t),this._value=n?t:ie(t),this.__v_isShallow=n}get value(){return this.dep.track(),this._value}set value(t){const n=this._rawValue,s=this.__v_isShallow||Ee(t)||gt(t);t=s?t:K(t),st(t,n)&&(this._rawValue=t,this._value=s?t:ie(t),this.dep.trigger())}}function pt(e){return le(e)?e.value:e}const Li={get:(e,t,n)=>t==="__v_raw"?e:pt(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return le(r)&&!le(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function oo(e){return At(e)?e:new Proxy(e,Li)}class Ni{constructor(t,n,s){this.fn=t,this.setter=n,this._value=void 0,this.dep=new xs(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=Jt-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!n,this.isSSR=s}notify(){if(this.flags|=16,!(this.flags&8)&&Z!==this)return kr(this,!0),!0}get value(){const t=this.dep.track();return qr(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function Hi(e,t,n=!1){let s,r;return D(e)?s=e:(s=e.get,r=e.set),new Ni(s,r,n)}const cn={},hn=new WeakMap;let at;function ji(e,t=!1,n=at){if(n){let s=hn.get(n);s||hn.set(n,s=[]),s.push(e)}}function Di(e,t,n=Y){const{immediate:s,deep:r,once:o,scheduler:i,augmentJob:l,call:c}=n,h=T=>r?T:Ee(T)||r===!1||r===0?ze(T,1):ze(T);let f,d,p,m,A=!1,O=!1;if(le(e)?(d=()=>e.value,A=Ee(e)):At(e)?(d=()=>h(e),A=!0):j(e)?(O=!0,A=e.some(T=>At(T)||Ee(T)),d=()=>e.map(T=>{if(le(T))return T.value;if(At(T))return h(T);if(D(T))return c?c(T,2):T()})):D(e)?t?d=c?()=>c(e,2):e:d=()=>{if(p){it();try{p()}finally{lt()}}const T=at;at=f;try{return c?c(e,3,[m]):e(m)}finally{at=T}}:d=De,t&&r){const T=d,z=r===!0?1/0:r;d=()=>ze(T(),z)}const V=pi(),F=()=>{f.stop(),V&&V.active&&ps(V.effects,f)};if(o&&t){const T=t;t=(...z)=>{T(...z),F()}}let M=O?new Array(e.length).fill(cn):cn;const L=T=>{if(!(!(f.flags&1)||!f.dirty&&!T))if(t){const z=f.run();if(r||A||(O?z.some((re,te)=>st(re,M[te])):st(z,M))){p&&p();const re=at;at=f;try{const te=[z,M===cn?void 0:O&&M[0]===cn?[]:M,m];c?c(t,3,te):t(...te),M=z}finally{at=re}}}else f.run()};return l&&l(L),f=new Ur(d),f.scheduler=i?()=>i(L,!1):L,m=T=>ji(T,!1,f),p=f.onStop=()=>{const T=hn.get(f);if(T){if(c)c(T,4);else for(const z of T)z();hn.delete(f)}},t?s?L(!0):M=f.run():i?i(L.bind(null,!0),!0):f.run(),F.pause=f.pause.bind(f),F.resume=f.resume.bind(f),F.stop=F,F}function ze(e,t=1/0,n){if(t<=0||!ee(e)||e.__v_skip||(n=n||new Set,n.has(e)))return e;if(n.add(e),t--,le(e))ze(e.value,t,n);else if(j(e))for(let s=0;s{ze(s,t,n)});else if(Fr(e)){for(const s in e)ze(e[s],t,n);for(const s of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,s)&&ze(e[s],t,n)}return e}/** +* @vue/runtime-core v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function nn(e,t,n,s){try{return s?e(...s):e()}catch(r){Pn(r,t,n)}}function Ue(e,t,n,s){if(D(e)){const r=nn(e,t,n,s);return r&&Mr(r)&&r.catch(o=>{Pn(o,t,n)}),r}if(j(e)){const r=[];for(let o=0;o>>1,r=fe[s],o=Yt(r);o=Yt(n)?fe.push(e):fe.splice(Ui(t),0,e),e.flags|=1,lo()}}function lo(){pn||(pn=io.then(uo))}function Bi(e){j(e)?Ot.push(...e):et&&e.id===-1?et.splice(St+1,0,e):e.flags&1||(Ot.push(e),e.flags|=1),lo()}function Ds(e,t,n=Ne+1){for(;nYt(n)-Yt(s));if(Ot.length=0,et){et.push(...t);return}for(et=t,St=0;Ste.id==null?e.flags&2?-1:1/0:e.id;function uo(e){try{for(Ne=0;Ne{s._d&&Js(-1);const o=gn(t);let i;try{i=e(...r)}finally{gn(o),s._d&&Js(1)}return i};return s._n=!0,s._c=!0,s._d=!0,s}function es(e,t){if(Se===null)return e;const n=In(Se),s=e.dirs||(e.dirs=[]);for(let r=0;re.__isTeleport;function Cs(e,t){e.shapeFlag&6&&e.component?(e.transition=t,Cs(e.component.subTree,t)):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}/*! #__NO_SIDE_EFFECTS__ */function vt(e,t){return D(e)?ce({name:e.name},t,{setup:e}):e}function ao(e){e.ids=[e.ids[0]+e.ids[2]+++"-",0,0]}function mn(e,t,n,s,r=!1){if(j(e)){e.forEach((A,O)=>mn(A,t&&(j(t)?t[O]:t),n,s,r));return}if(kt(s)&&!r){s.shapeFlag&512&&s.type.__asyncResolved&&s.component.subTree.component&&mn(e,t,n,s.component.subTree);return}const o=s.shapeFlag&4?In(s.component):s.el,i=r?null:o,{i:l,r:c}=e,h=t&&t.r,f=l.refs===Y?l.refs={}:l.refs,d=l.setupState,p=K(d),m=d===Y?()=>!1:A=>W(p,A);if(h!=null&&h!==c&&(ne(h)?(f[h]=null,m(h)&&(d[h]=null)):le(h)&&(h.value=null)),D(c))nn(c,l,12,[i,f]);else{const A=ne(c),O=le(c);if(A||O){const V=()=>{if(e.f){const F=A?m(c)?d[c]:f[c]:c.value;r?j(F)&&ps(F,o):j(F)?F.includes(o)||F.push(o):A?(f[c]=[o],m(c)&&(d[c]=f[c])):(c.value=[o],e.k&&(f[e.k]=c.value))}else A?(f[c]=i,m(c)&&(d[c]=i)):O&&(c.value=i,e.k&&(f[e.k]=i))};i?(V.id=-1,me(V,n)):V()}}}Sn().requestIdleCallback;Sn().cancelIdleCallback;const kt=e=>!!e.type.__asyncLoader,ho=e=>e.type.__isKeepAlive;function qi(e,t){po(e,"a",t)}function Gi(e,t){po(e,"da",t)}function po(e,t,n=ae){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(Cn(t,s,n),n){let r=n.parent;for(;r&&r.parent;)ho(r.parent.vnode)&&zi(s,t,n,r),r=r.parent}}function zi(e,t,n,s){const r=Cn(t,e,s,!0);go(()=>{ps(s[t],r)},n)}function Cn(e,t,n=ae,s=!1){if(n){const r=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{it();const l=sn(n),c=Ue(t,n,e,i);return l(),lt(),c});return s?r.unshift(o):r.push(o),o}}const Je=e=>(t,n=ae)=>{(!Zt||e==="sp")&&Cn(e,(...s)=>t(...s),n)},Ji=Je("bm"),As=Je("m"),Qi=Je("bu"),Yi=Je("u"),Xi=Je("bum"),go=Je("um"),Zi=Je("sp"),el=Je("rtg"),tl=Je("rtc");function nl(e,t=ae){Cn("ec",e,t)}const sl=Symbol.for("v-ndc");function Vs(e,t,n,s){let r;const o=n,i=j(e);if(i||ne(e)){const l=i&&At(e);let c=!1;l&&(c=!Ee(e),e=En(e)),r=new Array(e.length);for(let h=0,f=e.length;ht(l,c,void 0,o));else{const l=Object.keys(e);r=new Array(l.length);for(let c=0,h=l.length;ce?No(e)?In(e):ts(e.parent):null,Kt=ce(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>ts(e.parent),$root:e=>ts(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>_o(e),$forceUpdate:e=>e.f||(e.f=()=>{Ps(e.update)}),$nextTick:e=>e.n||(e.n=Rs.bind(e.proxy)),$watch:e=>El.bind(e)}),Dn=(e,t)=>e!==Y&&!e.__isScriptSetup&&W(e,t),rl={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:s,data:r,props:o,accessCache:i,type:l,appContext:c}=e;let h;if(t[0]!=="$"){const m=i[t];if(m!==void 0)switch(m){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return o[t]}else{if(Dn(s,t))return i[t]=1,s[t];if(r!==Y&&W(r,t))return i[t]=2,r[t];if((h=e.propsOptions[0])&&W(h,t))return i[t]=3,o[t];if(n!==Y&&W(n,t))return i[t]=4,n[t];ns&&(i[t]=0)}}const f=Kt[t];let d,p;if(f)return t==="$attrs"&&oe(e.attrs,"get",""),f(e);if((d=l.__cssModules)&&(d=d[t]))return d;if(n!==Y&&W(n,t))return i[t]=4,n[t];if(p=c.config.globalProperties,W(p,t))return p[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:o}=e;return Dn(r,t)?(r[t]=n,!0):s!==Y&&W(s,t)?(s[t]=n,!0):W(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:o}},i){let l;return!!n[i]||e!==Y&&W(e,i)||Dn(t,i)||(l=o[0])&&W(l,i)||W(s,i)||W(Kt,i)||W(r.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:W(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function Us(e){return j(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let ns=!0;function ol(e){const t=_o(e),n=e.proxy,s=e.ctx;ns=!1,t.beforeCreate&&Bs(t.beforeCreate,e,"bc");const{data:r,computed:o,methods:i,watch:l,provide:c,inject:h,created:f,beforeMount:d,mounted:p,beforeUpdate:m,updated:A,activated:O,deactivated:V,beforeDestroy:F,beforeUnmount:M,destroyed:L,unmounted:T,render:z,renderTracked:re,renderTriggered:te,errorCaptured:Ae,serverPrefetch:Qe,expose:Oe,inheritAttrs:Ye,components:ct,directives:Te,filters:Ft}=t;if(h&&il(h,s,null),i)for(const G in i){const B=i[G];D(B)&&(s[G]=B.bind(n))}if(r){const G=r.call(n,n);ee(G)&&(e.data=Rn(G))}if(ns=!0,o)for(const G in o){const B=o[G],Be=D(B)?B.bind(n,n):D(B.get)?B.get.bind(n,n):De,Xe=!D(B)&&D(B.set)?B.set.bind(n):De,Ie=Re({get:Be,set:Xe});Object.defineProperty(s,G,{enumerable:!0,configurable:!0,get:()=>Ie.value,set:de=>Ie.value=de})}if(l)for(const G in l)mo(l[G],s,n,G);if(c){const G=D(c)?c.call(n):c;Reflect.ownKeys(G).forEach(B=>{fn(B,G[B])})}f&&Bs(f,e,"c");function se(G,B){j(B)?B.forEach(Be=>G(Be.bind(n))):B&&G(B.bind(n))}if(se(Ji,d),se(As,p),se(Qi,m),se(Yi,A),se(qi,O),se(Gi,V),se(nl,Ae),se(tl,re),se(el,te),se(Xi,M),se(go,T),se(Zi,Qe),j(Oe))if(Oe.length){const G=e.exposed||(e.exposed={});Oe.forEach(B=>{Object.defineProperty(G,B,{get:()=>n[B],set:Be=>n[B]=Be})})}else e.exposed||(e.exposed={});z&&e.render===De&&(e.render=z),Ye!=null&&(e.inheritAttrs=Ye),ct&&(e.components=ct),Te&&(e.directives=Te),Qe&&ao(e)}function il(e,t,n=De){j(e)&&(e=ss(e));for(const s in e){const r=e[s];let o;ee(r)?"default"in r?o=Ve(r.from||s,r.default,!0):o=Ve(r.from||s):o=Ve(r),le(o)?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>o.value,set:i=>o.value=i}):t[s]=o}}function Bs(e,t,n){Ue(j(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function mo(e,t,n,s){let r=s.includes(".")?Io(n,s):()=>n[s];if(ne(e)){const o=t[e];D(o)&&Wt(r,o)}else if(D(e))Wt(r,e.bind(n));else if(ee(e))if(j(e))e.forEach(o=>mo(o,t,n,s));else{const o=D(e.handler)?e.handler.bind(n):t[e.handler];D(o)&&Wt(r,o,e)}}function _o(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,l=o.get(t);let c;return l?c=l:!r.length&&!n&&!s?c=t:(c={},r.length&&r.forEach(h=>_n(c,h,i,!0)),_n(c,t,i)),ee(t)&&o.set(t,c),c}function _n(e,t,n,s=!1){const{mixins:r,extends:o}=t;o&&_n(e,o,n,!0),r&&r.forEach(i=>_n(e,i,n,!0));for(const i in t)if(!(s&&i==="expose")){const l=ll[i]||n&&n[i];e[i]=l?l(e[i],t[i]):t[i]}return e}const ll={data:ks,props:Ks,emits:Ks,methods:Dt,computed:Dt,beforeCreate:ue,created:ue,beforeMount:ue,mounted:ue,beforeUpdate:ue,updated:ue,beforeDestroy:ue,beforeUnmount:ue,destroyed:ue,unmounted:ue,activated:ue,deactivated:ue,errorCaptured:ue,serverPrefetch:ue,components:Dt,directives:Dt,watch:ul,provide:ks,inject:cl};function ks(e,t){return t?e?function(){return ce(D(e)?e.call(this,this):e,D(t)?t.call(this,this):t)}:t:e}function cl(e,t){return Dt(ss(e),ss(t))}function ss(e){if(j(e)){const t={};for(let n=0;n1)return n&&D(t)?t.call(s&&s.proxy):t}}const yo={},bo=()=>Object.create(yo),xo=e=>Object.getPrototypeOf(e)===yo;function dl(e,t,n,s=!1){const r={},o=bo();e.propsDefaults=Object.create(null),wo(e,t,r,o);for(const i in e.propsOptions[0])i in r||(r[i]=void 0);n?e.props=s?r:to(r):e.type.props?e.props=r:e.props=o,e.attrs=o}function hl(e,t,n,s){const{props:r,attrs:o,vnode:{patchFlag:i}}=e,l=K(r),[c]=e.propsOptions;let h=!1;if((s||i>0)&&!(i&16)){if(i&8){const f=e.vnode.dynamicProps;for(let d=0;d{c=!0;const[p,m]=So(d,t,!0);ce(i,p),m&&l.push(...m)};!n&&t.mixins.length&&t.mixins.forEach(f),e.extends&&f(e.extends),e.mixins&&e.mixins.forEach(f)}if(!o&&!c)return ee(e)&&s.set(e,Pt),Pt;if(j(o))for(let f=0;fe[0]==="_"||e==="$stable",Os=e=>j(e)?e.map(He):[He(e)],gl=(e,t,n)=>{if(t._n)return t;const s=ki((...r)=>Os(t(...r)),n);return s._c=!1,s},Ro=(e,t,n)=>{const s=e._ctx;for(const r in e){if(Eo(r))continue;const o=e[r];if(D(o))t[r]=gl(r,o,s);else if(o!=null){const i=Os(o);t[r]=()=>i}}},Po=(e,t)=>{const n=Os(t);e.slots.default=()=>n},Co=(e,t,n)=>{for(const s in t)(n||s!=="_")&&(e[s]=t[s])},ml=(e,t,n)=>{const s=e.slots=bo();if(e.vnode.shapeFlag&32){const r=t._;r?(Co(s,t,n),n&&Nr(s,"_",r,!0)):Ro(t,s)}else t&&Po(e,t)},_l=(e,t,n)=>{const{vnode:s,slots:r}=e;let o=!0,i=Y;if(s.shapeFlag&32){const l=t._;l?n&&l===1?o=!1:Co(r,t,n):(o=!t.$stable,Ro(t,r)),i=t}else t&&(Po(e,t),i={default:1});if(o)for(const l in r)!Eo(l)&&i[l]==null&&delete r[l]},me=Il;function vl(e){return yl(e)}function yl(e,t){const n=Sn();n.__VUE__=!0;const{insert:s,remove:r,patchProp:o,createElement:i,createText:l,createComment:c,setText:h,setElementText:f,parentNode:d,nextSibling:p,setScopeId:m=De,insertStaticContent:A}=e,O=(u,a,g,_=null,b=null,y=null,E=void 0,S=null,w=!!a.dynamicChildren)=>{if(u===a)return;u&&!Ht(u,a)&&(_=v(u),de(u,b,y,!0),u=null),a.patchFlag===-2&&(w=!1,a.dynamicChildren=null);const{type:x,ref:N,shapeFlag:P}=a;switch(x){case On:V(u,a,g,_);break;case mt:F(u,a,g,_);break;case Un:u==null&&M(a,g,_,E);break;case we:ct(u,a,g,_,b,y,E,S,w);break;default:P&1?z(u,a,g,_,b,y,E,S,w):P&6?Te(u,a,g,_,b,y,E,S,w):(P&64||P&128)&&x.process(u,a,g,_,b,y,E,S,w,I)}N!=null&&b&&mn(N,u&&u.ref,y,a||u,!a)},V=(u,a,g,_)=>{if(u==null)s(a.el=l(a.children),g,_);else{const b=a.el=u.el;a.children!==u.children&&h(b,a.children)}},F=(u,a,g,_)=>{u==null?s(a.el=c(a.children||""),g,_):a.el=u.el},M=(u,a,g,_)=>{[u.el,u.anchor]=A(u.children,a,g,_,u.el,u.anchor)},L=({el:u,anchor:a},g,_)=>{let b;for(;u&&u!==a;)b=p(u),s(u,g,_),u=b;s(a,g,_)},T=({el:u,anchor:a})=>{let g;for(;u&&u!==a;)g=p(u),r(u),u=g;r(a)},z=(u,a,g,_,b,y,E,S,w)=>{a.type==="svg"?E="svg":a.type==="math"&&(E="mathml"),u==null?re(a,g,_,b,y,E,S,w):Qe(u,a,b,y,E,S,w)},re=(u,a,g,_,b,y,E,S)=>{let w,x;const{props:N,shapeFlag:P,transition:$,dirs:H}=u;if(w=u.el=i(u.type,y,N&&N.is,N),P&8?f(w,u.children):P&16&&Ae(u.children,w,null,_,b,Vn(u,y),E,S),H&&ut(u,null,_,"created"),te(w,u,u.scopeId,E,_),N){for(const X in N)X!=="value"&&!Vt(X)&&o(w,X,null,N[X],y,_);"value"in N&&o(w,"value",null,N.value,y),(x=N.onVnodeBeforeMount)&&Le(x,_,u)}H&&ut(u,null,_,"beforeMount");const U=bl(b,$);U&&$.beforeEnter(w),s(w,a,g),((x=N&&N.onVnodeMounted)||U||H)&&me(()=>{x&&Le(x,_,u),U&&$.enter(w),H&&ut(u,null,_,"mounted")},b)},te=(u,a,g,_,b)=>{if(g&&m(u,g),_)for(let y=0;y<_.length;y++)m(u,_[y]);if(b){let y=b.subTree;if(a===y||$o(y.type)&&(y.ssContent===a||y.ssFallback===a)){const E=b.vnode;te(u,E,E.scopeId,E.slotScopeIds,b.parent)}}},Ae=(u,a,g,_,b,y,E,S,w=0)=>{for(let x=w;x{const S=a.el=u.el;let{patchFlag:w,dynamicChildren:x,dirs:N}=a;w|=u.patchFlag&16;const P=u.props||Y,$=a.props||Y;let H;if(g&&ft(g,!1),(H=$.onVnodeBeforeUpdate)&&Le(H,g,a,u),N&&ut(a,u,g,"beforeUpdate"),g&&ft(g,!0),(P.innerHTML&&$.innerHTML==null||P.textContent&&$.textContent==null)&&f(S,""),x?Oe(u.dynamicChildren,x,S,g,_,Vn(a,b),y):E||B(u,a,S,null,g,_,Vn(a,b),y,!1),w>0){if(w&16)Ye(S,P,$,g,b);else if(w&2&&P.class!==$.class&&o(S,"class",null,$.class,b),w&4&&o(S,"style",P.style,$.style,b),w&8){const U=a.dynamicProps;for(let X=0;X{H&&Le(H,g,a,u),N&&ut(a,u,g,"updated")},_)},Oe=(u,a,g,_,b,y,E)=>{for(let S=0;S{if(a!==g){if(a!==Y)for(const y in a)!Vt(y)&&!(y in g)&&o(u,y,a[y],null,b,_);for(const y in g){if(Vt(y))continue;const E=g[y],S=a[y];E!==S&&y!=="value"&&o(u,y,S,E,b,_)}"value"in g&&o(u,"value",a.value,g.value,b)}},ct=(u,a,g,_,b,y,E,S,w)=>{const x=a.el=u?u.el:l(""),N=a.anchor=u?u.anchor:l("");let{patchFlag:P,dynamicChildren:$,slotScopeIds:H}=a;H&&(S=S?S.concat(H):H),u==null?(s(x,g,_),s(N,g,_),Ae(a.children||[],g,N,b,y,E,S,w)):P>0&&P&64&&$&&u.dynamicChildren?(Oe(u.dynamicChildren,$,g,b,y,E,S),(a.key!=null||b&&a===b.subTree)&&Ao(u,a,!0)):B(u,a,g,N,b,y,E,S,w)},Te=(u,a,g,_,b,y,E,S,w)=>{a.slotScopeIds=S,u==null?a.shapeFlag&512?b.ctx.activate(a,g,_,E,w):Ft(a,g,_,b,y,E,w):yt(u,a,w)},Ft=(u,a,g,_,b,y,E)=>{const S=u.component=Vl(u,_,b);if(ho(u)&&(S.ctx.renderer=I),Ul(S,!1,E),S.asyncDep){if(b&&b.registerDep(S,se,E),!u.el){const w=S.subTree=be(mt);F(null,w,a,g)}}else se(S,u,a,g,b,y,E)},yt=(u,a,g)=>{const _=a.component=u.component;if(Ol(u,a,g))if(_.asyncDep&&!_.asyncResolved){G(_,a,g);return}else _.next=a,_.update();else a.el=u.el,_.vnode=a},se=(u,a,g,_,b,y,E)=>{const S=()=>{if(u.isMounted){let{next:P,bu:$,u:H,parent:U,vnode:X}=u;{const $e=Oo(u);if($e){P&&(P.el=X.el,G(u,P,E)),$e.asyncDep.then(()=>{u.isUnmounted||S()});return}}let q=P,pe;ft(u,!1),P?(P.el=X.el,G(u,P,E)):P=X,$&&un($),(pe=P.props&&P.props.onVnodeBeforeUpdate)&&Le(pe,U,P,X),ft(u,!0);const he=Gs(u),Me=u.subTree;u.subTree=he,O(Me,he,d(Me.el),v(Me),u,b,y),P.el=he.el,q===null&&Tl(u,he.el),H&&me(H,b),(pe=P.props&&P.props.onVnodeUpdated)&&me(()=>Le(pe,U,P,X),b)}else{let P;const{el:$,props:H}=a,{bm:U,m:X,parent:q,root:pe,type:he}=u,Me=kt(a);ft(u,!1),U&&un(U),!Me&&(P=H&&H.onVnodeBeforeMount)&&Le(P,q,a),ft(u,!0);{pe.ce&&pe.ce._injectChildStyle(he);const $e=u.subTree=Gs(u);O(null,$e,g,_,u,b,y),a.el=$e.el}if(X&&me(X,b),!Me&&(P=H&&H.onVnodeMounted)){const $e=a;me(()=>Le(P,q,$e),b)}(a.shapeFlag&256||q&&kt(q.vnode)&&q.vnode.shapeFlag&256)&&u.a&&me(u.a,b),u.isMounted=!0,a=g=_=null}};u.scope.on();const w=u.effect=new Ur(S);u.scope.off();const x=u.update=w.run.bind(w),N=u.job=w.runIfDirty.bind(w);N.i=u,N.id=u.uid,w.scheduler=()=>Ps(N),ft(u,!0),x()},G=(u,a,g)=>{a.component=u;const _=u.vnode.props;u.vnode=a,u.next=null,hl(u,a.props,_,g),_l(u,a.children,g),it(),Ds(u),lt()},B=(u,a,g,_,b,y,E,S,w=!1)=>{const x=u&&u.children,N=u?u.shapeFlag:0,P=a.children,{patchFlag:$,shapeFlag:H}=a;if($>0){if($&128){Xe(x,P,g,_,b,y,E,S,w);return}else if($&256){Be(x,P,g,_,b,y,E,S,w);return}}H&8?(N&16&&xe(x,b,y),P!==x&&f(g,P)):N&16?H&16?Xe(x,P,g,_,b,y,E,S,w):xe(x,b,y,!0):(N&8&&f(g,""),H&16&&Ae(P,g,_,b,y,E,S,w))},Be=(u,a,g,_,b,y,E,S,w)=>{u=u||Pt,a=a||Pt;const x=u.length,N=a.length,P=Math.min(x,N);let $;for($=0;$N?xe(u,b,y,!0,!1,P):Ae(a,g,_,b,y,E,S,w,P)},Xe=(u,a,g,_,b,y,E,S,w)=>{let x=0;const N=a.length;let P=u.length-1,$=N-1;for(;x<=P&&x<=$;){const H=u[x],U=a[x]=w?tt(a[x]):He(a[x]);if(Ht(H,U))O(H,U,g,null,b,y,E,S,w);else break;x++}for(;x<=P&&x<=$;){const H=u[P],U=a[$]=w?tt(a[$]):He(a[$]);if(Ht(H,U))O(H,U,g,null,b,y,E,S,w);else break;P--,$--}if(x>P){if(x<=$){const H=$+1,U=H$)for(;x<=P;)de(u[x],b,y,!0),x++;else{const H=x,U=x,X=new Map;for(x=U;x<=$;x++){const ge=a[x]=w?tt(a[x]):He(a[x]);ge.key!=null&&X.set(ge.key,x)}let q,pe=0;const he=$-U+1;let Me=!1,$e=0;const Lt=new Array(he);for(x=0;x=he){de(ge,b,y,!0);continue}let Fe;if(ge.key!=null)Fe=X.get(ge.key);else for(q=U;q<=$;q++)if(Lt[q-U]===0&&Ht(ge,a[q])){Fe=q;break}Fe===void 0?de(ge,b,y,!0):(Lt[Fe-U]=x+1,Fe>=$e?$e=Fe:Me=!0,O(ge,a[Fe],g,null,b,y,E,S,w),pe++)}const Fs=Me?xl(Lt):Pt;for(q=Fs.length-1,x=he-1;x>=0;x--){const ge=U+x,Fe=a[ge],Ls=ge+1{const{el:y,type:E,transition:S,children:w,shapeFlag:x}=u;if(x&6){Ie(u.component.subTree,a,g,_);return}if(x&128){u.suspense.move(a,g,_);return}if(x&64){E.move(u,a,g,I);return}if(E===we){s(y,a,g);for(let P=0;PS.enter(y),b);else{const{leave:P,delayLeave:$,afterLeave:H}=S,U=()=>s(y,a,g),X=()=>{P(y,()=>{U(),H&&H()})};$?$(y,U,X):X()}else s(y,a,g)},de=(u,a,g,_=!1,b=!1)=>{const{type:y,props:E,ref:S,children:w,dynamicChildren:x,shapeFlag:N,patchFlag:P,dirs:$,cacheIndex:H}=u;if(P===-2&&(b=!1),S!=null&&mn(S,null,g,u,!0),H!=null&&(a.renderCache[H]=void 0),N&256){a.ctx.deactivate(u);return}const U=N&1&&$,X=!kt(u);let q;if(X&&(q=E&&E.onVnodeBeforeUnmount)&&Le(q,a,u),N&6)rn(u.component,g,_);else{if(N&128){u.suspense.unmount(g,_);return}U&&ut(u,null,a,"beforeUnmount"),N&64?u.type.remove(u,a,g,I,_):x&&!x.hasOnce&&(y!==we||P>0&&P&64)?xe(x,a,g,!1,!0):(y===we&&P&384||!b&&N&16)&&xe(w,a,g),_&&bt(u)}(X&&(q=E&&E.onVnodeUnmounted)||U)&&me(()=>{q&&Le(q,a,u),U&&ut(u,null,a,"unmounted")},g)},bt=u=>{const{type:a,el:g,anchor:_,transition:b}=u;if(a===we){xt(g,_);return}if(a===Un){T(u);return}const y=()=>{r(g),b&&!b.persisted&&b.afterLeave&&b.afterLeave()};if(u.shapeFlag&1&&b&&!b.persisted){const{leave:E,delayLeave:S}=b,w=()=>E(g,y);S?S(u.el,y,w):w()}else y()},xt=(u,a)=>{let g;for(;u!==a;)g=p(u),r(u),u=g;r(a)},rn=(u,a,g)=>{const{bum:_,scope:b,job:y,subTree:E,um:S,m:w,a:x}=u;qs(w),qs(x),_&&un(_),b.stop(),y&&(y.flags|=8,de(E,u,a,g)),S&&me(S,a),me(()=>{u.isUnmounted=!0},a),a&&a.pendingBranch&&!a.isUnmounted&&u.asyncDep&&!u.asyncResolved&&u.suspenseId===a.pendingId&&(a.deps--,a.deps===0&&a.resolve())},xe=(u,a,g,_=!1,b=!1,y=0)=>{for(let E=y;E{if(u.shapeFlag&6)return v(u.component.subTree);if(u.shapeFlag&128)return u.suspense.next();const a=p(u.anchor||u.el),g=a&&a[Ki];return g?p(g):a};let C=!1;const R=(u,a,g)=>{u==null?a._vnode&&de(a._vnode,null,null,!0):O(a._vnode||null,u,a,null,null,null,g),a._vnode=u,C||(C=!0,Ds(),co(),C=!1)},I={p:O,um:de,m:Ie,r:bt,mt:Ft,mc:Ae,pc:B,pbc:Oe,n:v,o:e};return{render:R,hydrate:void 0,createApp:al(R)}}function Vn({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function ft({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function bl(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function Ao(e,t,n=!1){const s=e.children,r=t.children;if(j(s)&&j(r))for(let o=0;o>1,e[n[l]]0&&(t[s]=n[o-1]),n[o]=s)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}function Oo(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Oo(t)}function qs(e){if(e)for(let t=0;tVe(wl);function Wt(e,t,n){return To(e,t,n)}function To(e,t,n=Y){const{immediate:s,deep:r,flush:o,once:i}=n,l=ce({},n),c=t&&s||!t&&o!=="post";let h;if(Zt){if(o==="sync"){const m=Sl();h=m.__watcherHandles||(m.__watcherHandles=[])}else if(!c){const m=()=>{};return m.stop=De,m.resume=De,m.pause=De,m}}const f=ae;l.call=(m,A,O)=>Ue(m,f,A,O);let d=!1;o==="post"?l.scheduler=m=>{me(m,f&&f.suspense)}:o!=="sync"&&(d=!0,l.scheduler=(m,A)=>{A?m():Ps(m)}),l.augmentJob=m=>{t&&(m.flags|=4),d&&(m.flags|=2,f&&(m.id=f.uid,m.i=f))};const p=Di(e,t,l);return Zt&&(h?h.push(p):c&&p()),p}function El(e,t,n){const s=this.proxy,r=ne(e)?e.includes(".")?Io(s,e):()=>s[e]:e.bind(s,s);let o;D(t)?o=t:(o=t.handler,n=t);const i=sn(this),l=To(r,o.bind(s),n);return i(),l}function Io(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;rt==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${rt(t)}Modifiers`]||e[`${_t(t)}Modifiers`];function Pl(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||Y;let r=n;const o=t.startsWith("update:"),i=o&&Rl(s,t.slice(7));i&&(i.trim&&(r=n.map(f=>ne(f)?f.trim():f)),i.number&&(r=n.map(zn)));let l,c=s[l=Fn(t)]||s[l=Fn(rt(t))];!c&&o&&(c=s[l=Fn(_t(t))]),c&&Ue(c,e,6,r);const h=s[l+"Once"];if(h){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,Ue(h,e,6,r)}}function Mo(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const o=e.emits;let i={},l=!1;if(!D(e)){const c=h=>{const f=Mo(h,t,!0);f&&(l=!0,ce(i,f))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!o&&!l?(ee(e)&&s.set(e,null),null):(j(o)?o.forEach(c=>i[c]=null):ce(i,o),ee(e)&&s.set(e,i),i)}function An(e,t){return!e||!bn(t)?!1:(t=t.slice(2).replace(/Once$/,""),W(e,t[0].toLowerCase()+t.slice(1))||W(e,_t(t))||W(e,t))}function Gs(e){const{type:t,vnode:n,proxy:s,withProxy:r,propsOptions:[o],slots:i,attrs:l,emit:c,render:h,renderCache:f,props:d,data:p,setupState:m,ctx:A,inheritAttrs:O}=e,V=gn(e);let F,M;try{if(n.shapeFlag&4){const T=r||s,z=T;F=He(h.call(z,T,f,d,m,p,A)),M=l}else{const T=t;F=He(T.length>1?T(d,{attrs:l,slots:i,emit:c}):T(d,null)),M=t.props?l:Cl(l)}}catch(T){qt.length=0,Pn(T,e,1),F=be(mt)}let L=F;if(M&&O!==!1){const T=Object.keys(M),{shapeFlag:z}=L;T.length&&z&7&&(o&&T.some(hs)&&(M=Al(M,o)),L=It(L,M,!1,!0))}return n.dirs&&(L=It(L,null,!1,!0),L.dirs=L.dirs?L.dirs.concat(n.dirs):n.dirs),n.transition&&Cs(L,n.transition),F=L,gn(V),F}const Cl=e=>{let t;for(const n in e)(n==="class"||n==="style"||bn(n))&&((t||(t={}))[n]=e[n]);return t},Al=(e,t)=>{const n={};for(const s in e)(!hs(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function Ol(e,t,n){const{props:s,children:r,component:o}=e,{props:i,children:l,patchFlag:c}=t,h=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return s?zs(s,i,h):!!i;if(c&8){const f=t.dynamicProps;for(let d=0;de.__isSuspense;function Il(e,t){t&&t.pendingBranch?j(e)?t.effects.push(...e):t.effects.push(e):Bi(e)}const we=Symbol.for("v-fgt"),On=Symbol.for("v-txt"),mt=Symbol.for("v-cmt"),Un=Symbol.for("v-stc"),qt=[];let ye=null;function ve(e=!1){qt.push(ye=e?null:[])}function Ml(){qt.pop(),ye=qt[qt.length-1]||null}let Xt=1;function Js(e,t=!1){Xt+=e,e<0&&ye&&t&&(ye.hasOnce=!0)}function Fo(e){return e.dynamicChildren=Xt>0?ye||Pt:null,Ml(),Xt>0&&ye&&ye.push(e),e}function We(e,t,n,s,r,o){return Fo(Q(e,t,n,s,r,o,!0))}function Tn(e,t,n,s,r){return Fo(be(e,t,n,s,r,!0))}function vn(e){return e?e.__v_isVNode===!0:!1}function Ht(e,t){return e.type===t.type&&e.key===t.key}const Lo=({key:e})=>e??null,an=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?ne(e)||le(e)||D(e)?{i:Se,r:e,k:t,f:!!n}:e:null);function Q(e,t=null,n=null,s=0,r=null,o=e===we?0:1,i=!1,l=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Lo(t),ref:t&&an(t),scopeId:fo,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:Se};return l?(Ts(c,n),o&128&&e.normalize(c)):n&&(c.shapeFlag|=ne(n)?8:16),Xt>0&&!i&&ye&&(c.patchFlag>0||o&6)&&c.patchFlag!==32&&ye.push(c),c}const be=$l;function $l(e,t=null,n=null,s=0,r=null,o=!1){if((!e||e===sl)&&(e=mt),vn(e)){const l=It(e,t,!0);return n&&Ts(l,n),Xt>0&&!o&&ye&&(l.shapeFlag&6?ye[ye.indexOf(e)]=l:ye.push(l)),l.patchFlag=-2,l}if(Wl(e)&&(e=e.__vccOpts),t){t=Fl(t);let{class:l,style:c}=t;l&&!ne(l)&&(t.class=_s(l)),ee(c)&&(Es(c)&&!j(c)&&(c=ce({},c)),t.style=ms(c))}const i=ne(e)?1:$o(e)?128:Wi(e)?64:ee(e)?4:D(e)?2:0;return Q(e,t,n,s,r,i,o,!0)}function Fl(e){return e?Es(e)||xo(e)?ce({},e):e:null}function It(e,t,n=!1,s=!1){const{props:r,ref:o,patchFlag:i,children:l,transition:c}=e,h=t?Hl(r||{},t):r,f={__v_isVNode:!0,__v_skip:!0,type:e.type,props:h,key:h&&Lo(h),ref:t&&t.ref?n&&o?j(o)?o.concat(an(t)):[o,an(t)]:an(t):o,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==we?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&It(e.ssContent),ssFallback:e.ssFallback&&It(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&s&&Cs(f,c.clone(f)),f}function Ll(e=" ",t=0){return be(On,null,e,t)}function Nl(e="",t=!1){return t?(ve(),Tn(mt,null,e)):be(mt,null,e)}function He(e){return e==null||typeof e=="boolean"?be(mt):j(e)?be(we,null,e.slice()):vn(e)?tt(e):be(On,null,String(e))}function tt(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:It(e)}function Ts(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(j(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),Ts(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!xo(t)?t._ctx=Se:r===3&&Se&&(Se.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else D(t)?(t={default:t,_ctx:Se},n=32):(t=String(t),s&64?(n=16,t=[Ll(t)]):n=8);e.children=t,e.shapeFlag|=n}function Hl(...e){const t={};for(let n=0;n{let r;return(r=e[n])||(r=e[n]=[]),r.push(s),o=>{r.length>1?r.forEach(i=>i(o)):r[0](o)}};yn=t("__VUE_INSTANCE_SETTERS__",n=>ae=n),os=t("__VUE_SSR_SETTERS__",n=>Zt=n)}const sn=e=>{const t=ae;return yn(e),e.scope.on(),()=>{e.scope.off(),yn(t)}},Qs=()=>{ae&&ae.scope.off(),yn(null)};function No(e){return e.vnode.shapeFlag&4}let Zt=!1;function Ul(e,t=!1,n=!1){t&&os(t);const{props:s,children:r}=e.vnode,o=No(e);dl(e,s,o,t),ml(e,r,n);const i=o?Bl(e,t):void 0;return t&&os(!1),i}function Bl(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,rl);const{setup:s}=n;if(s){it();const r=e.setupContext=s.length>1?Kl(e):null,o=sn(e),i=nn(s,e,0,[e.props,r]),l=Mr(i);if(lt(),o(),(l||e.sp)&&!kt(e)&&ao(e),l){if(i.then(Qs,Qs),t)return i.then(c=>{Ys(e,c)}).catch(c=>{Pn(c,e,0)});e.asyncDep=i}else Ys(e,i)}else Ho(e)}function Ys(e,t,n){D(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:ee(t)&&(e.setupState=oo(t)),Ho(e)}function Ho(e,t,n){const s=e.type;e.render||(e.render=s.render||De);{const r=sn(e);it();try{ol(e)}finally{lt(),r()}}}const kl={get(e,t){return oe(e,"get",""),e[t]}};function Kl(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,kl),slots:e.slots,emit:e.emit,expose:t}}function In(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(oo(so(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Kt)return Kt[n](e)},has(t,n){return n in t||n in Kt}})):e.proxy}function Wl(e){return D(e)&&"__vccOpts"in e}const Re=(e,t)=>Hi(e,t,Zt);function jo(e,t,n){const s=arguments.length;return s===2?ee(t)&&!j(t)?vn(t)?be(e,null,[t]):be(e,t):be(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&vn(n)&&(n=[n]),be(e,t,n))}const ql="3.5.13";/** +* @vue/runtime-dom v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let is;const Xs=typeof window<"u"&&window.trustedTypes;if(Xs)try{is=Xs.createPolicy("vue",{createHTML:e=>e})}catch{}const Do=is?e=>is.createHTML(e):e=>e,Gl="http://www.w3.org/2000/svg",zl="http://www.w3.org/1998/Math/MathML",qe=typeof document<"u"?document:null,Zs=qe&&qe.createElement("template"),Jl={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t==="svg"?qe.createElementNS(Gl,e):t==="mathml"?qe.createElementNS(zl,e):n?qe.createElement(e,{is:n}):qe.createElement(e);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>qe.createTextNode(e),createComment:e=>qe.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>qe.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,r,o){const i=n?n.previousSibling:t.lastChild;if(r&&(r===o||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===o||!(r=r.nextSibling)););else{Zs.innerHTML=Do(s==="svg"?`${e}`:s==="mathml"?`${e}`:e);const l=Zs.content;if(s==="svg"||s==="mathml"){const c=l.firstChild;for(;c.firstChild;)l.appendChild(c.firstChild);l.removeChild(c)}t.insertBefore(l,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Ql=Symbol("_vtc");function Yl(e,t,n){const s=e[Ql];s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const er=Symbol("_vod"),Xl=Symbol("_vsh"),Zl=Symbol(""),ec=/(^|;)\s*display\s*:/;function tc(e,t,n){const s=e.style,r=ne(n);let o=!1;if(n&&!r){if(t)if(ne(t))for(const i of t.split(";")){const l=i.slice(0,i.indexOf(":")).trim();n[l]==null&&dn(s,l,"")}else for(const i in t)n[i]==null&&dn(s,i,"");for(const i in n)i==="display"&&(o=!0),dn(s,i,n[i])}else if(r){if(t!==n){const i=s[Zl];i&&(n+=";"+i),s.cssText=n,o=ec.test(n)}}else t&&e.removeAttribute("style");er in e&&(e[er]=o?s.display:"",e[Xl]&&(s.display="none"))}const tr=/\s*!important$/;function dn(e,t,n){if(j(n))n.forEach(s=>dn(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=nc(e,t);tr.test(n)?e.setProperty(_t(s),n.replace(tr,""),"important"):e[s]=n}}const nr=["Webkit","Moz","ms"],Bn={};function nc(e,t){const n=Bn[t];if(n)return n;let s=rt(t);if(s!=="filter"&&s in e)return Bn[t]=s;s=Lr(s);for(let r=0;rkn||(ic.then(()=>kn=0),kn=Date.now());function cc(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;Ue(uc(s,n.value),t,5,[s])};return n.value=e,n.attached=lc(),n}function uc(e,t){if(j(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const cr=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,fc=(e,t,n,s,r,o)=>{const i=r==="svg";t==="class"?Yl(e,s,i):t==="style"?tc(e,n,s):bn(t)?hs(t)||rc(e,t,n,s,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):ac(e,t,s,i))?(or(e,t,s),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&rr(e,t,s,i,o,t!=="value")):e._isVueCE&&(/[A-Z]/.test(t)||!ne(s))?or(e,rt(t),s,o,t):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),rr(e,t,s,i))};function ac(e,t,n,s){if(s)return!!(t==="innerHTML"||t==="textContent"||t in e&&cr(t)&&D(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const r=e.tagName;if(r==="IMG"||r==="VIDEO"||r==="CANVAS"||r==="SOURCE")return!1}return cr(t)&&ne(n)?!1:t in e}const ur=e=>{const t=e.props["onUpdate:modelValue"]||!1;return j(t)?n=>un(t,n):t};function dc(e){e.target.composing=!0}function fr(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Kn=Symbol("_assign"),ls={created(e,{modifiers:{lazy:t,trim:n,number:s}},r){e[Kn]=ur(r);const o=s||r.props&&r.props.type==="number";Et(e,t?"change":"input",i=>{if(i.target.composing)return;let l=e.value;n&&(l=l.trim()),o&&(l=zn(l)),e[Kn](l)}),n&&Et(e,"change",()=>{e.value=e.value.trim()}),t||(Et(e,"compositionstart",dc),Et(e,"compositionend",fr),Et(e,"change",fr))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,oldValue:n,modifiers:{lazy:s,trim:r,number:o}},i){if(e[Kn]=ur(i),e.composing)return;const l=(o||e.type==="number")&&!/^0\d/.test(e.value)?zn(e.value):e.value,c=t??"";l!==c&&(document.activeElement===e&&e.type!=="range"&&(s&&t===n||r&&e.value.trim()===c)||(e.value=c))}},hc=["ctrl","shift","alt","meta"],pc={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>hc.some(n=>e[`${n}Key`]&&!t.includes(n))},Vo=(e,t)=>{const n=e._withMods||(e._withMods={}),s=t.join(".");return n[s]||(n[s]=(r,...o)=>{for(let i=0;i{const t=mc().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=yc(s);if(!r)return;const o=t._component;!D(o)&&!o.render&&!o.template&&(o.template=r.innerHTML),r.nodeType===1&&(r.textContent="");const i=n(r,!1,vc(r));return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),i},t};function vc(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function yc(e){return ne(e)?document.querySelector(e):e}/*! + * pinia v3.0.2 + * (c) 2025 Eduardo San Martin Morote + * @license MIT + */const bc=Symbol();var dr;(function(e){e.direct="direct",e.patchObject="patch object",e.patchFunction="patch function"})(dr||(dr={}));function xc(){const e=hi(!0),t=e.run(()=>je({}));let n=[],s=[];const r=so({install(o){r._a=o,o.provide(bc,r),o.config.globalProperties.$pinia=r,s.forEach(i=>n.push(i)),s=[]},use(o){return this._a?n.push(o):s.push(o),this},_p:n,_a:null,_e:e,_s:new Map,state:t});return r}/*! + * vue-router v4.5.1 + * (c) 2025 Eduardo San Martin Morote + * @license MIT + */const Rt=typeof document<"u";function Uo(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function wc(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&Uo(e.default)}const k=Object.assign;function Wn(e,t){const n={};for(const s in t){const r=t[s];n[s]=Ce(r)?r.map(e):e(r)}return n}const Gt=()=>{},Ce=Array.isArray,Bo=/#/g,Sc=/&/g,Ec=/\//g,Rc=/=/g,Pc=/\?/g,ko=/\+/g,Cc=/%5B/g,Ac=/%5D/g,Ko=/%5E/g,Oc=/%60/g,Wo=/%7B/g,Tc=/%7C/g,qo=/%7D/g,Ic=/%20/g;function Is(e){return encodeURI(""+e).replace(Tc,"|").replace(Cc,"[").replace(Ac,"]")}function Mc(e){return Is(e).replace(Wo,"{").replace(qo,"}").replace(Ko,"^")}function cs(e){return Is(e).replace(ko,"%2B").replace(Ic,"+").replace(Bo,"%23").replace(Sc,"%26").replace(Oc,"`").replace(Wo,"{").replace(qo,"}").replace(Ko,"^")}function $c(e){return cs(e).replace(Rc,"%3D")}function Fc(e){return Is(e).replace(Bo,"%23").replace(Pc,"%3F")}function Lc(e){return e==null?"":Fc(e).replace(Ec,"%2F")}function en(e){try{return decodeURIComponent(""+e)}catch{}return""+e}const Nc=/\/$/,Hc=e=>e.replace(Nc,"");function qn(e,t,n="/"){let s,r={},o="",i="";const l=t.indexOf("#");let c=t.indexOf("?");return l=0&&(c=-1),c>-1&&(s=t.slice(0,c),o=t.slice(c+1,l>-1?l:t.length),r=e(o)),l>-1&&(s=s||t.slice(0,l),i=t.slice(l,t.length)),s=Uc(s??t,n),{fullPath:s+(o&&"?")+o+i,path:s,query:r,hash:en(i)}}function jc(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function hr(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Dc(e,t,n){const s=t.matched.length-1,r=n.matched.length-1;return s>-1&&s===r&&Mt(t.matched[s],n.matched[r])&&Go(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Mt(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Go(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!Vc(e[n],t[n]))return!1;return!0}function Vc(e,t){return Ce(e)?pr(e,t):Ce(t)?pr(t,e):e===t}function pr(e,t){return Ce(t)?e.length===t.length&&e.every((n,s)=>n===t[s]):e.length===1&&e[0]===t}function Uc(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),s=e.split("/"),r=s[s.length-1];(r===".."||r===".")&&s.push("");let o=n.length-1,i,l;for(i=0;i1&&o--;else break;return n.slice(0,o).join("/")+"/"+s.slice(i).join("/")}const Ze={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};var tn;(function(e){e.pop="pop",e.push="push"})(tn||(tn={}));var zt;(function(e){e.back="back",e.forward="forward",e.unknown=""})(zt||(zt={}));function Bc(e){if(!e)if(Rt){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Hc(e)}const kc=/^[^#]+#/;function Kc(e,t){return e.replace(kc,"#")+t}function Wc(e,t){const n=document.documentElement.getBoundingClientRect(),s=e.getBoundingClientRect();return{behavior:t.behavior,left:s.left-n.left-(t.left||0),top:s.top-n.top-(t.top||0)}}const Mn=()=>({left:window.scrollX,top:window.scrollY});function qc(e){let t;if("el"in e){const n=e.el,s=typeof n=="string"&&n.startsWith("#"),r=typeof n=="string"?s?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!r)return;t=Wc(r,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function gr(e,t){return(history.state?history.state.position-t:-1)+e}const us=new Map;function Gc(e,t){us.set(e,t)}function zc(e){const t=us.get(e);return us.delete(e),t}let Jc=()=>location.protocol+"//"+location.host;function zo(e,t){const{pathname:n,search:s,hash:r}=t,o=e.indexOf("#");if(o>-1){let l=r.includes(e.slice(o))?e.slice(o).length:1,c=r.slice(l);return c[0]!=="/"&&(c="/"+c),hr(c,"")}return hr(n,e)+s+r}function Qc(e,t,n,s){let r=[],o=[],i=null;const l=({state:p})=>{const m=zo(e,location),A=n.value,O=t.value;let V=0;if(p){if(n.value=m,t.value=p,i&&i===A){i=null;return}V=O?p.position-O.position:0}else s(m);r.forEach(F=>{F(n.value,A,{delta:V,type:tn.pop,direction:V?V>0?zt.forward:zt.back:zt.unknown})})};function c(){i=n.value}function h(p){r.push(p);const m=()=>{const A=r.indexOf(p);A>-1&&r.splice(A,1)};return o.push(m),m}function f(){const{history:p}=window;p.state&&p.replaceState(k({},p.state,{scroll:Mn()}),"")}function d(){for(const p of o)p();o=[],window.removeEventListener("popstate",l),window.removeEventListener("beforeunload",f)}return window.addEventListener("popstate",l),window.addEventListener("beforeunload",f,{passive:!0}),{pauseListeners:c,listen:h,destroy:d}}function mr(e,t,n,s=!1,r=!1){return{back:e,current:t,forward:n,replaced:s,position:window.history.length,scroll:r?Mn():null}}function Yc(e){const{history:t,location:n}=window,s={value:zo(e,n)},r={value:t.state};r.value||o(s.value,{back:null,current:s.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function o(c,h,f){const d=e.indexOf("#"),p=d>-1?(n.host&&document.querySelector("base")?e:e.slice(d))+c:Jc()+e+c;try{t[f?"replaceState":"pushState"](h,"",p),r.value=h}catch(m){console.error(m),n[f?"replace":"assign"](p)}}function i(c,h){const f=k({},t.state,mr(r.value.back,c,r.value.forward,!0),h,{position:r.value.position});o(c,f,!0),s.value=c}function l(c,h){const f=k({},r.value,t.state,{forward:c,scroll:Mn()});o(f.current,f,!0);const d=k({},mr(s.value,c,null),{position:f.position+1},h);o(c,d,!1),s.value=c}return{location:s,state:r,push:l,replace:i}}function Xc(e){e=Bc(e);const t=Yc(e),n=Qc(e,t.state,t.location,t.replace);function s(o,i=!0){i||n.pauseListeners(),history.go(o)}const r=k({location:"",base:e,go:s,createHref:Kc.bind(null,e)},t,n);return Object.defineProperty(r,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(r,"state",{enumerable:!0,get:()=>t.state.value}),r}function Zc(e){return typeof e=="string"||e&&typeof e=="object"}function Jo(e){return typeof e=="string"||typeof e=="symbol"}const Qo=Symbol("");var _r;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(_r||(_r={}));function $t(e,t){return k(new Error,{type:e,[Qo]:!0},t)}function Ke(e,t){return e instanceof Error&&Qo in e&&(t==null||!!(e.type&t))}const vr="[^/]+?",eu={sensitive:!1,strict:!1,start:!0,end:!0},tu=/[.+*?^${}()[\]/\\]/g;function nu(e,t){const n=k({},eu,t),s=[];let r=n.start?"^":"";const o=[];for(const h of e){const f=h.length?[]:[90];n.strict&&!h.length&&(r+="/");for(let d=0;dt.length?t.length===1&&t[0]===80?1:-1:0}function Yo(e,t){let n=0;const s=e.score,r=t.score;for(;n0&&t[t.length-1]<0}const ru={type:0,value:""},ou=/[a-zA-Z0-9_]/;function iu(e){if(!e)return[[]];if(e==="/")return[[ru]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(m){throw new Error(`ERR (${n})/"${h}": ${m}`)}let n=0,s=n;const r=[];let o;function i(){o&&r.push(o),o=[]}let l=0,c,h="",f="";function d(){h&&(n===0?o.push({type:0,value:h}):n===1||n===2||n===3?(o.length>1&&(c==="*"||c==="+")&&t(`A repeatable param (${h}) must be alone in its segment. eg: '/:ids+.`),o.push({type:1,value:h,regexp:f,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):t("Invalid state to consume buffer"),h="")}function p(){h+=c}for(;l{i(L)}:Gt}function i(d){if(Jo(d)){const p=s.get(d);p&&(s.delete(d),n.splice(n.indexOf(p),1),p.children.forEach(i),p.alias.forEach(i))}else{const p=n.indexOf(d);p>-1&&(n.splice(p,1),d.record.name&&s.delete(d.record.name),d.children.forEach(i),d.alias.forEach(i))}}function l(){return n}function c(d){const p=au(d,n);n.splice(p,0,d),d.record.name&&!wr(d)&&s.set(d.record.name,d)}function h(d,p){let m,A={},O,V;if("name"in d&&d.name){if(m=s.get(d.name),!m)throw $t(1,{location:d});V=m.record.name,A=k(br(p.params,m.keys.filter(L=>!L.optional).concat(m.parent?m.parent.keys.filter(L=>L.optional):[]).map(L=>L.name)),d.params&&br(d.params,m.keys.map(L=>L.name))),O=m.stringify(A)}else if(d.path!=null)O=d.path,m=n.find(L=>L.re.test(O)),m&&(A=m.parse(O),V=m.record.name);else{if(m=p.name?s.get(p.name):n.find(L=>L.re.test(p.path)),!m)throw $t(1,{location:d,currentLocation:p});V=m.record.name,A=k({},p.params,d.params),O=m.stringify(A)}const F=[];let M=m;for(;M;)F.unshift(M.record),M=M.parent;return{name:V,path:O,params:A,matched:F,meta:fu(F)}}e.forEach(d=>o(d));function f(){n.length=0,s.clear()}return{addRoute:o,resolve:h,removeRoute:i,clearRoutes:f,getRoutes:l,getRecordMatcher:r}}function br(e,t){const n={};for(const s of t)s in e&&(n[s]=e[s]);return n}function xr(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:uu(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}};return Object.defineProperty(t,"mods",{value:{}}),t}function uu(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const s in e.components)t[s]=typeof n=="object"?n[s]:n;return t}function wr(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function fu(e){return e.reduce((t,n)=>k(t,n.meta),{})}function Sr(e,t){const n={};for(const s in e)n[s]=s in t?t[s]:e[s];return n}function au(e,t){let n=0,s=t.length;for(;n!==s;){const o=n+s>>1;Yo(e,t[o])<0?s=o:n=o+1}const r=du(e);return r&&(s=t.lastIndexOf(r,s-1)),s}function du(e){let t=e;for(;t=t.parent;)if(Xo(t)&&Yo(e,t)===0)return t}function Xo({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function hu(e){const t={};if(e===""||e==="?")return t;const s=(e[0]==="?"?e.slice(1):e).split("&");for(let r=0;ro&&cs(o)):[s&&cs(s)]).forEach(o=>{o!==void 0&&(t+=(t.length?"&":"")+n,o!=null&&(t+="="+o))})}return t}function pu(e){const t={};for(const n in e){const s=e[n];s!==void 0&&(t[n]=Ce(s)?s.map(r=>r==null?null:""+r):s==null?s:""+s)}return t}const gu=Symbol(""),Rr=Symbol(""),$n=Symbol(""),Zo=Symbol(""),fs=Symbol("");function jt(){let e=[];function t(s){return e.push(s),()=>{const r=e.indexOf(s);r>-1&&e.splice(r,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function nt(e,t,n,s,r,o=i=>i()){const i=s&&(s.enterCallbacks[r]=s.enterCallbacks[r]||[]);return()=>new Promise((l,c)=>{const h=p=>{p===!1?c($t(4,{from:n,to:t})):p instanceof Error?c(p):Zc(p)?c($t(2,{from:t,to:p})):(i&&s.enterCallbacks[r]===i&&typeof p=="function"&&i.push(p),l())},f=o(()=>e.call(s&&s.instances[r],t,n,h));let d=Promise.resolve(f);e.length<3&&(d=d.then(h)),d.catch(p=>c(p))})}function Gn(e,t,n,s,r=o=>o()){const o=[];for(const i of e)for(const l in i.components){let c=i.components[l];if(!(t!=="beforeRouteEnter"&&!i.instances[l]))if(Uo(c)){const f=(c.__vccOpts||c)[t];f&&o.push(nt(f,n,s,i,l,r))}else{let h=c();o.push(()=>h.then(f=>{if(!f)throw new Error(`Couldn't resolve component "${l}" at "${i.path}"`);const d=wc(f)?f.default:f;i.mods[l]=f,i.components[l]=d;const m=(d.__vccOpts||d)[t];return m&&nt(m,n,s,i,l,r)()}))}}return o}function Pr(e){const t=Ve($n),n=Ve(Zo),s=Re(()=>{const c=pt(e.to);return t.resolve(c)}),r=Re(()=>{const{matched:c}=s.value,{length:h}=c,f=c[h-1],d=n.matched;if(!f||!d.length)return-1;const p=d.findIndex(Mt.bind(null,f));if(p>-1)return p;const m=Cr(c[h-2]);return h>1&&Cr(f)===m&&d[d.length-1].path!==m?d.findIndex(Mt.bind(null,c[h-2])):p}),o=Re(()=>r.value>-1&&bu(n.params,s.value.params)),i=Re(()=>r.value>-1&&r.value===n.matched.length-1&&Go(n.params,s.value.params));function l(c={}){if(yu(c)){const h=t[pt(e.replace)?"replace":"push"](pt(e.to)).catch(Gt);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>h),h}return Promise.resolve()}return{route:s,href:Re(()=>s.value.href),isActive:o,isExactActive:i,navigate:l}}function mu(e){return e.length===1?e[0]:e}const _u=vt({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"},viewTransition:Boolean},useLink:Pr,setup(e,{slots:t}){const n=Rn(Pr(e)),{options:s}=Ve($n),r=Re(()=>({[Ar(e.activeClass,s.linkActiveClass,"router-link-active")]:n.isActive,[Ar(e.exactActiveClass,s.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const o=t.default&&mu(t.default(n));return e.custom?o:jo("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:r.value},o)}}}),vu=_u;function yu(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function bu(e,t){for(const n in t){const s=t[n],r=e[n];if(typeof s=="string"){if(s!==r)return!1}else if(!Ce(r)||r.length!==s.length||s.some((o,i)=>o!==r[i]))return!1}return!0}function Cr(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const Ar=(e,t,n)=>e??t??n,xu=vt({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const s=Ve(fs),r=Re(()=>e.route||s.value),o=Ve(Rr,0),i=Re(()=>{let h=pt(o);const{matched:f}=r.value;let d;for(;(d=f[h])&&!d.components;)h++;return h}),l=Re(()=>r.value.matched[i.value]);fn(Rr,Re(()=>i.value+1)),fn(gu,l),fn(fs,r);const c=je();return Wt(()=>[c.value,l.value,e.name],([h,f,d],[p,m,A])=>{f&&(f.instances[d]=h,m&&m!==f&&h&&h===p&&(f.leaveGuards.size||(f.leaveGuards=m.leaveGuards),f.updateGuards.size||(f.updateGuards=m.updateGuards))),h&&f&&(!m||!Mt(f,m)||!p)&&(f.enterCallbacks[d]||[]).forEach(O=>O(h))},{flush:"post"}),()=>{const h=r.value,f=e.name,d=l.value,p=d&&d.components[f];if(!p)return Or(n.default,{Component:p,route:h});const m=d.props[f],A=m?m===!0?h.params:typeof m=="function"?m(h):m:null,V=jo(p,k({},A,t,{onVnodeUnmounted:F=>{F.component.isUnmounted&&(d.instances[f]=null)},ref:c}));return Or(n.default,{Component:V,route:h})||V}}});function Or(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const ei=xu;function wu(e){const t=cu(e.routes,e),n=e.parseQuery||hu,s=e.stringifyQuery||Er,r=e.history,o=jt(),i=jt(),l=jt(),c=$i(Ze);let h=Ze;Rt&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const f=Wn.bind(null,v=>""+v),d=Wn.bind(null,Lc),p=Wn.bind(null,en);function m(v,C){let R,I;return Jo(v)?(R=t.getRecordMatcher(v),I=C):I=v,t.addRoute(I,R)}function A(v){const C=t.getRecordMatcher(v);C&&t.removeRoute(C)}function O(){return t.getRoutes().map(v=>v.record)}function V(v){return!!t.getRecordMatcher(v)}function F(v,C){if(C=k({},C||c.value),typeof v=="string"){const g=qn(n,v,C.path),_=t.resolve({path:g.path},C),b=r.createHref(g.fullPath);return k(g,_,{params:p(_.params),hash:en(g.hash),redirectedFrom:void 0,href:b})}let R;if(v.path!=null)R=k({},v,{path:qn(n,v.path,C.path).path});else{const g=k({},v.params);for(const _ in g)g[_]==null&&delete g[_];R=k({},v,{params:d(g)}),C.params=d(C.params)}const I=t.resolve(R,C),J=v.hash||"";I.params=f(p(I.params));const u=jc(s,k({},v,{hash:Mc(J),path:I.path})),a=r.createHref(u);return k({fullPath:u,hash:J,query:s===Er?pu(v.query):v.query||{}},I,{redirectedFrom:void 0,href:a})}function M(v){return typeof v=="string"?qn(n,v,c.value.path):k({},v)}function L(v,C){if(h!==v)return $t(8,{from:C,to:v})}function T(v){return te(v)}function z(v){return T(k(M(v),{replace:!0}))}function re(v){const C=v.matched[v.matched.length-1];if(C&&C.redirect){const{redirect:R}=C;let I=typeof R=="function"?R(v):R;return typeof I=="string"&&(I=I.includes("?")||I.includes("#")?I=M(I):{path:I},I.params={}),k({query:v.query,hash:v.hash,params:I.path!=null?{}:v.params},I)}}function te(v,C){const R=h=F(v),I=c.value,J=v.state,u=v.force,a=v.replace===!0,g=re(R);if(g)return te(k(M(g),{state:typeof g=="object"?k({},J,g.state):J,force:u,replace:a}),C||R);const _=R;_.redirectedFrom=C;let b;return!u&&Dc(s,I,R)&&(b=$t(16,{to:_,from:I}),Ie(I,I,!0,!1)),(b?Promise.resolve(b):Oe(_,I)).catch(y=>Ke(y)?Ke(y,2)?y:Xe(y):B(y,_,I)).then(y=>{if(y){if(Ke(y,2))return te(k({replace:a},M(y.to),{state:typeof y.to=="object"?k({},J,y.to.state):J,force:u}),C||_)}else y=ct(_,I,!0,a,J);return Ye(_,I,y),y})}function Ae(v,C){const R=L(v,C);return R?Promise.reject(R):Promise.resolve()}function Qe(v){const C=xt.values().next().value;return C&&typeof C.runWithContext=="function"?C.runWithContext(v):v()}function Oe(v,C){let R;const[I,J,u]=Su(v,C);R=Gn(I.reverse(),"beforeRouteLeave",v,C);for(const g of I)g.leaveGuards.forEach(_=>{R.push(nt(_,v,C))});const a=Ae.bind(null,v,C);return R.push(a),xe(R).then(()=>{R=[];for(const g of o.list())R.push(nt(g,v,C));return R.push(a),xe(R)}).then(()=>{R=Gn(J,"beforeRouteUpdate",v,C);for(const g of J)g.updateGuards.forEach(_=>{R.push(nt(_,v,C))});return R.push(a),xe(R)}).then(()=>{R=[];for(const g of u)if(g.beforeEnter)if(Ce(g.beforeEnter))for(const _ of g.beforeEnter)R.push(nt(_,v,C));else R.push(nt(g.beforeEnter,v,C));return R.push(a),xe(R)}).then(()=>(v.matched.forEach(g=>g.enterCallbacks={}),R=Gn(u,"beforeRouteEnter",v,C,Qe),R.push(a),xe(R))).then(()=>{R=[];for(const g of i.list())R.push(nt(g,v,C));return R.push(a),xe(R)}).catch(g=>Ke(g,8)?g:Promise.reject(g))}function Ye(v,C,R){l.list().forEach(I=>Qe(()=>I(v,C,R)))}function ct(v,C,R,I,J){const u=L(v,C);if(u)return u;const a=C===Ze,g=Rt?history.state:{};R&&(I||a?r.replace(v.fullPath,k({scroll:a&&g&&g.scroll},J)):r.push(v.fullPath,J)),c.value=v,Ie(v,C,R,a),Xe()}let Te;function Ft(){Te||(Te=r.listen((v,C,R)=>{if(!rn.listening)return;const I=F(v),J=re(I);if(J){te(k(J,{replace:!0,force:!0}),I).catch(Gt);return}h=I;const u=c.value;Rt&&Gc(gr(u.fullPath,R.delta),Mn()),Oe(I,u).catch(a=>Ke(a,12)?a:Ke(a,2)?(te(k(M(a.to),{force:!0}),I).then(g=>{Ke(g,20)&&!R.delta&&R.type===tn.pop&&r.go(-1,!1)}).catch(Gt),Promise.reject()):(R.delta&&r.go(-R.delta,!1),B(a,I,u))).then(a=>{a=a||ct(I,u,!1),a&&(R.delta&&!Ke(a,8)?r.go(-R.delta,!1):R.type===tn.pop&&Ke(a,20)&&r.go(-1,!1)),Ye(I,u,a)}).catch(Gt)}))}let yt=jt(),se=jt(),G;function B(v,C,R){Xe(v);const I=se.list();return I.length?I.forEach(J=>J(v,C,R)):console.error(v),Promise.reject(v)}function Be(){return G&&c.value!==Ze?Promise.resolve():new Promise((v,C)=>{yt.add([v,C])})}function Xe(v){return G||(G=!v,Ft(),yt.list().forEach(([C,R])=>v?R(v):C()),yt.reset()),v}function Ie(v,C,R,I){const{scrollBehavior:J}=e;if(!Rt||!J)return Promise.resolve();const u=!R&&zc(gr(v.fullPath,0))||(I||!R)&&history.state&&history.state.scroll||null;return Rs().then(()=>J(v,C,u)).then(a=>a&&qc(a)).catch(a=>B(a,v,C))}const de=v=>r.go(v);let bt;const xt=new Set,rn={currentRoute:c,listening:!0,addRoute:m,removeRoute:A,clearRoutes:t.clearRoutes,hasRoute:V,getRoutes:O,resolve:F,options:e,push:T,replace:z,go:de,back:()=>de(-1),forward:()=>de(1),beforeEach:o.add,beforeResolve:i.add,afterEach:l.add,onError:se.add,isReady:Be,install(v){const C=this;v.component("RouterLink",vu),v.component("RouterView",ei),v.config.globalProperties.$router=C,Object.defineProperty(v.config.globalProperties,"$route",{enumerable:!0,get:()=>pt(c)}),Rt&&!bt&&c.value===Ze&&(bt=!0,T(r.location).catch(J=>{}));const R={};for(const J in Ze)Object.defineProperty(R,J,{get:()=>c.value[J],enumerable:!0});v.provide($n,C),v.provide(Zo,to(R)),v.provide(fs,c);const I=v.unmount;xt.add(v),v.unmount=function(){xt.delete(v),xt.size<1&&(h=Ze,Te&&Te(),Te=null,c.value=Ze,bt=!1,G=!1),I()}}};function xe(v){return v.reduce((C,R)=>C.then(()=>Qe(R)),Promise.resolve())}return rn}function Su(e,t){const n=[],s=[],r=[],o=Math.max(t.matched.length,e.matched.length);for(let i=0;iMt(h,l))?s.push(l):n.push(l));const c=e.matched[i];c&&(t.matched.find(h=>Mt(h,c))||r.push(c))}return[n,s,r]}function ti(){return Ve($n)}const Eu=vt({__name:"App",setup(e){return(t,n)=>(ve(),Tn(pt(ei)))}}),Ms=(e,t)=>{const n=e.__vccOpts||e;for(const[s,r]of t)n[s]=r;return n},Ru=Ms(Eu,[["__scopeId","data-v-913ef6b1"]]),Pu="modulepreload",Cu=function(e){return"/"+e},Tr={},Au=function(t,n,s){let r=Promise.resolve();if(n&&n.length>0){let i=function(h){return Promise.all(h.map(f=>Promise.resolve(f).then(d=>({status:"fulfilled",value:d}),d=>({status:"rejected",reason:d}))))};document.getElementsByTagName("link");const l=document.querySelector("meta[property=csp-nonce]"),c=(l==null?void 0:l.nonce)||(l==null?void 0:l.getAttribute("nonce"));r=i(n.map(h=>{if(h=Cu(h),h in Tr)return;Tr[h]=!0;const f=h.endsWith(".css"),d=f?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${h}"]${d}`))return;const p=document.createElement("link");if(p.rel=f?"stylesheet":Pu,f||(p.as="script"),p.crossOrigin="",p.href=h,c&&p.setAttribute("nonce",c),document.head.appendChild(p),f)return new Promise((m,A)=>{p.addEventListener("load",m),p.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${h}`)))})}))}function o(i){const l=new Event("vite:preloadError",{cancelable:!0});if(l.payload=i,window.dispatchEvent(l),!l.defaultPrevented)throw i}return r.then(i=>{for(const l of i||[])l.status==="rejected"&&o(l.reason);return t().catch(o)})};function as(e){const t="http://"+window.location.host.split(":")[0]+":8090"+e;return console.log(t),t}const Ou={class:"body-custom"},Tu={class:"form-custom form-block"},Iu={class:"center-block-custom"},Mu={class:"center-block-custom"},$u={key:0},Fu={key:1},Lu={class:"message-cloud"},Nu={class:"message-header"},Hu={class:"message-content"},ju={key:0,class:"hr"},Du=vt({__name:"GameWindow",setup(e){const t=ti(),n=je(""),s=je({actions:[]}),r=je([]),o=je();function i(){fetch(as("/team"),{method:"GET",headers:{"X-Id":sessionStorage.getItem("teamId")||"","X-Password":sessionStorage.getItem("password")||""}}).then(f=>{if(f.status==401){t.push("/login");return}return f.json()}).then(f=>{var p;s.value=f;const d=(p=s.value)==null?void 0:p.actions;r.value.length!==(d==null?void 0:d.length)&&(r.value=d)}).catch(f=>{console.error("Ошибка:",f)})}function l(){fetch(as("/team/actions"),{method:"POST",headers:{"X-Id":sessionStorage.getItem("teamId")||"","X-Password":sessionStorage.getItem("password")||""},body:JSON.stringify({place:n.value})}).then(async()=>{n.value=""})}const c=async(f="smooth")=>{await Rs(),o.value&&o.value.scrollTo({top:o.value.scrollHeight,behavior:f})};Wt(r,()=>{c()},{deep:!0});let h=0;return As(()=>{i(),h=setInterval(()=>{i()},2e3),t.beforeEach((f,d,p)=>{clearInterval(h),p()})}),(f,d)=>(ve(),We("div",Ou,[d[4]||(d[4]=Q("div",{class:"header-block"}," Вечерний детектив ",-1)),Q("div",Tu,[Q("div",Iu,[Q("form",{onSubmit:Vo(l,["prevent"])},[Q("div",null,[es(Q("input",{class:"input-custom","onUpdate:modelValue":d[0]||(d[0]=p=>n.value=p),type:"text",placeholder:"Место назначения (А-1, а-1, а1)"},null,512),[[ls,n.value]])]),d[1]||(d[1]=Q("div",{class:"button-container"},[Q("button",{class:"button-custom",type:"submit"},"Поехали")],-1))],32)])]),Q("div",{class:"messages-block",ref_key:"scrollContainer",ref:o},[Q("div",Mu,[!s.value||!s.value.actions.length?(ve(),We("div",$u,d[2]||(d[2]=[Q("div",{class:"center-message"}," Пора решать загадку ",-1)]))):(ve(),We("div",Fu,[(ve(!0),We(we,null,Vs(s.value.actions,p=>(ve(),We("div",{key:p.id},[Q("div",Lu,[Q("div",Nu,dt(p.place)+": "+dt(p.name),1),d[3]||(d[3]=Q("hr",{class:"hr"},null,-1)),Q("div",Hu,dt(p.text),1),p.applications.length?(ve(),We("hr",ju)):Nl("",!0),(ve(!0),We(we,null,Vs(p.applications,m=>(ve(),We("div",{class:"message-footer",key:m.name}," Приложение: "+dt(m.name),1))),128))])]))),128))]))])],512)]))}}),Vu=Ms(Du,[["__scopeId","data-v-a97c0f2f"]]),Uu=vt({__name:"HomeView",setup(e){return(t,n)=>(ve(),Tn(Vu))}}),Bu={class:"center-message"},ku={class:"button-container"},Ku={class:"button-custom",type:"submit"},Wu={class:"error-message"},qu=vt({__name:"LoginWindow",setup(e){const t=ti(),n=je(sessionStorage.getItem("teamId")||""),s=je(sessionStorage.getItem("password")||""),r=je("Вход"),o=je("");function i(){const l=r.value;r.value="Загрузка...",o.value="",fetch(as("/team"),{method:"GET",headers:{"X-Id":n.value,"X-Password":s.value}}).then(c=>{if(c.status==200){sessionStorage.setItem("teamId",n.value),sessionStorage.setItem("password",s.value),t.push("/");return}if(c.status==401){if(n.value==""&&s.value=="")return;o.value="Не верны название команды или пароль";return}o.value="ХЗ что это "+c}).catch(()=>{o.value="Сервер не доступен"}).finally(()=>{r.value=l})}return As(()=>{i()}),(l,c)=>(ve(),We(we,null,[c[2]||(c[2]=Q("div",{class:"header-block"}," Вечерний детектив ",-1)),Q("div",Bu,[Q("form",{onSubmit:Vo(i,["prevent"])},[Q("div",null,[es(Q("input",{class:"input-custom","onUpdate:modelValue":c[0]||(c[0]=h=>n.value=h),type:"text",placeholder:"Название команды"},null,512),[[ls,n.value]])]),Q("div",null,[es(Q("input",{class:"input-custom","onUpdate:modelValue":c[1]||(c[1]=h=>s.value=h),type:"text",placeholder:"Пароль",autocapitalize:"off"},null,512),[[ls,s.value]])]),Q("div",ku,[Q("button",Ku,dt(r.value),1)]),Q("div",Wu,dt(o.value),1)],32)])],64))}}),Gu=Ms(qu,[["__scopeId","data-v-8a4f811f"]]),zu=vt({__name:"LoginView",setup(e){return(t,n)=>(ve(),Tn(Gu))}}),Ju=wu({history:Xc("/"),routes:[{path:"/",name:"home",component:Uu},{path:"/login",name:"login",component:zu},{path:"/about",name:"about",component:()=>Au(()=>import("./AboutView-DL__Ztc9.js"),__vite__mapDeps([0,1]))}]}),$s=_c(Ru);$s.use(xc());$s.use(Ju);$s.mount("#app");export{Ms as _,Q as a,We as c,ve as o}; diff --git a/static/user/assets/index-CoZ5hrCd.js b/static/user/assets/index-CoZ5hrCd.js deleted file mode 100644 index e5420c3..0000000 --- a/static/user/assets/index-CoZ5hrCd.js +++ /dev/null @@ -1,26 +0,0 @@ -const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/AboutView-CB75s-VL.js","assets/AboutView-CSIvawM9.css"])))=>i.map(i=>d[i]); -(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))s(r);new MutationObserver(r=>{for(const i of r)if(i.type==="childList")for(const o of i.addedNodes)o.tagName==="LINK"&&o.rel==="modulepreload"&&s(o)}).observe(document,{childList:!0,subtree:!0});function n(r){const i={};return r.integrity&&(i.integrity=r.integrity),r.referrerPolicy&&(i.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?i.credentials="include":r.crossOrigin==="anonymous"?i.credentials="omit":i.credentials="same-origin",i}function s(r){if(r.ep)return;r.ep=!0;const i=n(r);fetch(r.href,i)}})();/** -* @vue/shared v3.5.13 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**//*! #__NO_SIDE_EFFECTS__ */function ls(e){const t=Object.create(null);for(const n of e.split(","))t[n]=1;return n=>n in t}const Q={},St=[],je=()=>{},Qi=()=>!1,bn=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),cs=e=>e.startsWith("onUpdate:"),ce=Object.assign,fs=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Yi=Object.prototype.hasOwnProperty,W=(e,t)=>Yi.call(e,t),j=Array.isArray,Rt=e=>xn(e)==="[object Map]",Cr=e=>xn(e)==="[object Set]",D=e=>typeof e=="function",te=e=>typeof e=="string",rt=e=>typeof e=="symbol",Z=e=>e!==null&&typeof e=="object",Ar=e=>(Z(e)||D(e))&&D(e.then)&&D(e.catch),Or=Object.prototype.toString,xn=e=>Or.call(e),Xi=e=>xn(e).slice(8,-1),Tr=e=>xn(e)==="[object Object]",us=e=>te(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,jt=ls(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),En=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Zi=/-(\w)/g,st=En(e=>e.replace(Zi,(t,n)=>n?n.toUpperCase():"")),eo=/\B([A-Z])/g,gt=En(e=>e.replace(eo,"-$1").toLowerCase()),Ir=En(e=>e.charAt(0).toUpperCase()+e.slice(1)),Mn=En(e=>e?`on${Ir(e)}`:""),nt=(e,t)=>!Object.is(e,t),cn=(e,...t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:s,value:n})},qn=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let Is;const wn=()=>Is||(Is=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function as(e){if(j(e)){const t={};for(let n=0;n{if(n){const s=n.split(no);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function ds(e){let t="";if(te(e))t=e;else if(j(e))for(let n=0;n!!(e&&e.__v_isRef===!0),fn=e=>te(e)?e:e==null?"":j(e)||Z(e)&&(e.toString===Or||!D(e.toString))?$r(e)?fn(e.value):JSON.stringify(e,Lr,2):String(e),Lr=(e,t)=>$r(t)?Lr(e,t.value):Rt(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r],i)=>(n[Fn(s,i)+" =>"]=r,n),{})}:Cr(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>Fn(n))}:rt(t)?Fn(t):Z(t)&&!j(t)&&!Tr(t)?String(t):t,Fn=(e,t="")=>{var n;return rt(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** -* @vue/reactivity v3.5.13 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/let _e;class Nr{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.parent=_e,!t&&_e&&(this.index=(_e.scopes||(_e.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t0)return;if(Bt){let t=Bt;for(Bt=void 0;t;){const n=t.next;t.next=void 0,t.flags&=-9,t=n}}let e;for(;Dt;){let t=Dt;for(Dt=void 0;t;){const n=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(s){e||(e=s)}t=n}}if(e)throw e}function Br(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function Vr(e){let t,n=e.depsTail,s=n;for(;s;){const r=s.prevDep;s.version===-1?(s===n&&(n=r),gs(s),fo(s)):t=s,s.dep.activeLink=s.prevActiveLink,s.prevActiveLink=void 0,s=r}e.deps=t,e.depsTail=n}function Gn(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(Ur(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function Ur(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===Gt))return;e.globalVersion=Gt;const t=e.dep;if(e.flags|=2,t.version>0&&!e.isSSR&&e.deps&&!Gn(e)){e.flags&=-3;return}const n=X,s=Pe;X=e,Pe=!0;try{Br(e);const r=e.fn(e._value);(t.version===0||nt(r,e._value))&&(e._value=r,t.version++)}catch(r){throw t.version++,r}finally{X=n,Pe=s,Vr(e),e.flags&=-3}}function gs(e,t=!1){const{dep:n,prevSub:s,nextSub:r}=e;if(s&&(s.nextSub=r,e.prevSub=void 0),r&&(r.prevSub=s,e.nextSub=void 0),n.subs===e&&(n.subs=s,!s&&n.computed)){n.computed.flags&=-5;for(let i=n.computed.deps;i;i=i.nextDep)gs(i,!0)}!t&&!--n.sc&&n.map&&n.map.delete(n.key)}function fo(e){const{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}let Pe=!0;const Kr=[];function it(){Kr.push(Pe),Pe=!1}function ot(){const e=Kr.pop();Pe=e===void 0?!0:e}function Ms(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const n=X;X=void 0;try{t()}finally{X=n}}}let Gt=0;class uo{constructor(t,n){this.sub=t,this.dep=n,this.version=n.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class ms{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0}track(t){if(!X||!Pe||X===this.computed)return;let n=this.activeLink;if(n===void 0||n.sub!==X)n=this.activeLink=new uo(X,this),X.deps?(n.prevDep=X.depsTail,X.depsTail.nextDep=n,X.depsTail=n):X.deps=X.depsTail=n,kr(n);else if(n.version===-1&&(n.version=this.version,n.nextDep)){const s=n.nextDep;s.prevDep=n.prevDep,n.prevDep&&(n.prevDep.nextDep=s),n.prevDep=X.depsTail,n.nextDep=void 0,X.depsTail.nextDep=n,X.depsTail=n,X.deps===n&&(X.deps=s)}return n}trigger(t){this.version++,Gt++,this.notify(t)}notify(t){hs();try{for(let n=this.subs;n;n=n.prevSub)n.sub.notify()&&n.sub.dep.notify()}finally{ps()}}}function kr(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let s=t.deps;s;s=s.nextDep)kr(s)}const n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),e.dep.subs=e}}const zn=new WeakMap,at=Symbol(""),Jn=Symbol(""),zt=Symbol("");function ie(e,t,n){if(Pe&&X){let s=zn.get(e);s||zn.set(e,s=new Map);let r=s.get(n);r||(s.set(n,r=new ms),r.map=s,r.key=n),r.track()}}function ke(e,t,n,s,r,i){const o=zn.get(e);if(!o){Gt++;return}const l=c=>{c&&c.trigger()};if(hs(),t==="clear")o.forEach(l);else{const c=j(e),d=c&&us(n);if(c&&n==="length"){const u=Number(s);o.forEach((h,g)=>{(g==="length"||g===zt||!rt(g)&&g>=u)&&l(h)})}else switch((n!==void 0||o.has(void 0))&&l(o.get(n)),d&&l(o.get(zt)),t){case"add":c?d&&l(o.get("length")):(l(o.get(at)),Rt(e)&&l(o.get(Jn)));break;case"delete":c||(l(o.get(at)),Rt(e)&&l(o.get(Jn)));break;case"set":Rt(e)&&l(o.get(at));break}}ps()}function yt(e){const t=k(e);return t===e?t:(ie(t,"iterate",zt),Ee(e)?t:t.map(oe))}function Sn(e){return ie(e=k(e),"iterate",zt),e}const ao={__proto__:null,[Symbol.iterator](){return Ln(this,Symbol.iterator,oe)},concat(...e){return yt(this).concat(...e.map(t=>j(t)?yt(t):t))},entries(){return Ln(this,"entries",e=>(e[1]=oe(e[1]),e))},every(e,t){return Ve(this,"every",e,t,void 0,arguments)},filter(e,t){return Ve(this,"filter",e,t,n=>n.map(oe),arguments)},find(e,t){return Ve(this,"find",e,t,oe,arguments)},findIndex(e,t){return Ve(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return Ve(this,"findLast",e,t,oe,arguments)},findLastIndex(e,t){return Ve(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return Ve(this,"forEach",e,t,void 0,arguments)},includes(...e){return Nn(this,"includes",e)},indexOf(...e){return Nn(this,"indexOf",e)},join(e){return yt(this).join(e)},lastIndexOf(...e){return Nn(this,"lastIndexOf",e)},map(e,t){return Ve(this,"map",e,t,void 0,arguments)},pop(){return $t(this,"pop")},push(...e){return $t(this,"push",e)},reduce(e,...t){return Fs(this,"reduce",e,t)},reduceRight(e,...t){return Fs(this,"reduceRight",e,t)},shift(){return $t(this,"shift")},some(e,t){return Ve(this,"some",e,t,void 0,arguments)},splice(...e){return $t(this,"splice",e)},toReversed(){return yt(this).toReversed()},toSorted(e){return yt(this).toSorted(e)},toSpliced(...e){return yt(this).toSpliced(...e)},unshift(...e){return $t(this,"unshift",e)},values(){return Ln(this,"values",oe)}};function Ln(e,t,n){const s=Sn(e),r=s[t]();return s!==e&&!Ee(e)&&(r._next=r.next,r.next=()=>{const i=r._next();return i.value&&(i.value=n(i.value)),i}),r}const ho=Array.prototype;function Ve(e,t,n,s,r,i){const o=Sn(e),l=o!==e&&!Ee(e),c=o[t];if(c!==ho[t]){const h=c.apply(e,i);return l?oe(h):h}let d=n;o!==e&&(l?d=function(h,g){return n.call(this,oe(h),g,e)}:n.length>2&&(d=function(h,g){return n.call(this,h,g,e)}));const u=c.call(o,d,s);return l&&r?r(u):u}function Fs(e,t,n,s){const r=Sn(e);let i=n;return r!==e&&(Ee(e)?n.length>3&&(i=function(o,l,c){return n.call(this,o,l,c,e)}):i=function(o,l,c){return n.call(this,o,oe(l),c,e)}),r[t](i,...s)}function Nn(e,t,n){const s=k(e);ie(s,"iterate",zt);const r=s[t](...n);return(r===-1||r===!1)&&ys(n[0])?(n[0]=k(n[0]),s[t](...n)):r}function $t(e,t,n=[]){it(),hs();const s=k(e)[t].apply(e,n);return ps(),ot(),s}const po=ls("__proto__,__v_isRef,__isVue"),Wr=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(rt));function go(e){rt(e)||(e=String(e));const t=k(this);return ie(t,"has",e),t.hasOwnProperty(e)}class qr{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,s){if(n==="__v_skip")return t.__v_skip;const r=this._isReadonly,i=this._isShallow;if(n==="__v_isReactive")return!r;if(n==="__v_isReadonly")return r;if(n==="__v_isShallow")return i;if(n==="__v_raw")return s===(r?i?Ro:Qr:i?Jr:zr).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const o=j(t);if(!r){let c;if(o&&(c=ao[n]))return c;if(n==="hasOwnProperty")return go}const l=Reflect.get(t,n,le(t)?t:s);return(rt(n)?Wr.has(n):po(n))||(r||ie(t,"get",n),i)?l:le(l)?o&&us(n)?l:l.value:Z(l)?r?Xr(l):Rn(l):l}}class Gr extends qr{constructor(t=!1){super(!1,t)}set(t,n,s,r){let i=t[n];if(!this._isShallow){const c=ht(i);if(!Ee(s)&&!ht(s)&&(i=k(i),s=k(s)),!j(t)&&le(i)&&!le(s))return c?!1:(i.value=s,!0)}const o=j(t)&&us(n)?Number(n)e,rn=e=>Reflect.getPrototypeOf(e);function bo(e,t,n){return function(...s){const r=this.__v_raw,i=k(r),o=Rt(i),l=e==="entries"||e===Symbol.iterator&&o,c=e==="keys"&&o,d=r[e](...s),u=n?Qn:t?Yn:oe;return!t&&ie(i,"iterate",c?Jn:at),{next(){const{value:h,done:g}=d.next();return g?{value:h,done:g}:{value:l?[u(h[0]),u(h[1])]:u(h),done:g}},[Symbol.iterator](){return this}}}}function on(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function xo(e,t){const n={get(r){const i=this.__v_raw,o=k(i),l=k(r);e||(nt(r,l)&&ie(o,"get",r),ie(o,"get",l));const{has:c}=rn(o),d=t?Qn:e?Yn:oe;if(c.call(o,r))return d(i.get(r));if(c.call(o,l))return d(i.get(l));i!==o&&i.get(r)},get size(){const r=this.__v_raw;return!e&&ie(k(r),"iterate",at),Reflect.get(r,"size",r)},has(r){const i=this.__v_raw,o=k(i),l=k(r);return e||(nt(r,l)&&ie(o,"has",r),ie(o,"has",l)),r===l?i.has(r):i.has(r)||i.has(l)},forEach(r,i){const o=this,l=o.__v_raw,c=k(l),d=t?Qn:e?Yn:oe;return!e&&ie(c,"iterate",at),l.forEach((u,h)=>r.call(i,d(u),d(h),o))}};return ce(n,e?{add:on("add"),set:on("set"),delete:on("delete"),clear:on("clear")}:{add(r){!t&&!Ee(r)&&!ht(r)&&(r=k(r));const i=k(this);return rn(i).has.call(i,r)||(i.add(r),ke(i,"add",r,r)),this},set(r,i){!t&&!Ee(i)&&!ht(i)&&(i=k(i));const o=k(this),{has:l,get:c}=rn(o);let d=l.call(o,r);d||(r=k(r),d=l.call(o,r));const u=c.call(o,r);return o.set(r,i),d?nt(i,u)&&ke(o,"set",r,i):ke(o,"add",r,i),this},delete(r){const i=k(this),{has:o,get:l}=rn(i);let c=o.call(i,r);c||(r=k(r),c=o.call(i,r)),l&&l.call(i,r);const d=i.delete(r);return c&&ke(i,"delete",r,void 0),d},clear(){const r=k(this),i=r.size!==0,o=r.clear();return i&&ke(r,"clear",void 0,void 0),o}}),["keys","values","entries",Symbol.iterator].forEach(r=>{n[r]=bo(r,e,t)}),n}function _s(e,t){const n=xo(e,t);return(s,r,i)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(W(n,r)&&r in s?n:s,r,i)}const Eo={get:_s(!1,!1)},wo={get:_s(!1,!0)},So={get:_s(!0,!1)};const zr=new WeakMap,Jr=new WeakMap,Qr=new WeakMap,Ro=new WeakMap;function Po(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Co(e){return e.__v_skip||!Object.isExtensible(e)?0:Po(Xi(e))}function Rn(e){return ht(e)?e:vs(e,!1,_o,Eo,zr)}function Yr(e){return vs(e,!1,yo,wo,Jr)}function Xr(e){return vs(e,!0,vo,So,Qr)}function vs(e,t,n,s,r){if(!Z(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const i=r.get(e);if(i)return i;const o=Co(e);if(o===0)return e;const l=new Proxy(e,o===2?s:n);return r.set(e,l),l}function Pt(e){return ht(e)?Pt(e.__v_raw):!!(e&&e.__v_isReactive)}function ht(e){return!!(e&&e.__v_isReadonly)}function Ee(e){return!!(e&&e.__v_isShallow)}function ys(e){return e?!!e.__v_raw:!1}function k(e){const t=e&&e.__v_raw;return t?k(t):e}function Zr(e){return!W(e,"__v_skip")&&Object.isExtensible(e)&&Mr(e,"__v_skip",!0),e}const oe=e=>Z(e)?Rn(e):e,Yn=e=>Z(e)?Xr(e):e;function le(e){return e?e.__v_isRef===!0:!1}function wt(e){return ei(e,!1)}function Ao(e){return ei(e,!0)}function ei(e,t){return le(e)?e:new Oo(e,t)}class Oo{constructor(t,n){this.dep=new ms,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=n?t:k(t),this._value=n?t:oe(t),this.__v_isShallow=n}get value(){return this.dep.track(),this._value}set value(t){const n=this._rawValue,s=this.__v_isShallow||Ee(t)||ht(t);t=s?t:k(t),nt(t,n)&&(this._rawValue=t,this._value=s?t:oe(t),this.dep.trigger())}}function dt(e){return le(e)?e.value:e}const To={get:(e,t,n)=>t==="__v_raw"?e:dt(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return le(r)&&!le(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function ti(e){return Pt(e)?e:new Proxy(e,To)}class Io{constructor(t,n,s){this.fn=t,this.setter=n,this._value=void 0,this.dep=new ms(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=Gt-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!n,this.isSSR=s}notify(){if(this.flags|=16,!(this.flags&8)&&X!==this)return Dr(this,!0),!0}get value(){const t=this.dep.track();return Ur(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function Mo(e,t,n=!1){let s,r;return D(e)?s=e:(s=e.get,r=e.set),new Io(s,r,n)}const ln={},hn=new WeakMap;let ut;function Fo(e,t=!1,n=ut){if(n){let s=hn.get(n);s||hn.set(n,s=[]),s.push(e)}}function $o(e,t,n=Q){const{immediate:s,deep:r,once:i,scheduler:o,augmentJob:l,call:c}=n,d=T=>r?T:Ee(T)||r===!1||r===0?We(T,1):We(T);let u,h,g,m,A=!1,O=!1;if(le(e)?(h=()=>e.value,A=Ee(e)):Pt(e)?(h=()=>d(e),A=!0):j(e)?(O=!0,A=e.some(T=>Pt(T)||Ee(T)),h=()=>e.map(T=>{if(le(T))return T.value;if(Pt(T))return d(T);if(D(T))return c?c(T,2):T()})):D(e)?t?h=c?()=>c(e,2):e:h=()=>{if(g){it();try{g()}finally{ot()}}const T=ut;ut=u;try{return c?c(e,3,[m]):e(m)}finally{ut=T}}:h=je,t&&r){const T=h,z=r===!0?1/0:r;h=()=>We(T(),z)}const B=co(),$=()=>{u.stop(),B&&B.active&&fs(B.effects,u)};if(i&&t){const T=t;t=(...z)=>{T(...z),$()}}let M=O?new Array(e.length).fill(ln):ln;const L=T=>{if(!(!(u.flags&1)||!u.dirty&&!T))if(t){const z=u.run();if(r||A||(O?z.some((se,ee)=>nt(se,M[ee])):nt(z,M))){g&&g();const se=ut;ut=u;try{const ee=[z,M===ln?void 0:O&&M[0]===ln?[]:M,m];c?c(t,3,ee):t(...ee),M=z}finally{ut=se}}}else u.run()};return l&&l(L),u=new Hr(h),u.scheduler=o?()=>o(L,!1):L,m=T=>Fo(T,!1,u),g=u.onStop=()=>{const T=hn.get(u);if(T){if(c)c(T,4);else for(const z of T)z();hn.delete(u)}},t?s?L(!0):M=u.run():o?o(L.bind(null,!0),!0):u.run(),$.pause=u.pause.bind(u),$.resume=u.resume.bind(u),$.stop=$,$}function We(e,t=1/0,n){if(t<=0||!Z(e)||e.__v_skip||(n=n||new Set,n.has(e)))return e;if(n.add(e),t--,le(e))We(e.value,t,n);else if(j(e))for(let s=0;s{We(s,t,n)});else if(Tr(e)){for(const s in e)We(e[s],t,n);for(const s of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,s)&&We(e[s],t,n)}return e}/** -* @vue/runtime-core v3.5.13 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/function en(e,t,n,s){try{return s?e(...s):e()}catch(r){Pn(r,t,n)}}function De(e,t,n,s){if(D(e)){const r=en(e,t,n,s);return r&&Ar(r)&&r.catch(i=>{Pn(i,t,n)}),r}if(j(e)){const r=[];for(let i=0;i>>1,r=ue[s],i=Jt(r);i=Jt(n)?ue.push(e):ue.splice(No(t),0,e),e.flags|=1,si()}}function si(){pn||(pn=ni.then(ii))}function Ho(e){j(e)?Ct.push(...e):Ze&&e.id===-1?Ze.splice(bt+1,0,e):e.flags&1||(Ct.push(e),e.flags|=1),si()}function $s(e,t,n=Ne+1){for(;nJt(n)-Jt(s));if(Ct.length=0,Ze){Ze.push(...t);return}for(Ze=t,bt=0;bte.id==null?e.flags&2?-1:1/0:e.id;function ii(e){try{for(Ne=0;Ne{s._d&&ks(-1);const i=gn(t);let o;try{o=e(...r)}finally{gn(i),s._d&&ks(1)}return o};return s._n=!0,s._c=!0,s._d=!0,s}function Do(e,t){if(xe===null)return e;const n=Tn(xe),s=e.dirs||(e.dirs=[]);for(let r=0;re.__isTeleport;function Es(e,t){e.shapeFlag&6&&e.component?(e.transition=t,Es(e.component.subTree,t)):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}/*! #__NO_SIDE_EFFECTS__ */function tn(e,t){return D(e)?ce({name:e.name},t,{setup:e}):e}function li(e){e.ids=[e.ids[0]+e.ids[2]+++"-",0,0]}function mn(e,t,n,s,r=!1){if(j(e)){e.forEach((A,O)=>mn(A,t&&(j(t)?t[O]:t),n,s,r));return}if(Vt(s)&&!r){s.shapeFlag&512&&s.type.__asyncResolved&&s.component.subTree.component&&mn(e,t,n,s.component.subTree);return}const i=s.shapeFlag&4?Tn(s.component):s.el,o=r?null:i,{i:l,r:c}=e,d=t&&t.r,u=l.refs===Q?l.refs={}:l.refs,h=l.setupState,g=k(h),m=h===Q?()=>!1:A=>W(g,A);if(d!=null&&d!==c&&(te(d)?(u[d]=null,m(d)&&(h[d]=null)):le(d)&&(d.value=null)),D(c))en(c,l,12,[o,u]);else{const A=te(c),O=le(c);if(A||O){const B=()=>{if(e.f){const $=A?m(c)?h[c]:u[c]:c.value;r?j($)&&fs($,i):j($)?$.includes(i)||$.push(i):A?(u[c]=[i],m(c)&&(h[c]=u[c])):(c.value=[i],e.k&&(u[e.k]=c.value))}else A?(u[c]=o,m(c)&&(h[c]=o)):O&&(c.value=o,e.k&&(u[e.k]=o))};o?(B.id=-1,me(B,n)):B()}}}wn().requestIdleCallback;wn().cancelIdleCallback;const Vt=e=>!!e.type.__asyncLoader,ci=e=>e.type.__isKeepAlive;function Uo(e,t){fi(e,"a",t)}function Ko(e,t){fi(e,"da",t)}function fi(e,t,n=ae){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(Cn(t,s,n),n){let r=n.parent;for(;r&&r.parent;)ci(r.parent.vnode)&&ko(s,t,n,r),r=r.parent}}function ko(e,t,n,s){const r=Cn(t,e,s,!0);ui(()=>{fs(s[t],r)},n)}function Cn(e,t,n=ae,s=!1){if(n){const r=n[e]||(n[e]=[]),i=t.__weh||(t.__weh=(...o)=>{it();const l=nn(n),c=De(t,n,e,o);return l(),ot(),c});return s?r.unshift(i):r.push(i),i}}const Ge=e=>(t,n=ae)=>{(!Yt||e==="sp")&&Cn(e,(...s)=>t(...s),n)},Wo=Ge("bm"),qo=Ge("m"),Go=Ge("bu"),zo=Ge("u"),Jo=Ge("bum"),ui=Ge("um"),Qo=Ge("sp"),Yo=Ge("rtg"),Xo=Ge("rtc");function Zo(e,t=ae){Cn("ec",e,t)}const el=Symbol.for("v-ndc");function Ls(e,t,n,s){let r;const i=n,o=j(e);if(o||te(e)){const l=o&&Pt(e);let c=!1;l&&(c=!Ee(e),e=Sn(e)),r=new Array(e.length);for(let d=0,u=e.length;dt(l,c,void 0,i));else{const l=Object.keys(e);r=new Array(l.length);for(let c=0,d=l.length;ce?Ii(e)?Tn(e):Xn(e.parent):null,Ut=ce(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Xn(e.parent),$root:e=>Xn(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>di(e),$forceUpdate:e=>e.f||(e.f=()=>{xs(e.update)}),$nextTick:e=>e.n||(e.n=bs.bind(e.proxy)),$watch:e=>xl.bind(e)}),Hn=(e,t)=>e!==Q&&!e.__isScriptSetup&&W(e,t),tl={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:s,data:r,props:i,accessCache:o,type:l,appContext:c}=e;let d;if(t[0]!=="$"){const m=o[t];if(m!==void 0)switch(m){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return i[t]}else{if(Hn(s,t))return o[t]=1,s[t];if(r!==Q&&W(r,t))return o[t]=2,r[t];if((d=e.propsOptions[0])&&W(d,t))return o[t]=3,i[t];if(n!==Q&&W(n,t))return o[t]=4,n[t];Zn&&(o[t]=0)}}const u=Ut[t];let h,g;if(u)return t==="$attrs"&&ie(e.attrs,"get",""),u(e);if((h=l.__cssModules)&&(h=h[t]))return h;if(n!==Q&&W(n,t))return o[t]=4,n[t];if(g=c.config.globalProperties,W(g,t))return g[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:i}=e;return Hn(r,t)?(r[t]=n,!0):s!==Q&&W(s,t)?(s[t]=n,!0):W(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(i[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:i}},o){let l;return!!n[o]||e!==Q&&W(e,o)||Hn(t,o)||(l=i[0])&&W(l,o)||W(s,o)||W(Ut,o)||W(r.config.globalProperties,o)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:W(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function Ns(e){return j(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let Zn=!0;function nl(e){const t=di(e),n=e.proxy,s=e.ctx;Zn=!1,t.beforeCreate&&Hs(t.beforeCreate,e,"bc");const{data:r,computed:i,methods:o,watch:l,provide:c,inject:d,created:u,beforeMount:h,mounted:g,beforeUpdate:m,updated:A,activated:O,deactivated:B,beforeDestroy:$,beforeUnmount:M,destroyed:L,unmounted:T,render:z,renderTracked:se,renderTriggered:ee,errorCaptured:Ae,serverPrefetch:ze,expose:Oe,inheritAttrs:Je,components:lt,directives:Te,filters:Mt}=t;if(d&&sl(d,s,null),o)for(const G in o){const U=o[G];D(U)&&(s[G]=U.bind(n))}if(r){const G=r.call(n,n);Z(G)&&(e.data=Rn(G))}if(Zn=!0,i)for(const G in i){const U=i[G],Be=D(U)?U.bind(n,n):D(U.get)?U.get.bind(n,n):je,Qe=!D(U)&&D(U.set)?U.set.bind(n):je,Ie=Re({get:Be,set:Qe});Object.defineProperty(s,G,{enumerable:!0,configurable:!0,get:()=>Ie.value,set:de=>Ie.value=de})}if(l)for(const G in l)ai(l[G],s,n,G);if(c){const G=D(c)?c.call(n):c;Reflect.ownKeys(G).forEach(U=>{un(U,G[U])})}u&&Hs(u,e,"c");function ne(G,U){j(U)?U.forEach(Be=>G(Be.bind(n))):U&&G(U.bind(n))}if(ne(Wo,h),ne(qo,g),ne(Go,m),ne(zo,A),ne(Uo,O),ne(Ko,B),ne(Zo,Ae),ne(Xo,se),ne(Yo,ee),ne(Jo,M),ne(ui,T),ne(Qo,ze),j(Oe))if(Oe.length){const G=e.exposed||(e.exposed={});Oe.forEach(U=>{Object.defineProperty(G,U,{get:()=>n[U],set:Be=>n[U]=Be})})}else e.exposed||(e.exposed={});z&&e.render===je&&(e.render=z),Je!=null&&(e.inheritAttrs=Je),lt&&(e.components=lt),Te&&(e.directives=Te),ze&&li(e)}function sl(e,t,n=je){j(e)&&(e=es(e));for(const s in e){const r=e[s];let i;Z(r)?"default"in r?i=qe(r.from||s,r.default,!0):i=qe(r.from||s):i=qe(r),le(i)?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>i.value,set:o=>i.value=o}):t[s]=i}}function Hs(e,t,n){De(j(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function ai(e,t,n,s){let r=s.includes(".")?Pi(n,s):()=>n[s];if(te(e)){const i=t[e];D(i)&&Kt(r,i)}else if(D(e))Kt(r,e.bind(n));else if(Z(e))if(j(e))e.forEach(i=>ai(i,t,n,s));else{const i=D(e.handler)?e.handler.bind(n):t[e.handler];D(i)&&Kt(r,i,e)}}function di(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:i,config:{optionMergeStrategies:o}}=e.appContext,l=i.get(t);let c;return l?c=l:!r.length&&!n&&!s?c=t:(c={},r.length&&r.forEach(d=>_n(c,d,o,!0)),_n(c,t,o)),Z(t)&&i.set(t,c),c}function _n(e,t,n,s=!1){const{mixins:r,extends:i}=t;i&&_n(e,i,n,!0),r&&r.forEach(o=>_n(e,o,n,!0));for(const o in t)if(!(s&&o==="expose")){const l=rl[o]||n&&n[o];e[o]=l?l(e[o],t[o]):t[o]}return e}const rl={data:js,props:Ds,emits:Ds,methods:Ht,computed:Ht,beforeCreate:fe,created:fe,beforeMount:fe,mounted:fe,beforeUpdate:fe,updated:fe,beforeDestroy:fe,beforeUnmount:fe,destroyed:fe,unmounted:fe,activated:fe,deactivated:fe,errorCaptured:fe,serverPrefetch:fe,components:Ht,directives:Ht,watch:ol,provide:js,inject:il};function js(e,t){return t?e?function(){return ce(D(e)?e.call(this,this):e,D(t)?t.call(this,this):t)}:t:e}function il(e,t){return Ht(es(e),es(t))}function es(e){if(j(e)){const t={};for(let n=0;n1)return n&&D(t)?t.call(s&&s.proxy):t}}const pi={},gi=()=>Object.create(pi),mi=e=>Object.getPrototypeOf(e)===pi;function fl(e,t,n,s=!1){const r={},i=gi();e.propsDefaults=Object.create(null),_i(e,t,r,i);for(const o in e.propsOptions[0])o in r||(r[o]=void 0);n?e.props=s?r:Yr(r):e.type.props?e.props=r:e.props=i,e.attrs=i}function ul(e,t,n,s){const{props:r,attrs:i,vnode:{patchFlag:o}}=e,l=k(r),[c]=e.propsOptions;let d=!1;if((s||o>0)&&!(o&16)){if(o&8){const u=e.vnode.dynamicProps;for(let h=0;h{c=!0;const[g,m]=vi(h,t,!0);ce(o,g),m&&l.push(...m)};!n&&t.mixins.length&&t.mixins.forEach(u),e.extends&&u(e.extends),e.mixins&&e.mixins.forEach(u)}if(!i&&!c)return Z(e)&&s.set(e,St),St;if(j(i))for(let u=0;ue[0]==="_"||e==="$stable",ws=e=>j(e)?e.map(He):[He(e)],dl=(e,t,n)=>{if(t._n)return t;const s=jo((...r)=>ws(t(...r)),n);return s._c=!1,s},bi=(e,t,n)=>{const s=e._ctx;for(const r in e){if(yi(r))continue;const i=e[r];if(D(i))t[r]=dl(r,i,s);else if(i!=null){const o=ws(i);t[r]=()=>o}}},xi=(e,t)=>{const n=ws(t);e.slots.default=()=>n},Ei=(e,t,n)=>{for(const s in t)(n||s!=="_")&&(e[s]=t[s])},hl=(e,t,n)=>{const s=e.slots=gi();if(e.vnode.shapeFlag&32){const r=t._;r?(Ei(s,t,n),n&&Mr(s,"_",r,!0)):bi(t,s)}else t&&xi(e,t)},pl=(e,t,n)=>{const{vnode:s,slots:r}=e;let i=!0,o=Q;if(s.shapeFlag&32){const l=t._;l?n&&l===1?i=!1:Ei(r,t,n):(i=!t.$stable,bi(t,r)),o=t}else t&&(xi(e,t),o={default:1});if(i)for(const l in r)!yi(l)&&o[l]==null&&delete r[l]},me=Al;function gl(e){return ml(e)}function ml(e,t){const n=wn();n.__VUE__=!0;const{insert:s,remove:r,patchProp:i,createElement:o,createText:l,createComment:c,setText:d,setElementText:u,parentNode:h,nextSibling:g,setScopeId:m=je,insertStaticContent:A}=e,O=(f,a,p,_=null,b=null,y=null,S=void 0,w=null,E=!!a.dynamicChildren)=>{if(f===a)return;f&&!Lt(f,a)&&(_=v(f),de(f,b,y,!0),f=null),a.patchFlag===-2&&(E=!1,a.dynamicChildren=null);const{type:x,ref:N,shapeFlag:P}=a;switch(x){case On:B(f,a,p,_);break;case pt:$(f,a,p,_);break;case Dn:f==null&&M(a,p,_,S);break;case Se:lt(f,a,p,_,b,y,S,w,E);break;default:P&1?z(f,a,p,_,b,y,S,w,E):P&6?Te(f,a,p,_,b,y,S,w,E):(P&64||P&128)&&x.process(f,a,p,_,b,y,S,w,E,I)}N!=null&&b&&mn(N,f&&f.ref,y,a||f,!a)},B=(f,a,p,_)=>{if(f==null)s(a.el=l(a.children),p,_);else{const b=a.el=f.el;a.children!==f.children&&d(b,a.children)}},$=(f,a,p,_)=>{f==null?s(a.el=c(a.children||""),p,_):a.el=f.el},M=(f,a,p,_)=>{[f.el,f.anchor]=A(f.children,a,p,_,f.el,f.anchor)},L=({el:f,anchor:a},p,_)=>{let b;for(;f&&f!==a;)b=g(f),s(f,p,_),f=b;s(a,p,_)},T=({el:f,anchor:a})=>{let p;for(;f&&f!==a;)p=g(f),r(f),f=p;r(a)},z=(f,a,p,_,b,y,S,w,E)=>{a.type==="svg"?S="svg":a.type==="math"&&(S="mathml"),f==null?se(a,p,_,b,y,S,w,E):ze(f,a,b,y,S,w,E)},se=(f,a,p,_,b,y,S,w)=>{let E,x;const{props:N,shapeFlag:P,transition:F,dirs:H}=f;if(E=f.el=o(f.type,y,N&&N.is,N),P&8?u(E,f.children):P&16&&Ae(f.children,E,null,_,b,jn(f,y),S,w),H&&ct(f,null,_,"created"),ee(E,f,f.scopeId,S,_),N){for(const Y in N)Y!=="value"&&!jt(Y)&&i(E,Y,null,N[Y],y,_);"value"in N&&i(E,"value",null,N.value,y),(x=N.onVnodeBeforeMount)&&Le(x,_,f)}H&&ct(f,null,_,"beforeMount");const V=_l(b,F);V&&F.beforeEnter(E),s(E,a,p),((x=N&&N.onVnodeMounted)||V||H)&&me(()=>{x&&Le(x,_,f),V&&F.enter(E),H&&ct(f,null,_,"mounted")},b)},ee=(f,a,p,_,b)=>{if(p&&m(f,p),_)for(let y=0;y<_.length;y++)m(f,_[y]);if(b){let y=b.subTree;if(a===y||Ai(y.type)&&(y.ssContent===a||y.ssFallback===a)){const S=b.vnode;ee(f,S,S.scopeId,S.slotScopeIds,b.parent)}}},Ae=(f,a,p,_,b,y,S,w,E=0)=>{for(let x=E;x{const w=a.el=f.el;let{patchFlag:E,dynamicChildren:x,dirs:N}=a;E|=f.patchFlag&16;const P=f.props||Q,F=a.props||Q;let H;if(p&&ft(p,!1),(H=F.onVnodeBeforeUpdate)&&Le(H,p,a,f),N&&ct(a,f,p,"beforeUpdate"),p&&ft(p,!0),(P.innerHTML&&F.innerHTML==null||P.textContent&&F.textContent==null)&&u(w,""),x?Oe(f.dynamicChildren,x,w,p,_,jn(a,b),y):S||U(f,a,w,null,p,_,jn(a,b),y,!1),E>0){if(E&16)Je(w,P,F,p,b);else if(E&2&&P.class!==F.class&&i(w,"class",null,F.class,b),E&4&&i(w,"style",P.style,F.style,b),E&8){const V=a.dynamicProps;for(let Y=0;Y{H&&Le(H,p,a,f),N&&ct(a,f,p,"updated")},_)},Oe=(f,a,p,_,b,y,S)=>{for(let w=0;w{if(a!==p){if(a!==Q)for(const y in a)!jt(y)&&!(y in p)&&i(f,y,a[y],null,b,_);for(const y in p){if(jt(y))continue;const S=p[y],w=a[y];S!==w&&y!=="value"&&i(f,y,w,S,b,_)}"value"in p&&i(f,"value",a.value,p.value,b)}},lt=(f,a,p,_,b,y,S,w,E)=>{const x=a.el=f?f.el:l(""),N=a.anchor=f?f.anchor:l("");let{patchFlag:P,dynamicChildren:F,slotScopeIds:H}=a;H&&(w=w?w.concat(H):H),f==null?(s(x,p,_),s(N,p,_),Ae(a.children||[],p,N,b,y,S,w,E)):P>0&&P&64&&F&&f.dynamicChildren?(Oe(f.dynamicChildren,F,p,b,y,S,w),(a.key!=null||b&&a===b.subTree)&&wi(f,a,!0)):U(f,a,p,N,b,y,S,w,E)},Te=(f,a,p,_,b,y,S,w,E)=>{a.slotScopeIds=w,f==null?a.shapeFlag&512?b.ctx.activate(a,p,_,S,E):Mt(a,p,_,b,y,S,E):mt(f,a,E)},Mt=(f,a,p,_,b,y,S)=>{const w=f.component=Hl(f,_,b);if(ci(f)&&(w.ctx.renderer=I),jl(w,!1,S),w.asyncDep){if(b&&b.registerDep(w,ne,S),!f.el){const E=w.subTree=ye(pt);$(null,E,a,p)}}else ne(w,f,a,p,b,y,S)},mt=(f,a,p)=>{const _=a.component=f.component;if(Pl(f,a,p))if(_.asyncDep&&!_.asyncResolved){G(_,a,p);return}else _.next=a,_.update();else a.el=f.el,_.vnode=a},ne=(f,a,p,_,b,y,S)=>{const w=()=>{if(f.isMounted){let{next:P,bu:F,u:H,parent:V,vnode:Y}=f;{const Fe=Si(f);if(Fe){P&&(P.el=Y.el,G(f,P,S)),Fe.asyncDep.then(()=>{f.isUnmounted||w()});return}}let q=P,pe;ft(f,!1),P?(P.el=Y.el,G(f,P,S)):P=Y,F&&cn(F),(pe=P.props&&P.props.onVnodeBeforeUpdate)&&Le(pe,V,P,Y),ft(f,!0);const he=Us(f),Me=f.subTree;f.subTree=he,O(Me,he,h(Me.el),v(Me),f,b,y),P.el=he.el,q===null&&Cl(f,he.el),H&&me(H,b),(pe=P.props&&P.props.onVnodeUpdated)&&me(()=>Le(pe,V,P,Y),b)}else{let P;const{el:F,props:H}=a,{bm:V,m:Y,parent:q,root:pe,type:he}=f,Me=Vt(a);ft(f,!1),V&&cn(V),!Me&&(P=H&&H.onVnodeBeforeMount)&&Le(P,q,a),ft(f,!0);{pe.ce&&pe.ce._injectChildStyle(he);const Fe=f.subTree=Us(f);O(null,Fe,p,_,f,b,y),a.el=Fe.el}if(Y&&me(Y,b),!Me&&(P=H&&H.onVnodeMounted)){const Fe=a;me(()=>Le(P,q,Fe),b)}(a.shapeFlag&256||q&&Vt(q.vnode)&&q.vnode.shapeFlag&256)&&f.a&&me(f.a,b),f.isMounted=!0,a=p=_=null}};f.scope.on();const E=f.effect=new Hr(w);f.scope.off();const x=f.update=E.run.bind(E),N=f.job=E.runIfDirty.bind(E);N.i=f,N.id=f.uid,E.scheduler=()=>xs(N),ft(f,!0),x()},G=(f,a,p)=>{a.component=f;const _=f.vnode.props;f.vnode=a,f.next=null,ul(f,a.props,_,p),pl(f,a.children,p),it(),$s(f),ot()},U=(f,a,p,_,b,y,S,w,E=!1)=>{const x=f&&f.children,N=f?f.shapeFlag:0,P=a.children,{patchFlag:F,shapeFlag:H}=a;if(F>0){if(F&128){Qe(x,P,p,_,b,y,S,w,E);return}else if(F&256){Be(x,P,p,_,b,y,S,w,E);return}}H&8?(N&16&&be(x,b,y),P!==x&&u(p,P)):N&16?H&16?Qe(x,P,p,_,b,y,S,w,E):be(x,b,y,!0):(N&8&&u(p,""),H&16&&Ae(P,p,_,b,y,S,w,E))},Be=(f,a,p,_,b,y,S,w,E)=>{f=f||St,a=a||St;const x=f.length,N=a.length,P=Math.min(x,N);let F;for(F=0;FN?be(f,b,y,!0,!1,P):Ae(a,p,_,b,y,S,w,E,P)},Qe=(f,a,p,_,b,y,S,w,E)=>{let x=0;const N=a.length;let P=f.length-1,F=N-1;for(;x<=P&&x<=F;){const H=f[x],V=a[x]=E?et(a[x]):He(a[x]);if(Lt(H,V))O(H,V,p,null,b,y,S,w,E);else break;x++}for(;x<=P&&x<=F;){const H=f[P],V=a[F]=E?et(a[F]):He(a[F]);if(Lt(H,V))O(H,V,p,null,b,y,S,w,E);else break;P--,F--}if(x>P){if(x<=F){const H=F+1,V=HF)for(;x<=P;)de(f[x],b,y,!0),x++;else{const H=x,V=x,Y=new Map;for(x=V;x<=F;x++){const ge=a[x]=E?et(a[x]):He(a[x]);ge.key!=null&&Y.set(ge.key,x)}let q,pe=0;const he=F-V+1;let Me=!1,Fe=0;const Ft=new Array(he);for(x=0;x=he){de(ge,b,y,!0);continue}let $e;if(ge.key!=null)$e=Y.get(ge.key);else for(q=V;q<=F;q++)if(Ft[q-V]===0&&Lt(ge,a[q])){$e=q;break}$e===void 0?de(ge,b,y,!0):(Ft[$e-V]=x+1,$e>=Fe?Fe=$e:Me=!0,O(ge,a[$e],p,null,b,y,S,w,E),pe++)}const Os=Me?vl(Ft):St;for(q=Os.length-1,x=he-1;x>=0;x--){const ge=V+x,$e=a[ge],Ts=ge+1{const{el:y,type:S,transition:w,children:E,shapeFlag:x}=f;if(x&6){Ie(f.component.subTree,a,p,_);return}if(x&128){f.suspense.move(a,p,_);return}if(x&64){S.move(f,a,p,I);return}if(S===Se){s(y,a,p);for(let P=0;Pw.enter(y),b);else{const{leave:P,delayLeave:F,afterLeave:H}=w,V=()=>s(y,a,p),Y=()=>{P(y,()=>{V(),H&&H()})};F?F(y,V,Y):Y()}else s(y,a,p)},de=(f,a,p,_=!1,b=!1)=>{const{type:y,props:S,ref:w,children:E,dynamicChildren:x,shapeFlag:N,patchFlag:P,dirs:F,cacheIndex:H}=f;if(P===-2&&(b=!1),w!=null&&mn(w,null,p,f,!0),H!=null&&(a.renderCache[H]=void 0),N&256){a.ctx.deactivate(f);return}const V=N&1&&F,Y=!Vt(f);let q;if(Y&&(q=S&&S.onVnodeBeforeUnmount)&&Le(q,a,f),N&6)sn(f.component,p,_);else{if(N&128){f.suspense.unmount(p,_);return}V&&ct(f,null,a,"beforeUnmount"),N&64?f.type.remove(f,a,p,I,_):x&&!x.hasOnce&&(y!==Se||P>0&&P&64)?be(x,a,p,!1,!0):(y===Se&&P&384||!b&&N&16)&&be(E,a,p),_&&_t(f)}(Y&&(q=S&&S.onVnodeUnmounted)||V)&&me(()=>{q&&Le(q,a,f),V&&ct(f,null,a,"unmounted")},p)},_t=f=>{const{type:a,el:p,anchor:_,transition:b}=f;if(a===Se){vt(p,_);return}if(a===Dn){T(f);return}const y=()=>{r(p),b&&!b.persisted&&b.afterLeave&&b.afterLeave()};if(f.shapeFlag&1&&b&&!b.persisted){const{leave:S,delayLeave:w}=b,E=()=>S(p,y);w?w(f.el,y,E):E()}else y()},vt=(f,a)=>{let p;for(;f!==a;)p=g(f),r(f),f=p;r(a)},sn=(f,a,p)=>{const{bum:_,scope:b,job:y,subTree:S,um:w,m:E,a:x}=f;Vs(E),Vs(x),_&&cn(_),b.stop(),y&&(y.flags|=8,de(S,f,a,p)),w&&me(w,a),me(()=>{f.isUnmounted=!0},a),a&&a.pendingBranch&&!a.isUnmounted&&f.asyncDep&&!f.asyncResolved&&f.suspenseId===a.pendingId&&(a.deps--,a.deps===0&&a.resolve())},be=(f,a,p,_=!1,b=!1,y=0)=>{for(let S=y;S{if(f.shapeFlag&6)return v(f.component.subTree);if(f.shapeFlag&128)return f.suspense.next();const a=g(f.anchor||f.el),p=a&&a[Bo];return p?g(p):a};let C=!1;const R=(f,a,p)=>{f==null?a._vnode&&de(a._vnode,null,null,!0):O(a._vnode||null,f,a,null,null,null,p),a._vnode=f,C||(C=!0,$s(),ri(),C=!1)},I={p:O,um:de,m:Ie,r:_t,mt:Mt,mc:Ae,pc:U,pbc:Oe,n:v,o:e};return{render:R,hydrate:void 0,createApp:cl(R)}}function jn({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function ft({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function _l(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function wi(e,t,n=!1){const s=e.children,r=t.children;if(j(s)&&j(r))for(let i=0;i>1,e[n[l]]0&&(t[s]=n[i-1]),n[i]=s)}}for(i=n.length,o=n[i-1];i-- >0;)n[i]=o,o=t[o];return n}function Si(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Si(t)}function Vs(e){if(e)for(let t=0;tqe(yl);function Kt(e,t,n){return Ri(e,t,n)}function Ri(e,t,n=Q){const{immediate:s,deep:r,flush:i,once:o}=n,l=ce({},n),c=t&&s||!t&&i!=="post";let d;if(Yt){if(i==="sync"){const m=bl();d=m.__watcherHandles||(m.__watcherHandles=[])}else if(!c){const m=()=>{};return m.stop=je,m.resume=je,m.pause=je,m}}const u=ae;l.call=(m,A,O)=>De(m,u,A,O);let h=!1;i==="post"?l.scheduler=m=>{me(m,u&&u.suspense)}:i!=="sync"&&(h=!0,l.scheduler=(m,A)=>{A?m():xs(m)}),l.augmentJob=m=>{t&&(m.flags|=4),h&&(m.flags|=2,u&&(m.id=u.uid,m.i=u))};const g=$o(e,t,l);return Yt&&(d?d.push(g):c&&g()),g}function xl(e,t,n){const s=this.proxy,r=te(e)?e.includes(".")?Pi(s,e):()=>s[e]:e.bind(s,s);let i;D(t)?i=t:(i=t.handler,n=t);const o=nn(this),l=Ri(r,i.bind(s),n);return o(),l}function Pi(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;rt==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${st(t)}Modifiers`]||e[`${gt(t)}Modifiers`];function wl(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||Q;let r=n;const i=t.startsWith("update:"),o=i&&El(s,t.slice(7));o&&(o.trim&&(r=n.map(u=>te(u)?u.trim():u)),o.number&&(r=n.map(qn)));let l,c=s[l=Mn(t)]||s[l=Mn(st(t))];!c&&i&&(c=s[l=Mn(gt(t))]),c&&De(c,e,6,r);const d=s[l+"Once"];if(d){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,De(d,e,6,r)}}function Ci(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const i=e.emits;let o={},l=!1;if(!D(e)){const c=d=>{const u=Ci(d,t,!0);u&&(l=!0,ce(o,u))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!i&&!l?(Z(e)&&s.set(e,null),null):(j(i)?i.forEach(c=>o[c]=null):ce(o,i),Z(e)&&s.set(e,o),o)}function An(e,t){return!e||!bn(t)?!1:(t=t.slice(2).replace(/Once$/,""),W(e,t[0].toLowerCase()+t.slice(1))||W(e,gt(t))||W(e,t))}function Us(e){const{type:t,vnode:n,proxy:s,withProxy:r,propsOptions:[i],slots:o,attrs:l,emit:c,render:d,renderCache:u,props:h,data:g,setupState:m,ctx:A,inheritAttrs:O}=e,B=gn(e);let $,M;try{if(n.shapeFlag&4){const T=r||s,z=T;$=He(d.call(z,T,u,h,m,g,A)),M=l}else{const T=t;$=He(T.length>1?T(h,{attrs:l,slots:o,emit:c}):T(h,null)),M=t.props?l:Sl(l)}}catch(T){kt.length=0,Pn(T,e,1),$=ye(pt)}let L=$;if(M&&O!==!1){const T=Object.keys(M),{shapeFlag:z}=L;T.length&&z&7&&(i&&T.some(cs)&&(M=Rl(M,i)),L=Ot(L,M,!1,!0))}return n.dirs&&(L=Ot(L,null,!1,!0),L.dirs=L.dirs?L.dirs.concat(n.dirs):n.dirs),n.transition&&Es(L,n.transition),$=L,gn(B),$}const Sl=e=>{let t;for(const n in e)(n==="class"||n==="style"||bn(n))&&((t||(t={}))[n]=e[n]);return t},Rl=(e,t)=>{const n={};for(const s in e)(!cs(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function Pl(e,t,n){const{props:s,children:r,component:i}=e,{props:o,children:l,patchFlag:c}=t,d=i.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return s?Ks(s,o,d):!!o;if(c&8){const u=t.dynamicProps;for(let h=0;he.__isSuspense;function Al(e,t){t&&t.pendingBranch?j(e)?t.effects.push(...e):t.effects.push(e):Ho(e)}const Se=Symbol.for("v-fgt"),On=Symbol.for("v-txt"),pt=Symbol.for("v-cmt"),Dn=Symbol.for("v-stc"),kt=[];let ve=null;function we(e=!1){kt.push(ve=e?null:[])}function Ol(){kt.pop(),ve=kt[kt.length-1]||null}let Qt=1;function ks(e,t=!1){Qt+=e,e<0&&ve&&t&&(ve.hasOnce=!0)}function Oi(e){return e.dynamicChildren=Qt>0?ve||St:null,Ol(),Qt>0&&ve&&ve.push(e),e}function Ye(e,t,n,s,r,i){return Oi(re(e,t,n,s,r,i,!0))}function Ss(e,t,n,s,r){return Oi(ye(e,t,n,s,r,!0))}function vn(e){return e?e.__v_isVNode===!0:!1}function Lt(e,t){return e.type===t.type&&e.key===t.key}const Ti=({key:e})=>e??null,an=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?te(e)||le(e)||D(e)?{i:xe,r:e,k:t,f:!!n}:e:null);function re(e,t=null,n=null,s=0,r=null,i=e===Se?0:1,o=!1,l=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Ti(t),ref:t&&an(t),scopeId:oi,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:xe};return l?(Rs(c,n),i&128&&e.normalize(c)):n&&(c.shapeFlag|=te(n)?8:16),Qt>0&&!o&&ve&&(c.patchFlag>0||i&6)&&c.patchFlag!==32&&ve.push(c),c}const ye=Tl;function Tl(e,t=null,n=null,s=0,r=null,i=!1){if((!e||e===el)&&(e=pt),vn(e)){const l=Ot(e,t,!0);return n&&Rs(l,n),Qt>0&&!i&&ve&&(l.shapeFlag&6?ve[ve.indexOf(e)]=l:ve.push(l)),l.patchFlag=-2,l}if(Ul(e)&&(e=e.__vccOpts),t){t=Il(t);let{class:l,style:c}=t;l&&!te(l)&&(t.class=ds(l)),Z(c)&&(ys(c)&&!j(c)&&(c=ce({},c)),t.style=as(c))}const o=te(e)?1:Ai(e)?128:Vo(e)?64:Z(e)?4:D(e)?2:0;return re(e,t,n,s,r,o,i,!0)}function Il(e){return e?ys(e)||mi(e)?ce({},e):e:null}function Ot(e,t,n=!1,s=!1){const{props:r,ref:i,patchFlag:o,children:l,transition:c}=e,d=t?$l(r||{},t):r,u={__v_isVNode:!0,__v_skip:!0,type:e.type,props:d,key:d&&Ti(d),ref:t&&t.ref?n&&i?j(i)?i.concat(an(t)):[i,an(t)]:an(t):i,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Se?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Ot(e.ssContent),ssFallback:e.ssFallback&&Ot(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&s&&Es(u,c.clone(u)),u}function Ml(e=" ",t=0){return ye(On,null,e,t)}function Fl(e="",t=!1){return t?(we(),Ss(pt,null,e)):ye(pt,null,e)}function He(e){return e==null||typeof e=="boolean"?ye(pt):j(e)?ye(Se,null,e.slice()):vn(e)?et(e):ye(On,null,String(e))}function et(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Ot(e)}function Rs(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(j(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),Rs(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!mi(t)?t._ctx=xe:r===3&&xe&&(xe.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else D(t)?(t={default:t,_ctx:xe},n=32):(t=String(t),s&64?(n=16,t=[Ml(t)]):n=8);e.children=t,e.shapeFlag|=n}function $l(...e){const t={};for(let n=0;n{let r;return(r=e[n])||(r=e[n]=[]),r.push(s),i=>{r.length>1?r.forEach(o=>o(i)):r[0](i)}};yn=t("__VUE_INSTANCE_SETTERS__",n=>ae=n),ns=t("__VUE_SSR_SETTERS__",n=>Yt=n)}const nn=e=>{const t=ae;return yn(e),e.scope.on(),()=>{e.scope.off(),yn(t)}},Ws=()=>{ae&&ae.scope.off(),yn(null)};function Ii(e){return e.vnode.shapeFlag&4}let Yt=!1;function jl(e,t=!1,n=!1){t&&ns(t);const{props:s,children:r}=e.vnode,i=Ii(e);fl(e,s,i,t),hl(e,r,n);const o=i?Dl(e,t):void 0;return t&&ns(!1),o}function Dl(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,tl);const{setup:s}=n;if(s){it();const r=e.setupContext=s.length>1?Vl(e):null,i=nn(e),o=en(s,e,0,[e.props,r]),l=Ar(o);if(ot(),i(),(l||e.sp)&&!Vt(e)&&li(e),l){if(o.then(Ws,Ws),t)return o.then(c=>{qs(e,c)}).catch(c=>{Pn(c,e,0)});e.asyncDep=o}else qs(e,o)}else Mi(e)}function qs(e,t,n){D(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Z(t)&&(e.setupState=ti(t)),Mi(e)}function Mi(e,t,n){const s=e.type;e.render||(e.render=s.render||je);{const r=nn(e);it();try{nl(e)}finally{ot(),r()}}}const Bl={get(e,t){return ie(e,"get",""),e[t]}};function Vl(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,Bl),slots:e.slots,emit:e.emit,expose:t}}function Tn(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(ti(Zr(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Ut)return Ut[n](e)},has(t,n){return n in t||n in Ut}})):e.proxy}function Ul(e){return D(e)&&"__vccOpts"in e}const Re=(e,t)=>Mo(e,t,Yt);function Fi(e,t,n){const s=arguments.length;return s===2?Z(t)&&!j(t)?vn(t)?ye(e,null,[t]):ye(e,t):ye(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&vn(n)&&(n=[n]),ye(e,t,n))}const Kl="3.5.13";/** -* @vue/runtime-dom v3.5.13 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/let ss;const Gs=typeof window<"u"&&window.trustedTypes;if(Gs)try{ss=Gs.createPolicy("vue",{createHTML:e=>e})}catch{}const $i=ss?e=>ss.createHTML(e):e=>e,kl="http://www.w3.org/2000/svg",Wl="http://www.w3.org/1998/Math/MathML",Ke=typeof document<"u"?document:null,zs=Ke&&Ke.createElement("template"),ql={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t==="svg"?Ke.createElementNS(kl,e):t==="mathml"?Ke.createElementNS(Wl,e):n?Ke.createElement(e,{is:n}):Ke.createElement(e);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>Ke.createTextNode(e),createComment:e=>Ke.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Ke.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,r,i){const o=n?n.previousSibling:t.lastChild;if(r&&(r===i||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===i||!(r=r.nextSibling)););else{zs.innerHTML=$i(s==="svg"?`${e}`:s==="mathml"?`${e}`:e);const l=zs.content;if(s==="svg"||s==="mathml"){const c=l.firstChild;for(;c.firstChild;)l.appendChild(c.firstChild);l.removeChild(c)}t.insertBefore(l,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Gl=Symbol("_vtc");function zl(e,t,n){const s=e[Gl];s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Js=Symbol("_vod"),Jl=Symbol("_vsh"),Ql=Symbol(""),Yl=/(^|;)\s*display\s*:/;function Xl(e,t,n){const s=e.style,r=te(n);let i=!1;if(n&&!r){if(t)if(te(t))for(const o of t.split(";")){const l=o.slice(0,o.indexOf(":")).trim();n[l]==null&&dn(s,l,"")}else for(const o in t)n[o]==null&&dn(s,o,"");for(const o in n)o==="display"&&(i=!0),dn(s,o,n[o])}else if(r){if(t!==n){const o=s[Ql];o&&(n+=";"+o),s.cssText=n,i=Yl.test(n)}}else t&&e.removeAttribute("style");Js in e&&(e[Js]=i?s.display:"",e[Jl]&&(s.display="none"))}const Qs=/\s*!important$/;function dn(e,t,n){if(j(n))n.forEach(s=>dn(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=Zl(e,t);Qs.test(n)?e.setProperty(gt(s),n.replace(Qs,""),"important"):e[s]=n}}const Ys=["Webkit","Moz","ms"],Bn={};function Zl(e,t){const n=Bn[t];if(n)return n;let s=st(t);if(s!=="filter"&&s in e)return Bn[t]=s;s=Ir(s);for(let r=0;rVn||(sc.then(()=>Vn=0),Vn=Date.now());function ic(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;De(oc(s,n.value),t,5,[s])};return n.value=e,n.attached=rc(),n}function oc(e,t){if(j(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const sr=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,lc=(e,t,n,s,r,i)=>{const o=r==="svg";t==="class"?zl(e,s,o):t==="style"?Xl(e,n,s):bn(t)?cs(t)||tc(e,t,n,s,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):cc(e,t,s,o))?(er(e,t,s),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Zs(e,t,s,o,i,t!=="value")):e._isVueCE&&(/[A-Z]/.test(t)||!te(s))?er(e,st(t),s,i,t):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),Zs(e,t,s,o))};function cc(e,t,n,s){if(s)return!!(t==="innerHTML"||t==="textContent"||t in e&&sr(t)&&D(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const r=e.tagName;if(r==="IMG"||r==="VIDEO"||r==="CANVAS"||r==="SOURCE")return!1}return sr(t)&&te(n)?!1:t in e}const rr=e=>{const t=e.props["onUpdate:modelValue"]||!1;return j(t)?n=>cn(t,n):t};function fc(e){e.target.composing=!0}function ir(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Un=Symbol("_assign"),uc={created(e,{modifiers:{lazy:t,trim:n,number:s}},r){e[Un]=rr(r);const i=s||r.props&&r.props.type==="number";xt(e,t?"change":"input",o=>{if(o.target.composing)return;let l=e.value;n&&(l=l.trim()),i&&(l=qn(l)),e[Un](l)}),n&&xt(e,"change",()=>{e.value=e.value.trim()}),t||(xt(e,"compositionstart",fc),xt(e,"compositionend",ir),xt(e,"change",ir))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,oldValue:n,modifiers:{lazy:s,trim:r,number:i}},o){if(e[Un]=rr(o),e.composing)return;const l=(i||e.type==="number")&&!/^0\d/.test(e.value)?qn(e.value):e.value,c=t??"";l!==c&&(document.activeElement===e&&e.type!=="range"&&(s&&t===n||r&&e.value.trim()===c)||(e.value=c))}},ac=["ctrl","shift","alt","meta"],dc={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>ac.some(n=>e[`${n}Key`]&&!t.includes(n))},hc=(e,t)=>{const n=e._withMods||(e._withMods={}),s=t.join(".");return n[s]||(n[s]=(r,...i)=>{for(let o=0;o{const t=gc().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=vc(s);if(!r)return;const i=t._component;!D(i)&&!i.render&&!i.template&&(i.template=r.innerHTML),r.nodeType===1&&(r.textContent="");const o=n(r,!1,_c(r));return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),o},t};function _c(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function vc(e){return te(e)?document.querySelector(e):e}/*! - * pinia v3.0.2 - * (c) 2025 Eduardo San Martin Morote - * @license MIT - */const yc=Symbol();var lr;(function(e){e.direct="direct",e.patchObject="patch object",e.patchFunction="patch function"})(lr||(lr={}));function bc(){const e=lo(!0),t=e.run(()=>wt({}));let n=[],s=[];const r=Zr({install(i){r._a=i,i.provide(yc,r),i.config.globalProperties.$pinia=r,s.forEach(o=>n.push(o)),s=[]},use(i){return this._a?n.push(i):s.push(i),this},_p:n,_a:null,_e:e,_s:new Map,state:t});return r}/*! - * vue-router v4.5.1 - * (c) 2025 Eduardo San Martin Morote - * @license MIT - */const Et=typeof document<"u";function Li(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function xc(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&Li(e.default)}const K=Object.assign;function Kn(e,t){const n={};for(const s in t){const r=t[s];n[s]=Ce(r)?r.map(e):e(r)}return n}const Wt=()=>{},Ce=Array.isArray,Ni=/#/g,Ec=/&/g,wc=/\//g,Sc=/=/g,Rc=/\?/g,Hi=/\+/g,Pc=/%5B/g,Cc=/%5D/g,ji=/%5E/g,Ac=/%60/g,Di=/%7B/g,Oc=/%7C/g,Bi=/%7D/g,Tc=/%20/g;function Ps(e){return encodeURI(""+e).replace(Oc,"|").replace(Pc,"[").replace(Cc,"]")}function Ic(e){return Ps(e).replace(Di,"{").replace(Bi,"}").replace(ji,"^")}function rs(e){return Ps(e).replace(Hi,"%2B").replace(Tc,"+").replace(Ni,"%23").replace(Ec,"%26").replace(Ac,"`").replace(Di,"{").replace(Bi,"}").replace(ji,"^")}function Mc(e){return rs(e).replace(Sc,"%3D")}function Fc(e){return Ps(e).replace(Ni,"%23").replace(Rc,"%3F")}function $c(e){return e==null?"":Fc(e).replace(wc,"%2F")}function Xt(e){try{return decodeURIComponent(""+e)}catch{}return""+e}const Lc=/\/$/,Nc=e=>e.replace(Lc,"");function kn(e,t,n="/"){let s,r={},i="",o="";const l=t.indexOf("#");let c=t.indexOf("?");return l=0&&(c=-1),c>-1&&(s=t.slice(0,c),i=t.slice(c+1,l>-1?l:t.length),r=e(i)),l>-1&&(s=s||t.slice(0,l),o=t.slice(l,t.length)),s=Bc(s??t,n),{fullPath:s+(i&&"?")+i+o,path:s,query:r,hash:Xt(o)}}function Hc(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function cr(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function jc(e,t,n){const s=t.matched.length-1,r=n.matched.length-1;return s>-1&&s===r&&Tt(t.matched[s],n.matched[r])&&Vi(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Tt(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Vi(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!Dc(e[n],t[n]))return!1;return!0}function Dc(e,t){return Ce(e)?fr(e,t):Ce(t)?fr(t,e):e===t}function fr(e,t){return Ce(t)?e.length===t.length&&e.every((n,s)=>n===t[s]):e.length===1&&e[0]===t}function Bc(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),s=e.split("/"),r=s[s.length-1];(r===".."||r===".")&&s.push("");let i=n.length-1,o,l;for(o=0;o1&&i--;else break;return n.slice(0,i).join("/")+"/"+s.slice(o).join("/")}const Xe={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};var Zt;(function(e){e.pop="pop",e.push="push"})(Zt||(Zt={}));var qt;(function(e){e.back="back",e.forward="forward",e.unknown=""})(qt||(qt={}));function Vc(e){if(!e)if(Et){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Nc(e)}const Uc=/^[^#]+#/;function Kc(e,t){return e.replace(Uc,"#")+t}function kc(e,t){const n=document.documentElement.getBoundingClientRect(),s=e.getBoundingClientRect();return{behavior:t.behavior,left:s.left-n.left-(t.left||0),top:s.top-n.top-(t.top||0)}}const In=()=>({left:window.scrollX,top:window.scrollY});function Wc(e){let t;if("el"in e){const n=e.el,s=typeof n=="string"&&n.startsWith("#"),r=typeof n=="string"?s?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!r)return;t=kc(r,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function ur(e,t){return(history.state?history.state.position-t:-1)+e}const is=new Map;function qc(e,t){is.set(e,t)}function Gc(e){const t=is.get(e);return is.delete(e),t}let zc=()=>location.protocol+"//"+location.host;function Ui(e,t){const{pathname:n,search:s,hash:r}=t,i=e.indexOf("#");if(i>-1){let l=r.includes(e.slice(i))?e.slice(i).length:1,c=r.slice(l);return c[0]!=="/"&&(c="/"+c),cr(c,"")}return cr(n,e)+s+r}function Jc(e,t,n,s){let r=[],i=[],o=null;const l=({state:g})=>{const m=Ui(e,location),A=n.value,O=t.value;let B=0;if(g){if(n.value=m,t.value=g,o&&o===A){o=null;return}B=O?g.position-O.position:0}else s(m);r.forEach($=>{$(n.value,A,{delta:B,type:Zt.pop,direction:B?B>0?qt.forward:qt.back:qt.unknown})})};function c(){o=n.value}function d(g){r.push(g);const m=()=>{const A=r.indexOf(g);A>-1&&r.splice(A,1)};return i.push(m),m}function u(){const{history:g}=window;g.state&&g.replaceState(K({},g.state,{scroll:In()}),"")}function h(){for(const g of i)g();i=[],window.removeEventListener("popstate",l),window.removeEventListener("beforeunload",u)}return window.addEventListener("popstate",l),window.addEventListener("beforeunload",u,{passive:!0}),{pauseListeners:c,listen:d,destroy:h}}function ar(e,t,n,s=!1,r=!1){return{back:e,current:t,forward:n,replaced:s,position:window.history.length,scroll:r?In():null}}function Qc(e){const{history:t,location:n}=window,s={value:Ui(e,n)},r={value:t.state};r.value||i(s.value,{back:null,current:s.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function i(c,d,u){const h=e.indexOf("#"),g=h>-1?(n.host&&document.querySelector("base")?e:e.slice(h))+c:zc()+e+c;try{t[u?"replaceState":"pushState"](d,"",g),r.value=d}catch(m){console.error(m),n[u?"replace":"assign"](g)}}function o(c,d){const u=K({},t.state,ar(r.value.back,c,r.value.forward,!0),d,{position:r.value.position});i(c,u,!0),s.value=c}function l(c,d){const u=K({},r.value,t.state,{forward:c,scroll:In()});i(u.current,u,!0);const h=K({},ar(s.value,c,null),{position:u.position+1},d);i(c,h,!1),s.value=c}return{location:s,state:r,push:l,replace:o}}function Yc(e){e=Vc(e);const t=Qc(e),n=Jc(e,t.state,t.location,t.replace);function s(i,o=!0){o||n.pauseListeners(),history.go(i)}const r=K({location:"",base:e,go:s,createHref:Kc.bind(null,e)},t,n);return Object.defineProperty(r,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(r,"state",{enumerable:!0,get:()=>t.state.value}),r}function Xc(e){return typeof e=="string"||e&&typeof e=="object"}function Ki(e){return typeof e=="string"||typeof e=="symbol"}const ki=Symbol("");var dr;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(dr||(dr={}));function It(e,t){return K(new Error,{type:e,[ki]:!0},t)}function Ue(e,t){return e instanceof Error&&ki in e&&(t==null||!!(e.type&t))}const hr="[^/]+?",Zc={sensitive:!1,strict:!1,start:!0,end:!0},ef=/[.+*?^${}()[\]/\\]/g;function tf(e,t){const n=K({},Zc,t),s=[];let r=n.start?"^":"";const i=[];for(const d of e){const u=d.length?[]:[90];n.strict&&!d.length&&(r+="/");for(let h=0;ht.length?t.length===1&&t[0]===80?1:-1:0}function Wi(e,t){let n=0;const s=e.score,r=t.score;for(;n0&&t[t.length-1]<0}const sf={type:0,value:""},rf=/[a-zA-Z0-9_]/;function of(e){if(!e)return[[]];if(e==="/")return[[sf]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(m){throw new Error(`ERR (${n})/"${d}": ${m}`)}let n=0,s=n;const r=[];let i;function o(){i&&r.push(i),i=[]}let l=0,c,d="",u="";function h(){d&&(n===0?i.push({type:0,value:d}):n===1||n===2||n===3?(i.length>1&&(c==="*"||c==="+")&&t(`A repeatable param (${d}) must be alone in its segment. eg: '/:ids+.`),i.push({type:1,value:d,regexp:u,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):t("Invalid state to consume buffer"),d="")}function g(){d+=c}for(;l{o(L)}:Wt}function o(h){if(Ki(h)){const g=s.get(h);g&&(s.delete(h),n.splice(n.indexOf(g),1),g.children.forEach(o),g.alias.forEach(o))}else{const g=n.indexOf(h);g>-1&&(n.splice(g,1),h.record.name&&s.delete(h.record.name),h.children.forEach(o),h.alias.forEach(o))}}function l(){return n}function c(h){const g=af(h,n);n.splice(g,0,h),h.record.name&&!_r(h)&&s.set(h.record.name,h)}function d(h,g){let m,A={},O,B;if("name"in h&&h.name){if(m=s.get(h.name),!m)throw It(1,{location:h});B=m.record.name,A=K(gr(g.params,m.keys.filter(L=>!L.optional).concat(m.parent?m.parent.keys.filter(L=>L.optional):[]).map(L=>L.name)),h.params&&gr(h.params,m.keys.map(L=>L.name))),O=m.stringify(A)}else if(h.path!=null)O=h.path,m=n.find(L=>L.re.test(O)),m&&(A=m.parse(O),B=m.record.name);else{if(m=g.name?s.get(g.name):n.find(L=>L.re.test(g.path)),!m)throw It(1,{location:h,currentLocation:g});B=m.record.name,A=K({},g.params,h.params),O=m.stringify(A)}const $=[];let M=m;for(;M;)$.unshift(M.record),M=M.parent;return{name:B,path:O,params:A,matched:$,meta:uf($)}}e.forEach(h=>i(h));function u(){n.length=0,s.clear()}return{addRoute:i,resolve:d,removeRoute:o,clearRoutes:u,getRoutes:l,getRecordMatcher:r}}function gr(e,t){const n={};for(const s of t)s in e&&(n[s]=e[s]);return n}function mr(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:ff(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}};return Object.defineProperty(t,"mods",{value:{}}),t}function ff(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const s in e.components)t[s]=typeof n=="object"?n[s]:n;return t}function _r(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function uf(e){return e.reduce((t,n)=>K(t,n.meta),{})}function vr(e,t){const n={};for(const s in e)n[s]=s in t?t[s]:e[s];return n}function af(e,t){let n=0,s=t.length;for(;n!==s;){const i=n+s>>1;Wi(e,t[i])<0?s=i:n=i+1}const r=df(e);return r&&(s=t.lastIndexOf(r,s-1)),s}function df(e){let t=e;for(;t=t.parent;)if(qi(t)&&Wi(e,t)===0)return t}function qi({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function hf(e){const t={};if(e===""||e==="?")return t;const s=(e[0]==="?"?e.slice(1):e).split("&");for(let r=0;ri&&rs(i)):[s&&rs(s)]).forEach(i=>{i!==void 0&&(t+=(t.length?"&":"")+n,i!=null&&(t+="="+i))})}return t}function pf(e){const t={};for(const n in e){const s=e[n];s!==void 0&&(t[n]=Ce(s)?s.map(r=>r==null?null:""+r):s==null?s:""+s)}return t}const gf=Symbol(""),br=Symbol(""),Cs=Symbol(""),Gi=Symbol(""),os=Symbol("");function Nt(){let e=[];function t(s){return e.push(s),()=>{const r=e.indexOf(s);r>-1&&e.splice(r,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function tt(e,t,n,s,r,i=o=>o()){const o=s&&(s.enterCallbacks[r]=s.enterCallbacks[r]||[]);return()=>new Promise((l,c)=>{const d=g=>{g===!1?c(It(4,{from:n,to:t})):g instanceof Error?c(g):Xc(g)?c(It(2,{from:t,to:g})):(o&&s.enterCallbacks[r]===o&&typeof g=="function"&&o.push(g),l())},u=i(()=>e.call(s&&s.instances[r],t,n,d));let h=Promise.resolve(u);e.length<3&&(h=h.then(d)),h.catch(g=>c(g))})}function Wn(e,t,n,s,r=i=>i()){const i=[];for(const o of e)for(const l in o.components){let c=o.components[l];if(!(t!=="beforeRouteEnter"&&!o.instances[l]))if(Li(c)){const u=(c.__vccOpts||c)[t];u&&i.push(tt(u,n,s,o,l,r))}else{let d=c();i.push(()=>d.then(u=>{if(!u)throw new Error(`Couldn't resolve component "${l}" at "${o.path}"`);const h=xc(u)?u.default:u;o.mods[l]=u,o.components[l]=h;const m=(h.__vccOpts||h)[t];return m&&tt(m,n,s,o,l,r)()}))}}return i}function xr(e){const t=qe(Cs),n=qe(Gi),s=Re(()=>{const c=dt(e.to);return t.resolve(c)}),r=Re(()=>{const{matched:c}=s.value,{length:d}=c,u=c[d-1],h=n.matched;if(!u||!h.length)return-1;const g=h.findIndex(Tt.bind(null,u));if(g>-1)return g;const m=Er(c[d-2]);return d>1&&Er(u)===m&&h[h.length-1].path!==m?h.findIndex(Tt.bind(null,c[d-2])):g}),i=Re(()=>r.value>-1&&bf(n.params,s.value.params)),o=Re(()=>r.value>-1&&r.value===n.matched.length-1&&Vi(n.params,s.value.params));function l(c={}){if(yf(c)){const d=t[dt(e.replace)?"replace":"push"](dt(e.to)).catch(Wt);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>d),d}return Promise.resolve()}return{route:s,href:Re(()=>s.value.href),isActive:i,isExactActive:o,navigate:l}}function mf(e){return e.length===1?e[0]:e}const _f=tn({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"},viewTransition:Boolean},useLink:xr,setup(e,{slots:t}){const n=Rn(xr(e)),{options:s}=qe(Cs),r=Re(()=>({[wr(e.activeClass,s.linkActiveClass,"router-link-active")]:n.isActive,[wr(e.exactActiveClass,s.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const i=t.default&&mf(t.default(n));return e.custom?i:Fi("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:r.value},i)}}}),vf=_f;function yf(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function bf(e,t){for(const n in t){const s=t[n],r=e[n];if(typeof s=="string"){if(s!==r)return!1}else if(!Ce(r)||r.length!==s.length||s.some((i,o)=>i!==r[o]))return!1}return!0}function Er(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const wr=(e,t,n)=>e??t??n,xf=tn({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const s=qe(os),r=Re(()=>e.route||s.value),i=qe(br,0),o=Re(()=>{let d=dt(i);const{matched:u}=r.value;let h;for(;(h=u[d])&&!h.components;)d++;return d}),l=Re(()=>r.value.matched[o.value]);un(br,Re(()=>o.value+1)),un(gf,l),un(os,r);const c=wt();return Kt(()=>[c.value,l.value,e.name],([d,u,h],[g,m,A])=>{u&&(u.instances[h]=d,m&&m!==u&&d&&d===g&&(u.leaveGuards.size||(u.leaveGuards=m.leaveGuards),u.updateGuards.size||(u.updateGuards=m.updateGuards))),d&&u&&(!m||!Tt(u,m)||!g)&&(u.enterCallbacks[h]||[]).forEach(O=>O(d))},{flush:"post"}),()=>{const d=r.value,u=e.name,h=l.value,g=h&&h.components[u];if(!g)return Sr(n.default,{Component:g,route:d});const m=h.props[u],A=m?m===!0?d.params:typeof m=="function"?m(d):m:null,B=Fi(g,K({},A,t,{onVnodeUnmounted:$=>{$.component.isUnmounted&&(h.instances[u]=null)},ref:c}));return Sr(n.default,{Component:B,route:d})||B}}});function Sr(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const zi=xf;function Ef(e){const t=cf(e.routes,e),n=e.parseQuery||hf,s=e.stringifyQuery||yr,r=e.history,i=Nt(),o=Nt(),l=Nt(),c=Ao(Xe);let d=Xe;Et&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const u=Kn.bind(null,v=>""+v),h=Kn.bind(null,$c),g=Kn.bind(null,Xt);function m(v,C){let R,I;return Ki(v)?(R=t.getRecordMatcher(v),I=C):I=v,t.addRoute(I,R)}function A(v){const C=t.getRecordMatcher(v);C&&t.removeRoute(C)}function O(){return t.getRoutes().map(v=>v.record)}function B(v){return!!t.getRecordMatcher(v)}function $(v,C){if(C=K({},C||c.value),typeof v=="string"){const p=kn(n,v,C.path),_=t.resolve({path:p.path},C),b=r.createHref(p.fullPath);return K(p,_,{params:g(_.params),hash:Xt(p.hash),redirectedFrom:void 0,href:b})}let R;if(v.path!=null)R=K({},v,{path:kn(n,v.path,C.path).path});else{const p=K({},v.params);for(const _ in p)p[_]==null&&delete p[_];R=K({},v,{params:h(p)}),C.params=h(C.params)}const I=t.resolve(R,C),J=v.hash||"";I.params=u(g(I.params));const f=Hc(s,K({},v,{hash:Ic(J),path:I.path})),a=r.createHref(f);return K({fullPath:f,hash:J,query:s===yr?pf(v.query):v.query||{}},I,{redirectedFrom:void 0,href:a})}function M(v){return typeof v=="string"?kn(n,v,c.value.path):K({},v)}function L(v,C){if(d!==v)return It(8,{from:C,to:v})}function T(v){return ee(v)}function z(v){return T(K(M(v),{replace:!0}))}function se(v){const C=v.matched[v.matched.length-1];if(C&&C.redirect){const{redirect:R}=C;let I=typeof R=="function"?R(v):R;return typeof I=="string"&&(I=I.includes("?")||I.includes("#")?I=M(I):{path:I},I.params={}),K({query:v.query,hash:v.hash,params:I.path!=null?{}:v.params},I)}}function ee(v,C){const R=d=$(v),I=c.value,J=v.state,f=v.force,a=v.replace===!0,p=se(R);if(p)return ee(K(M(p),{state:typeof p=="object"?K({},J,p.state):J,force:f,replace:a}),C||R);const _=R;_.redirectedFrom=C;let b;return!f&&jc(s,I,R)&&(b=It(16,{to:_,from:I}),Ie(I,I,!0,!1)),(b?Promise.resolve(b):Oe(_,I)).catch(y=>Ue(y)?Ue(y,2)?y:Qe(y):U(y,_,I)).then(y=>{if(y){if(Ue(y,2))return ee(K({replace:a},M(y.to),{state:typeof y.to=="object"?K({},J,y.to.state):J,force:f}),C||_)}else y=lt(_,I,!0,a,J);return Je(_,I,y),y})}function Ae(v,C){const R=L(v,C);return R?Promise.reject(R):Promise.resolve()}function ze(v){const C=vt.values().next().value;return C&&typeof C.runWithContext=="function"?C.runWithContext(v):v()}function Oe(v,C){let R;const[I,J,f]=wf(v,C);R=Wn(I.reverse(),"beforeRouteLeave",v,C);for(const p of I)p.leaveGuards.forEach(_=>{R.push(tt(_,v,C))});const a=Ae.bind(null,v,C);return R.push(a),be(R).then(()=>{R=[];for(const p of i.list())R.push(tt(p,v,C));return R.push(a),be(R)}).then(()=>{R=Wn(J,"beforeRouteUpdate",v,C);for(const p of J)p.updateGuards.forEach(_=>{R.push(tt(_,v,C))});return R.push(a),be(R)}).then(()=>{R=[];for(const p of f)if(p.beforeEnter)if(Ce(p.beforeEnter))for(const _ of p.beforeEnter)R.push(tt(_,v,C));else R.push(tt(p.beforeEnter,v,C));return R.push(a),be(R)}).then(()=>(v.matched.forEach(p=>p.enterCallbacks={}),R=Wn(f,"beforeRouteEnter",v,C,ze),R.push(a),be(R))).then(()=>{R=[];for(const p of o.list())R.push(tt(p,v,C));return R.push(a),be(R)}).catch(p=>Ue(p,8)?p:Promise.reject(p))}function Je(v,C,R){l.list().forEach(I=>ze(()=>I(v,C,R)))}function lt(v,C,R,I,J){const f=L(v,C);if(f)return f;const a=C===Xe,p=Et?history.state:{};R&&(I||a?r.replace(v.fullPath,K({scroll:a&&p&&p.scroll},J)):r.push(v.fullPath,J)),c.value=v,Ie(v,C,R,a),Qe()}let Te;function Mt(){Te||(Te=r.listen((v,C,R)=>{if(!sn.listening)return;const I=$(v),J=se(I);if(J){ee(K(J,{replace:!0,force:!0}),I).catch(Wt);return}d=I;const f=c.value;Et&&qc(ur(f.fullPath,R.delta),In()),Oe(I,f).catch(a=>Ue(a,12)?a:Ue(a,2)?(ee(K(M(a.to),{force:!0}),I).then(p=>{Ue(p,20)&&!R.delta&&R.type===Zt.pop&&r.go(-1,!1)}).catch(Wt),Promise.reject()):(R.delta&&r.go(-R.delta,!1),U(a,I,f))).then(a=>{a=a||lt(I,f,!1),a&&(R.delta&&!Ue(a,8)?r.go(-R.delta,!1):R.type===Zt.pop&&Ue(a,20)&&r.go(-1,!1)),Je(I,f,a)}).catch(Wt)}))}let mt=Nt(),ne=Nt(),G;function U(v,C,R){Qe(v);const I=ne.list();return I.length?I.forEach(J=>J(v,C,R)):console.error(v),Promise.reject(v)}function Be(){return G&&c.value!==Xe?Promise.resolve():new Promise((v,C)=>{mt.add([v,C])})}function Qe(v){return G||(G=!v,Mt(),mt.list().forEach(([C,R])=>v?R(v):C()),mt.reset()),v}function Ie(v,C,R,I){const{scrollBehavior:J}=e;if(!Et||!J)return Promise.resolve();const f=!R&&Gc(ur(v.fullPath,0))||(I||!R)&&history.state&&history.state.scroll||null;return bs().then(()=>J(v,C,f)).then(a=>a&&Wc(a)).catch(a=>U(a,v,C))}const de=v=>r.go(v);let _t;const vt=new Set,sn={currentRoute:c,listening:!0,addRoute:m,removeRoute:A,clearRoutes:t.clearRoutes,hasRoute:B,getRoutes:O,resolve:$,options:e,push:T,replace:z,go:de,back:()=>de(-1),forward:()=>de(1),beforeEach:i.add,beforeResolve:o.add,afterEach:l.add,onError:ne.add,isReady:Be,install(v){const C=this;v.component("RouterLink",vf),v.component("RouterView",zi),v.config.globalProperties.$router=C,Object.defineProperty(v.config.globalProperties,"$route",{enumerable:!0,get:()=>dt(c)}),Et&&!_t&&c.value===Xe&&(_t=!0,T(r.location).catch(J=>{}));const R={};for(const J in Xe)Object.defineProperty(R,J,{get:()=>c.value[J],enumerable:!0});v.provide(Cs,C),v.provide(Gi,Yr(R)),v.provide(os,c);const I=v.unmount;vt.add(v),v.unmount=function(){vt.delete(v),vt.size<1&&(d=Xe,Te&&Te(),Te=null,c.value=Xe,_t=!1,G=!1),I()}}};function be(v){return v.reduce((C,R)=>C.then(()=>ze(R)),Promise.resolve())}return sn}function wf(e,t){const n=[],s=[],r=[],i=Math.max(t.matched.length,e.matched.length);for(let o=0;oTt(d,l))?s.push(l):n.push(l));const c=e.matched[o];c&&(t.matched.find(d=>Tt(d,c))||r.push(c))}return[n,s,r]}const Sf=tn({__name:"App",setup(e){return(t,n)=>(we(),Ss(dt(zi)))}}),Ji=(e,t)=>{const n=e.__vccOpts||e;for(const[s,r]of t)n[s]=r;return n},Rf=Ji(Sf,[["__scopeId","data-v-913ef6b1"]]),Pf="modulepreload",Cf=function(e){return"/"+e},Rr={},Af=function(t,n,s){let r=Promise.resolve();if(n&&n.length>0){let o=function(d){return Promise.all(d.map(u=>Promise.resolve(u).then(h=>({status:"fulfilled",value:h}),h=>({status:"rejected",reason:h}))))};document.getElementsByTagName("link");const l=document.querySelector("meta[property=csp-nonce]"),c=(l==null?void 0:l.nonce)||(l==null?void 0:l.getAttribute("nonce"));r=o(n.map(d=>{if(d=Cf(d),d in Rr)return;Rr[d]=!0;const u=d.endsWith(".css"),h=u?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${d}"]${h}`))return;const g=document.createElement("link");if(g.rel=u?"stylesheet":Pf,u||(g.as="script"),g.crossOrigin="",g.href=d,c&&g.setAttribute("nonce",c),document.head.appendChild(g),u)return new Promise((m,A)=>{g.addEventListener("load",m),g.addEventListener("error",()=>A(new Error(`Unable to preload CSS for ${d}`)))})}))}function i(o){const l=new Event("vite:preloadError",{cancelable:!0});if(l.payload=o,window.dispatchEvent(l),!l.defaultPrevented)throw o}return r.then(o=>{for(const l of o||[])l.status==="rejected"&&i(l.reason);return t().catch(i)})},Of={class:"body-custom"},Tf={class:"form-custom form-block"},If={class:"center-block-custom"},Mf={class:"center-block-custom"},Ff={key:0},$f={key:1},Lf={class:"message-cloud"},Nf={class:"message-header"},Hf={class:"message-content"},jf={key:0,class:"hr"},Pr="http://192.168.0.110:8090",Df=tn({__name:"GameWindow",setup(e){const t=wt(""),n=wt({actions:[]}),s=wt([]),r=wt();function i(){fetch(Pr+"/team",{method:"GET",headers:{"X-Id":"1","X-Password":"pass"}}).then(c=>c.json()).then(c=>{var u;n.value=c;const d=(u=n.value)==null?void 0:u.actions;s.value.length!==(d==null?void 0:d.length)&&(s.value=d)}).catch(c=>console.error("Ошибка:",c))}function o(){fetch(Pr+"/team/actions",{method:"POST",headers:{"X-Id":"1","X-Password":"pass"},body:JSON.stringify({place:t.value})}).then(async()=>{t.value=""})}i(),setInterval(()=>i(),3e3);const l=async(c="smooth")=>{await bs(),r.value&&r.value.scrollTo({top:r.value.scrollHeight,behavior:c})};return Kt(s,()=>{l()},{deep:!0}),(c,d)=>(we(),Ye("div",Of,[d[4]||(d[4]=re("div",{class:"header-block"}," Вечерний детектив ",-1)),re("div",Tf,[re("div",If,[re("form",{onSubmit:hc(o,["prevent"])},[re("div",null,[Do(re("input",{class:"input-custom","onUpdate:modelValue":d[0]||(d[0]=u=>t.value=u),type:"text",placeholder:"Место назначения (А-1, а-1, а1)"},null,512),[[uc,t.value]])]),d[1]||(d[1]=re("div",{class:"button-container"},[re("button",{class:"button-custom",type:"submit"},"Поехали")],-1))],32)])]),re("div",{class:"messages-block",ref_key:"scrollContainer",ref:r},[re("div",Mf,[!n.value||!n.value.actions.length?(we(),Ye("div",Ff,d[2]||(d[2]=[re("div",{class:"center-message"}," Пора решать загадку ",-1)]))):(we(),Ye("div",$f,[(we(!0),Ye(Se,null,Ls(n.value.actions,u=>(we(),Ye("div",{key:u.id},[re("div",Lf,[re("div",Nf,fn(u.place),1),d[3]||(d[3]=re("hr",{class:"hr"},null,-1)),re("div",Hf,fn(u.text),1),u.applications.length?(we(),Ye("hr",jf)):Fl("",!0),(we(!0),Ye(Se,null,Ls(u.applications,h=>(we(),Ye("div",{class:"message-footer",key:h.name}," Приложение: "+fn(h.name),1))),128))])]))),128))]))])],512)]))}}),Bf=Ji(Df,[["__scopeId","data-v-7d059f18"]]),Vf=tn({__name:"HomeView",setup(e){return(t,n)=>(we(),Ss(Bf))}}),Uf=Ef({history:Yc("/"),routes:[{path:"/",name:"home",component:Vf},{path:"/about",name:"about",component:()=>Af(()=>import("./AboutView-CB75s-VL.js"),__vite__mapDeps([0,1]))}]}),As=mc(Rf);As.use(bc());As.use(Uf);As.mount("#app");export{Ji as _,re as a,Ye as c,we as o}; diff --git a/static/user/assets/index-wdin4iCu.css b/static/user/assets/index-wdin4iCu.css new file mode 100644 index 0000000..5a01533 --- /dev/null +++ b/static/user/assets/index-wdin4iCu.css @@ -0,0 +1 @@ +:root{--vt-c-white: #ffffff;--vt-c-white-soft: #f8f8f8;--vt-c-white-mute: #f2f2f2;--vt-c-black: #181818;--vt-c-black-soft: #222222;--vt-c-black-mute: #282828;--vt-c-indigo: #2c3e50;--vt-c-divider-light-1: rgba(60, 60, 60, .29);--vt-c-divider-light-2: rgba(60, 60, 60, .12);--vt-c-divider-dark-1: rgba(84, 84, 84, .65);--vt-c-divider-dark-2: rgba(84, 84, 84, .48);--vt-c-text-light-1: var(--vt-c-indigo);--vt-c-text-light-2: rgba(60, 60, 60, .66);--vt-c-text-dark-1: var(--vt-c-white);--vt-c-text-dark-2: rgba(235, 235, 235, .64);--main-color: rgba(115, 185, 83, 1);--second-color: rgba(98, 156, 68, 1);--main-back-color: rgba(240, 240, 240, 1);--main-back-item-color: rgba(254, 254, 254, 1)}:root{--color-background: var(--vt-c-white);--color-background-soft: var(--vt-c-white-soft);--color-background-mute: var(--vt-c-white-mute);--color-border: var(--vt-c-divider-light-2);--color-border-hover: var(--vt-c-divider-light-1);--color-heading: var(--vt-c-text-light-1);--color-text: var(--vt-c-text-light-1);--section-gap: 160px}*,*:before,*:after{box-sizing:border-box;margin:0;font-weight:400}body{min-height:100dvh;color:var(--color-text);background:var(--main-back-color);transition:color .5s,background-color .5s;line-height:1.6;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:15px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.header-block{height:50px;background-color:var(--main-color);font-size:large;color:#fff;vertical-align:middle;padding:10px 0 10px 16px;font-weight:700}.input-custom{width:100%;box-sizing:border-box;margin-bottom:15px}.button-custom{margin-left:auto;background-color:var(--main-color);font-weight:600;color:#fff}.button-custom:hover{background-color:var(--second-color)}.input-custom,.button-custom{padding:12px 16px;border:1px solid #ddd;border-radius:15px;font-size:16px}.button-container{display:flex}.center-message{display:flex;justify-content:center;align-items:center;height:calc(100dvh - 100px);text-align:center}header[data-v-913ef6b1]{line-height:1.5;max-height:100vh}.logo[data-v-913ef6b1]{display:block;margin:0 auto 2rem}nav[data-v-913ef6b1]{width:100%;font-size:12px;text-align:center;margin-top:2rem}nav a.router-link-exact-active[data-v-913ef6b1]{color:var(--color-text)}nav a.router-link-exact-active[data-v-913ef6b1]:hover{background-color:transparent}nav a[data-v-913ef6b1]{display:inline-block;padding:0 1rem;border-left:1px solid var(--color-border)}nav a[data-v-913ef6b1]:first-of-type{border:0}@media (min-width: 1024px){header[data-v-913ef6b1]{display:flex;place-items:center;padding-right:calc(var(--section-gap) / 2)}.logo[data-v-913ef6b1]{margin:0 2rem 0 0}header .wrapper[data-v-913ef6b1]{display:flex;place-items:flex-start;flex-wrap:wrap}nav[data-v-913ef6b1]{text-align:left;margin-left:-1rem;font-size:1rem;padding:1rem 0;margin-top:1rem}}body[data-v-a97c0f2f]{overflow:hidden}.hr[data-v-a97c0f2f]{margin:7px 0}.body-custom[data-v-a97c0f2f]{font-size:medium}.form-custom[data-v-a97c0f2f]{border:1px solid #444444;background-color:var(--main-back-color);position:fixed;bottom:0;left:0;width:100%;padding:20px;color:#fff}.message-cloud[data-v-a97c0f2f]{border:1px solid #444444;border-radius:15px;margin:12px 2px;padding:16px;background-color:var(--main-back-item-color)}.message-header[data-v-a97c0f2f]{font-size:small}.message-content[data-v-a97c0f2f]{font-weight:500}.message-footer[data-v-a97c0f2f]{color:var(--second-color)}.form-block[data-v-a97c0f2f]{height:140px}.messages-block[data-v-a97c0f2f]{height:calc(100dvh - 190px);overflow-y:auto;scrollbar-width:none}@media (min-width: 1025px){.center-block-custom[data-v-a97c0f2f]{width:700px;margin:0 auto}}.center-message[data-v-a97c0f2f]{height:calc(100dvh - 140px)}.error-message[data-v-8a4f811f]{color:brown;margin:16px 0} diff --git a/static/user/index.html b/static/user/index.html index a54fb12..eaba6d9 100644 --- a/static/user/index.html +++ b/static/user/index.html @@ -5,8 +5,8 @@ Вечерний детектив - - + +
diff --git a/store.db b/store.db index 5693065914ebc8d7140925f8e55f4e7f24a088ad..094ea6f75bf858843c02cb45fc35229a59ec1a9b 100644 GIT binary patch literal 20480 zcmeI(PiWIn90&0Cnxt*kHg6y!hroDP1}m!r>CuCBBaGr!XRYW^kl012v|YDU#EV!D zqIgm9B(kID3ZgPW4|*IUy(wNqJbLor*_VWccDfPR$?|=)%`fkNK0UqU<=olDddKG1 z);5|}hZo2=p_H8BoDec8zKZznCP@VH?uj_kfq1`glFZ)AWkjj0oh0ljo6~kgfCK>u zKmY;|fB*y_009U<00RG;KsPNX^r?xe~E-^1!=C0F(uIsd0@VoRb*YSU1L(ToHsPiA-Yg>+Ub8TZa z5cAgNl>H*&g9HHxKmY;|fB*y_009U<00Izzz{m)ssZ1s&yc+`Eoq!DcLL|0L*l)JY zevHgT;zA$*0SG_<0uX=z1Rwwb2tWV=BP)=KNd~oojSb#&{gfK)v>2D9DLT06B9o+& zuKF7Yym}dS+gtztWZ&6mw!=QLE!JZ%*mL%T-4{hj5P$##AOHafKmY;|fB*y_009Ub zN+6jL&*D{g^VsoZI*d|&^ho55g^?PTCd0f$m=_Q8lrWORND8A^7@jPw1$LAv+BfZ^wyE9HF5_+eL;b;M3;_s000Izz00bZa0SG`~R0NESLJH~; z_nF)4-|63Vd)$5L_S`r9hh_7Ekv^a>n^MU9aLW(wJNJG6foT8A-E!ZG97>R>=h)3ult3;_JN2w%5sT7M+iAJdO2T#<_F#rGn delta 637 zcmX}nElfgD7{>7f+_{Uu`*KA@!Ef;cg^PRyHXDgxGMES&H0a#iBpHO@oXLS249+=& z$>7FjFd0nF-5CrP4JO!329v>a&g8k<-G2MO=j@zQyL8oRu6oQW2q6slcRqI`nF|$! zeUJ#qFZ;SzF!OQ5%y~QVYKL zli%3kN51D+*6rsHU1TI#B!n2umN3=KhpT53nk5LNkh#VFzc7WSh>pgv5) iXuW75Ep_Q0Gz%@LrA}jLfxrOdhkQ`CRzq&~cG@2o7mVxx